2024-02-19T21:43:56.194 INFO:root:teuthology version: 0.0.1.dev260+gb1dac55 2024-02-19T21:43:56.195 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --owner scheduled_yuriw@teuthology --name yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi --archive /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791 --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} -- /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/orig.config.yaml 2024-02-19T21:43:56.230 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-19T21:43:56.309 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791 branch: pacific-release description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false job_id: '7566791' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-02-19_19:25:49-rados-pacific-release-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: pacific-release 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: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 workunit: branch: pacific-release sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 owner: scheduled_yuriw@teuthology priority: 71 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 264 sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: pacific-release suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 targets: smithi044.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= smithi104.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: b1dac5519c57c269ea98a22fb7729016a1d0e4d2 timestamp: 2024-02-19_19:25:49 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-02-19T21:43:56.309 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa; will attempt to use it 2024-02-19T21:43:56.310 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa/tasks 2024-02-19T21:43:56.310 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-02-19T21:43:56.311 INFO:teuthology.task.internal:Checking packages... 2024-02-19T21:43:56.336 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '81bd20d634209c7cb82c18be12b4b5a05643ebf1' 2024-02-19T21:43:56.336 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-02-19T21:43:56.336 INFO:teuthology.packaging:ref: None 2024-02-19T21:43:56.336 INFO:teuthology.packaging:tag: None 2024-02-19T21:43:56.337 INFO:teuthology.packaging:branch: pacific-release 2024-02-19T21:43:56.337 INFO:teuthology.packaging:sha1: 81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T21:43:56.337 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F18.04%2Fx86_64&ref=pacific-release 2024-02-19T21:43:56.477 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-548-g81bd20d6-1bionic 2024-02-19T21:43:56.478 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-02-19T21:43:56.485 INFO:teuthology.task.internal:no buildpackages task found 2024-02-19T21:43:56.485 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-02-19T21:43:56.504 INFO:teuthology.task.internal:Saving configuration 2024-02-19T21:43:56.517 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-02-19T21:43:56.523 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-19T21:43:56.549 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791', '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-02-19 21:38:29.172342', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-02-19T21:43:56.573 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi104.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791', '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-02-19 21:38:29.174348', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-02-19T21:43:56.573 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-02-19T21:43:56.579 INFO:teuthology.task.internal:roles: ubuntu@smithi044.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-02-19T21:43:56.579 INFO:teuthology.task.internal:roles: ubuntu@smithi104.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-02-19T21:43:56.579 INFO:teuthology.run_tasks:Running task console_log... 2024-02-19T21:43:56.651 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f25fa5be0d0>, signals=[15]) 2024-02-19T21:43:56.652 INFO:teuthology.run_tasks:Running task internal.connect... 2024-02-19T21:43:56.657 INFO:teuthology.task.internal:Opening connections... 2024-02-19T21:43:56.657 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T21:43:56.659 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:43:56.746 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi104.front.sepia.ceph.com 2024-02-19T21:43:56.747 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi104.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:43:56.821 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-02-19T21:43:56.830 DEBUG:teuthology.orchestra.run.smithi044:> uname -m 2024-02-19T21:43:56.866 INFO:teuthology.orchestra.run.smithi044.stdout:x86_64 2024-02-19T21:43:56.866 DEBUG:teuthology.orchestra.run.smithi044:> cat /etc/os-release 2024-02-19T21:43:56.917 INFO:teuthology.orchestra.run.smithi044.stdout:NAME="Ubuntu" 2024-02-19T21:43:56.917 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-02-19T21:43:56.917 INFO:teuthology.orchestra.run.smithi044.stdout:ID=ubuntu 2024-02-19T21:43:56.917 INFO:teuthology.orchestra.run.smithi044.stdout:ID_LIKE=debian 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION_ID="18.04" 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION_CODENAME=bionic 2024-02-19T21:43:56.918 INFO:teuthology.orchestra.run.smithi044.stdout:UBUNTU_CODENAME=bionic 2024-02-19T21:43:56.919 INFO:teuthology.lock.ops:Updating smithi044.front.sepia.ceph.com on lock server 2024-02-19T21:43:56.944 DEBUG:teuthology.orchestra.run.smithi104:> uname -m 2024-02-19T21:43:56.949 INFO:teuthology.orchestra.run.smithi104.stdout:x86_64 2024-02-19T21:43:56.949 DEBUG:teuthology.orchestra.run.smithi104:> cat /etc/os-release 2024-02-19T21:43:56.996 INFO:teuthology.orchestra.run.smithi104.stdout:NAME="Ubuntu" 2024-02-19T21:43:56.996 INFO:teuthology.orchestra.run.smithi104.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-02-19T21:43:56.996 INFO:teuthology.orchestra.run.smithi104.stdout:ID=ubuntu 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:ID_LIKE=debian 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:VERSION_ID="18.04" 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:VERSION_CODENAME=bionic 2024-02-19T21:43:56.997 INFO:teuthology.orchestra.run.smithi104.stdout:UBUNTU_CODENAME=bionic 2024-02-19T21:43:56.997 INFO:teuthology.lock.ops:Updating smithi104.front.sepia.ceph.com on lock server 2024-02-19T21:43:57.018 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-02-19T21:43:57.026 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-02-19T21:43:57.031 INFO:teuthology.task.internal:Checking for old test directory... 2024-02-19T21:43:57.032 DEBUG:teuthology.orchestra.run.smithi044:> test '!' -e /home/ubuntu/cephtest 2024-02-19T21:43:57.034 DEBUG:teuthology.orchestra.run.smithi104:> test '!' -e /home/ubuntu/cephtest 2024-02-19T21:43:57.044 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-02-19T21:43:57.049 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-02-19T21:43:57.049 DEBUG:teuthology.orchestra.run.smithi044:> test -z $(ls -A /var/lib/ceph) 2024-02-19T21:43:57.081 DEBUG:teuthology.orchestra.run.smithi104:> test -z $(ls -A /var/lib/ceph) 2024-02-19T21:43:57.099 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-02-19T21:43:57.157 INFO:teuthology.run_tasks:Running task kernel... 2024-02-19T21:43:57.171 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-02-19T21:43:57.172 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-02-19T21:43:57.172 DEBUG:teuthology.orchestra.run.smithi044:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-19T21:43:57.173 DEBUG:teuthology.orchestra.run.smithi104:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-19T21:43:57.177 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T21:43:57.178 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-02-19T21:43:57.178 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T21:43:57.179 DEBUG:teuthology.orchestra.run.smithi104:> uname -r 2024-02-19T21:43:57.226 INFO:teuthology.orchestra.run.smithi044.stdout:4.15.0-200-generic 2024-02-19T21:43:57.226 INFO:teuthology.task.kernel:Running kernel on smithi044: 4.15.0-200-generic 2024-02-19T21:43:57.226 DEBUG:teuthology.orchestra.run.smithi044:> sudo apt-get clean 2024-02-19T21:43:57.229 INFO:teuthology.orchestra.run.smithi104.stdout:4.15.0-200-generic 2024-02-19T21:43:57.229 INFO:teuthology.task.kernel:Running kernel on smithi104: 4.15.0-200-generic 2024-02-19T21:43:57.229 DEBUG:teuthology.orchestra.run.smithi104:> sudo apt-get clean 2024-02-19T21:43:57.319 DEBUG:teuthology.orchestra.run.smithi044:> sudo apt-get update 2024-02-19T21:43:57.331 DEBUG:teuthology.orchestra.run.smithi104:> sudo apt-get update 2024-02-19T21:43:57.498 INFO:teuthology.orchestra.run.smithi104.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-19T21:43:57.499 INFO:teuthology.orchestra.run.smithi104.stdout:Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-02-19T21:43:57.504 INFO:teuthology.orchestra.run.smithi044.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-19T21:43:57.504 INFO:teuthology.orchestra.run.smithi044.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-02-19T21:43:57.505 INFO:teuthology.orchestra.run.smithi104.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-02-19T21:43:57.581 INFO:teuthology.orchestra.run.smithi044.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-02-19T21:43:57.582 INFO:teuthology.orchestra.run.smithi104.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-02-19T21:43:57.601 INFO:teuthology.orchestra.run.smithi044.stdout:Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-02-19T21:43:57.856 INFO:teuthology.orchestra.run.smithi104.stdout:Get:5 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-02-19T21:43:57.875 INFO:teuthology.orchestra.run.smithi044.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-02-19T21:43:58.006 INFO:teuthology.orchestra.run.smithi104.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-02-19T21:43:58.071 INFO:teuthology.orchestra.run.smithi044.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-02-19T21:43:58.101 INFO:teuthology.orchestra.run.smithi104.stdout:Get:7 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-02-19T21:43:58.123 INFO:teuthology.orchestra.run.smithi104.stdout:Get:8 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-02-19T21:43:58.138 INFO:teuthology.orchestra.run.smithi104.stdout:Get:9 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-02-19T21:43:58.160 INFO:teuthology.orchestra.run.smithi044.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-02-19T21:43:58.160 INFO:teuthology.orchestra.run.smithi104.stdout:Get:10 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-02-19T21:43:58.161 INFO:teuthology.orchestra.run.smithi104.stdout:Get:11 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-02-19T21:43:58.167 INFO:teuthology.orchestra.run.smithi044.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-02-19T21:43:58.168 INFO:teuthology.orchestra.run.smithi104.stdout:Get:12 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-02-19T21:43:58.183 INFO:teuthology.orchestra.run.smithi104.stdout:Get:13 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-02-19T21:43:58.199 INFO:teuthology.orchestra.run.smithi044.stdout:Get:9 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-02-19T21:43:58.203 INFO:teuthology.orchestra.run.smithi044.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-02-19T21:43:58.204 INFO:teuthology.orchestra.run.smithi044.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-02-19T21:43:58.206 INFO:teuthology.orchestra.run.smithi044.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-02-19T21:43:58.218 INFO:teuthology.orchestra.run.smithi104.stdout:Get:14 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-02-19T21:43:58.223 INFO:teuthology.orchestra.run.smithi104.stdout:Get:15 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-02-19T21:43:58.223 INFO:teuthology.orchestra.run.smithi104.stdout:Get:16 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-02-19T21:43:58.223 INFO:teuthology.orchestra.run.smithi104.stdout:Get:17 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-02-19T21:43:58.233 INFO:teuthology.orchestra.run.smithi044.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-02-19T21:43:58.257 INFO:teuthology.orchestra.run.smithi044.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-02-19T21:43:58.264 INFO:teuthology.orchestra.run.smithi044.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-02-19T21:43:58.264 INFO:teuthology.orchestra.run.smithi044.stdout:Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-02-19T21:43:58.264 INFO:teuthology.orchestra.run.smithi044.stdout:Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-02-19T21:43:58.264 INFO:teuthology.orchestra.run.smithi044.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-02-19T21:43:58.265 INFO:teuthology.orchestra.run.smithi044.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-02-19T21:43:58.266 INFO:teuthology.orchestra.run.smithi044.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-02-19T21:43:58.266 INFO:teuthology.orchestra.run.smithi044.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-02-19T21:43:58.294 INFO:teuthology.orchestra.run.smithi104.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-02-19T21:43:58.317 INFO:teuthology.orchestra.run.smithi104.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-02-19T21:43:58.324 INFO:teuthology.orchestra.run.smithi104.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-02-19T21:43:58.324 INFO:teuthology.orchestra.run.smithi104.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-02-19T21:43:58.345 INFO:teuthology.orchestra.run.smithi104.stdout:Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-02-19T21:43:58.346 INFO:teuthology.orchestra.run.smithi104.stdout:Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-02-19T21:43:58.361 INFO:teuthology.orchestra.run.smithi104.stdout:Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-02-19T21:43:58.379 INFO:teuthology.orchestra.run.smithi104.stdout:Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-02-19T21:43:58.382 INFO:teuthology.orchestra.run.smithi104.stdout:Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-02-19T21:43:58.383 INFO:teuthology.orchestra.run.smithi104.stdout:Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-02-19T21:43:58.383 INFO:teuthology.orchestra.run.smithi104.stdout:Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-02-19T21:43:58.383 INFO:teuthology.orchestra.run.smithi104.stdout:Get:29 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-02-19T21:43:58.384 INFO:teuthology.orchestra.run.smithi104.stdout:Get:30 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-02-19T21:43:58.389 INFO:teuthology.orchestra.run.smithi104.stdout:Get:31 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-02-19T21:43:58.389 INFO:teuthology.orchestra.run.smithi104.stdout:Get:32 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-02-19T21:43:58.642 INFO:teuthology.orchestra.run.smithi044.stdout:Get:22 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-02-19T21:43:58.779 INFO:teuthology.orchestra.run.smithi044.stdout:Get:23 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-02-19T21:43:58.795 INFO:teuthology.orchestra.run.smithi044.stdout:Get:24 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-02-19T21:43:58.836 INFO:teuthology.orchestra.run.smithi044.stdout:Get:25 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-02-19T21:43:58.848 INFO:teuthology.orchestra.run.smithi044.stdout:Get:26 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-02-19T21:43:58.850 INFO:teuthology.orchestra.run.smithi044.stdout:Get:27 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-02-19T21:43:58.875 INFO:teuthology.orchestra.run.smithi044.stdout:Get:28 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-02-19T21:43:58.926 INFO:teuthology.orchestra.run.smithi044.stdout:Get:29 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-02-19T21:43:58.929 INFO:teuthology.orchestra.run.smithi044.stdout:Get:30 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-02-19T21:43:59.093 INFO:teuthology.orchestra.run.smithi044.stdout:Get:31 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-02-19T21:43:59.175 INFO:teuthology.orchestra.run.smithi044.stdout:Get:32 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-02-19T21:44:00.956 INFO:teuthology.orchestra.run.smithi104.stdout:Fetched 20.1 MB in 3s (6,154 kB/s) 2024-02-19T21:44:00.961 INFO:teuthology.orchestra.run.smithi044.stdout:Fetched 20.1 MB in 3s (5,949 kB/s) 2024-02-19T21:44:02.626 INFO:teuthology.orchestra.run.smithi104.stdout:Reading package lists... 2024-02-19T21:44:02.679 DEBUG:teuthology.orchestra.run.smithi104:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-19T21:44:02.765 INFO:teuthology.orchestra.run.smithi104.stdout:Reading package lists... 2024-02-19T21:44:02.789 INFO:teuthology.orchestra.run.smithi044.stdout:Reading package lists... 2024-02-19T21:44:02.843 DEBUG:teuthology.orchestra.run.smithi044:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-19T21:44:02.928 INFO:teuthology.orchestra.run.smithi044.stdout:Reading package lists... 2024-02-19T21:44:03.063 INFO:teuthology.orchestra.run.smithi104.stdout:Building dependency tree... 2024-02-19T21:44:03.064 INFO:teuthology.orchestra.run.smithi104.stdout:Reading state information... 2024-02-19T21:44:03.229 INFO:teuthology.orchestra.run.smithi044.stdout:Building dependency tree... 2024-02-19T21:44:03.229 INFO:teuthology.orchestra.run.smithi044.stdout:Reading state information... 2024-02-19T21:44:03.299 INFO:teuthology.orchestra.run.smithi104.stdout:The following additional packages will be installed: 2024-02-19T21:44:03.299 INFO:teuthology.orchestra.run.smithi104.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-19T21:44:03.299 INFO:teuthology.orchestra.run.smithi104.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-02-19T21:44:03.299 INFO:teuthology.orchestra.run.smithi104.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-02-19T21:44:03.302 INFO:teuthology.orchestra.run.smithi104.stdout:Suggested packages: 2024-02-19T21:44:03.302 INFO:teuthology.orchestra.run.smithi104.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-02-19T21:44:03.302 INFO:teuthology.orchestra.run.smithi104.stdout:Recommended packages: 2024-02-19T21:44:03.302 INFO:teuthology.orchestra.run.smithi104.stdout: thermald 2024-02-19T21:44:03.369 INFO:teuthology.orchestra.run.smithi104.stdout:The following NEW packages will be installed: 2024-02-19T21:44:03.369 INFO:teuthology.orchestra.run.smithi104.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-19T21:44:03.369 INFO:teuthology.orchestra.run.smithi104.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-02-19T21:44:03.369 INFO:teuthology.orchestra.run.smithi104.stdout: linux-modules-extra-4.15.0-213-generic 2024-02-19T21:44:03.371 INFO:teuthology.orchestra.run.smithi104.stdout:The following packages will be upgraded: 2024-02-19T21:44:03.372 INFO:teuthology.orchestra.run.smithi104.stdout: linux-generic linux-headers-generic linux-image-generic 2024-02-19T21:44:03.434 INFO:teuthology.orchestra.run.smithi104.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-02-19T21:44:03.435 INFO:teuthology.orchestra.run.smithi104.stdout:Need to get 67.4 MB of archives. 2024-02-19T21:44:03.435 INFO:teuthology.orchestra.run.smithi104.stdout:After this operation, 351 MB of additional disk space will be used. 2024-02-19T21:44:03.435 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:03.462 INFO:teuthology.orchestra.run.smithi044.stdout:The following additional packages will be installed: 2024-02-19T21:44:03.462 INFO:teuthology.orchestra.run.smithi044.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-19T21:44:03.462 INFO:teuthology.orchestra.run.smithi044.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-02-19T21:44:03.462 INFO:teuthology.orchestra.run.smithi044.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-02-19T21:44:03.465 INFO:teuthology.orchestra.run.smithi044.stdout:Suggested packages: 2024-02-19T21:44:03.465 INFO:teuthology.orchestra.run.smithi044.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-02-19T21:44:03.465 INFO:teuthology.orchestra.run.smithi044.stdout:Recommended packages: 2024-02-19T21:44:03.465 INFO:teuthology.orchestra.run.smithi044.stdout: thermald 2024-02-19T21:44:03.532 INFO:teuthology.orchestra.run.smithi044.stdout:The following NEW packages will be installed: 2024-02-19T21:44:03.532 INFO:teuthology.orchestra.run.smithi044.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-19T21:44:03.532 INFO:teuthology.orchestra.run.smithi044.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-02-19T21:44:03.533 INFO:teuthology.orchestra.run.smithi044.stdout: linux-modules-extra-4.15.0-213-generic 2024-02-19T21:44:03.534 INFO:teuthology.orchestra.run.smithi044.stdout:The following packages will be upgraded: 2024-02-19T21:44:03.535 INFO:teuthology.orchestra.run.smithi044.stdout: linux-generic linux-headers-generic linux-image-generic 2024-02-19T21:44:03.720 INFO:teuthology.orchestra.run.smithi044.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-02-19T21:44:03.720 INFO:teuthology.orchestra.run.smithi044.stdout:Need to get 67.4 MB of archives. 2024-02-19T21:44:03.720 INFO:teuthology.orchestra.run.smithi044.stdout:After this operation, 351 MB of additional disk space will be used. 2024-02-19T21:44:03.720 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:03.777 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:03.875 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:04.262 INFO:teuthology.orchestra.run.smithi104.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-02-19T21:44:04.263 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:04.263 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:04.446 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:04.460 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:04.778 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:05.026 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:05.226 INFO:teuthology.orchestra.run.smithi104.stdout:Fetched 67.4 MB in 1s (63.0 MB/s) 2024-02-19T21:44:05.394 INFO:teuthology.orchestra.run.smithi104.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-02-19T21:44:06.041 INFO:teuthology.orchestra.run.smithi044.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-02-19T21:44:06.041 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:06.041 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:06.339 INFO:teuthology.orchestra.run.smithi104.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-02-19T21:44:06.344 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:06.366 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:06.390 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:06.400 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:07.130 INFO:teuthology.orchestra.run.smithi044.stdout:Fetched 67.4 MB in 3s (23.7 MB/s) 2024-02-19T21:44:07.345 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-02-19T21:44:08.050 INFO:teuthology.orchestra.run.smithi104.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-02-19T21:44:08.064 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:08.157 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:08.266 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:44:08.269 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:08.367 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:08.661 INFO:teuthology.orchestra.run.smithi104.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-02-19T21:44:08.675 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:08.711 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:10.076 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-02-19T21:44:10.092 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:10.219 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:10.755 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-02-19T21:44:10.769 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:10.813 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:12.520 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-02-19T21:44:12.644 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-19T21:44:12.944 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-02-19T21:44:13.056 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-19T21:44:13.358 INFO:teuthology.orchestra.run.smithi104.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-02-19T21:44:13.373 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-02-19T21:44:13.417 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-19T21:44:15.545 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-02-19T21:44:15.693 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-19T21:44:16.018 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-02-19T21:44:16.155 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-19T21:44:16.483 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-02-19T21:44:16.498 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-02-19T21:44:16.563 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-19T21:44:18.109 INFO:teuthology.orchestra.run.smithi104.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-02-19T21:44:18.132 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:18.176 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:20.557 INFO:teuthology.orchestra.run.smithi104.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-02-19T21:44:20.693 INFO:teuthology.orchestra.run.smithi104.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-19T21:44:21.031 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:21.614 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:21.707 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-02-19T21:44:21.732 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-19T21:44:21.765 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:22.090 INFO:teuthology.orchestra.run.smithi104.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-02-19T21:44:22.090 INFO:teuthology.orchestra.run.smithi104.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-02-19T21:44:22.090 INFO:teuthology.orchestra.run.smithi104.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-02-19T21:44:22.090 INFO:teuthology.orchestra.run.smithi104.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:22.224 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:22.751 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-19T21:44:22.902 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-02-19T21:44:23.028 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:23.154 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-02-19T21:44:23.255 INFO:teuthology.orchestra.run.smithi104.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-02-19T21:44:23.356 INFO:teuthology.orchestra.run.smithi104.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:23.548 INFO:teuthology.orchestra.run.smithi104.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-19T21:44:23.548 INFO:teuthology.orchestra.run.smithi104.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:24.472 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-02-19T21:44:24.786 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-19T21:44:25.148 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:25.817 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:26.307 INFO:teuthology.orchestra.run.smithi044.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-02-19T21:44:26.307 INFO:teuthology.orchestra.run.smithi044.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-02-19T21:44:26.308 INFO:teuthology.orchestra.run.smithi044.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-02-19T21:44:26.308 INFO:teuthology.orchestra.run.smithi044.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:26.469 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:27.038 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-19T21:44:27.163 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-02-19T21:44:27.306 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:27.407 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-02-19T21:44:27.541 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-02-19T21:44:27.643 INFO:teuthology.orchestra.run.smithi044.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-19T21:44:27.851 INFO:teuthology.orchestra.run.smithi044.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-19T21:44:27.851 INFO:teuthology.orchestra.run.smithi044.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:39.529 INFO:teuthology.orchestra.run.smithi104.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-19T21:44:39.529 INFO:teuthology.orchestra.run.smithi104.stdout:Sourcing file `/etc/default/grub' 2024-02-19T21:44:39.564 INFO:teuthology.orchestra.run.smithi104.stdout:Generating grub configuration file ... 2024-02-19T21:44:39.897 INFO:teuthology.orchestra.run.smithi104.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-19T21:44:39.939 INFO:teuthology.orchestra.run.smithi104.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:40.276 INFO:teuthology.orchestra.run.smithi104.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-19T21:44:40.303 INFO:teuthology.orchestra.run.smithi104.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-19T21:44:40.377 INFO:teuthology.orchestra.run.smithi104.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-19T21:44:40.419 INFO:teuthology.orchestra.run.smithi104.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-19T21:44:41.324 INFO:teuthology.orchestra.run.smithi104.stdout:done 2024-02-19T21:44:41.770 DEBUG:teuthology.orchestra.run.smithi104:> dpkg -s linux-image-generic 2024-02-19T21:44:41.792 INFO:teuthology.orchestra.run.smithi104.stdout:Package: linux-image-generic 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Status: install ok installed 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Priority: optional 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Section: kernel 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Installed-Size: 18 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Architecture: amd64 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Source: linux-meta 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Version: 4.15.0.213.196 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T21:44:41.793 INFO:teuthology.orchestra.run.smithi104.stdout:Recommends: thermald 2024-02-19T21:44:41.794 INFO:teuthology.orchestra.run.smithi104.stdout:Description: Generic Linux kernel image 2024-02-19T21:44:41.794 INFO:teuthology.orchestra.run.smithi104.stdout: This package will always depend on the latest generic kernel image 2024-02-19T21:44:41.794 INFO:teuthology.orchestra.run.smithi104.stdout: available. 2024-02-19T21:44:41.794 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-02-19T21:44:41.794 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-19T21:44:41.794 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-19T21:44:41.794 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-02-19T21:44:41.794 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi104.front.sepia.ceph.com, path=None, version=distro) 2024-02-19T21:44:41.794 DEBUG:teuthology.orchestra.run.smithi104:> sudo apt-get clean 2024-02-19T21:44:41.903 DEBUG:teuthology.orchestra.run.smithi104:> sudo apt-get update 2024-02-19T21:44:42.032 INFO:teuthology.orchestra.run.smithi104.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-19T21:44:42.043 INFO:teuthology.orchestra.run.smithi104.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-02-19T21:44:42.063 INFO:teuthology.orchestra.run.smithi104.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-02-19T21:44:42.141 INFO:teuthology.orchestra.run.smithi104.stdout:Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-02-19T21:44:44.151 INFO:teuthology.orchestra.run.smithi104.stdout:Reading package lists... 2024-02-19T21:44:44.202 DEBUG:teuthology.orchestra.run.smithi104:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-19T21:44:44.282 INFO:teuthology.orchestra.run.smithi104.stdout:Reading package lists... 2024-02-19T21:44:44.556 INFO:teuthology.orchestra.run.smithi104.stdout:Building dependency tree... 2024-02-19T21:44:44.557 INFO:teuthology.orchestra.run.smithi104.stdout:Reading state information... 2024-02-19T21:44:44.764 INFO:teuthology.orchestra.run.smithi104.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-02-19T21:44:44.764 INFO:teuthology.orchestra.run.smithi104.stdout:The following packages were automatically installed and are no longer required: 2024-02-19T21:44:44.764 INFO:teuthology.orchestra.run.smithi104.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-02-19T21:44:44.764 INFO:teuthology.orchestra.run.smithi104.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-02-19T21:44:44.765 INFO:teuthology.orchestra.run.smithi104.stdout: linux-modules-extra-4.15.0-194-generic 2024-02-19T21:44:44.765 INFO:teuthology.orchestra.run.smithi104.stdout:Use 'sudo apt autoremove' to remove them. 2024-02-19T21:44:44.822 INFO:teuthology.orchestra.run.smithi104.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-02-19T21:44:44.824 DEBUG:teuthology.orchestra.run.smithi104:> dpkg -s linux-image-generic 2024-02-19T21:44:44.847 INFO:teuthology.orchestra.run.smithi104.stdout:Package: linux-image-generic 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Status: install ok installed 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Priority: optional 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Section: kernel 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Installed-Size: 18 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Architecture: amd64 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Source: linux-meta 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Version: 4.15.0.213.196 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Recommends: thermald 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout:Description: Generic Linux kernel image 2024-02-19T21:44:44.848 INFO:teuthology.orchestra.run.smithi104.stdout: This package will always depend on the latest generic kernel image 2024-02-19T21:44:44.849 INFO:teuthology.orchestra.run.smithi104.stdout: available. 2024-02-19T21:44:44.849 DEBUG:teuthology.orchestra.run.smithi104:> mktemp 2024-02-19T21:44:44.897 INFO:teuthology.orchestra.run.smithi104.stdout:/tmp/tmp.g9LuuP4kSl 2024-02-19T21:44:44.897 DEBUG:teuthology.orchestra.run.smithi104:> sudo cp /boot/grub/grub.cfg /tmp/tmp.g9LuuP4kSl 2024-02-19T21:44:44.963 DEBUG:teuthology.orchestra.run.smithi104:> sudo chmod 0666 /tmp/tmp.g9LuuP4kSl 2024-02-19T21:44:44.968 INFO:teuthology.orchestra.run.smithi044.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-19T21:44:44.968 INFO:teuthology.orchestra.run.smithi044.stdout:Sourcing file `/etc/default/grub' 2024-02-19T21:44:45.011 INFO:teuthology.orchestra.run.smithi044.stdout:Generating grub configuration file ... 2024-02-19T21:44:45.109 DEBUG:teuthology.orchestra.remote:smithi104:/tmp/tmp.g9LuuP4kSl is 10KB 2024-02-19T21:44:45.162 DEBUG:teuthology.orchestra.run.smithi104:> rm -fr /tmp/tmp.g9LuuP4kSl 2024-02-19T21:44:45.168 DEBUG:teuthology.orchestra.run.smithi104:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-19T21:44:45.226 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:44:45.226 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-19T21:44:45.226 DEBUG:teuthology.orchestra.run.smithi104:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-19T21:44:45.303 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-02-19T21:44:45.303 DEBUG:teuthology.orchestra.run.smithi104:> sudo update-grub 2024-02-19T21:44:45.448 INFO:teuthology.orchestra.run.smithi044.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-19T21:44:45.481 INFO:teuthology.orchestra.run.smithi044.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:45.883 INFO:teuthology.orchestra.run.smithi044.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-19T21:44:45.914 INFO:teuthology.orchestra.run.smithi044.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-19T21:44:45.990 INFO:teuthology.orchestra.run.smithi044.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-19T21:44:46.011 INFO:teuthology.orchestra.run.smithi044.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-19T21:44:46.673 INFO:teuthology.orchestra.run.smithi104.stderr:Sourcing file `/etc/default/grub' 2024-02-19T21:44:46.686 INFO:teuthology.orchestra.run.smithi104.stderr:Generating grub configuration file ... 2024-02-19T21:44:46.928 INFO:teuthology.orchestra.run.smithi044.stdout:done 2024-02-19T21:44:46.951 INFO:teuthology.orchestra.run.smithi104.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-19T21:44:46.963 INFO:teuthology.orchestra.run.smithi104.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:47.276 INFO:teuthology.orchestra.run.smithi104.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-19T21:44:47.289 INFO:teuthology.orchestra.run.smithi104.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-19T21:44:47.363 INFO:teuthology.orchestra.run.smithi104.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-19T21:44:47.376 INFO:teuthology.orchestra.run.smithi104.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-19T21:44:47.419 DEBUG:teuthology.orchestra.run.smithi044:> dpkg -s linux-image-generic 2024-02-19T21:44:47.438 INFO:teuthology.orchestra.run.smithi044.stdout:Package: linux-image-generic 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Status: install ok installed 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Priority: optional 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Section: kernel 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Installed-Size: 18 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Architecture: amd64 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Source: linux-meta 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Version: 4.15.0.213.196 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Recommends: thermald 2024-02-19T21:44:47.439 INFO:teuthology.orchestra.run.smithi044.stdout:Description: Generic Linux kernel image 2024-02-19T21:44:47.440 INFO:teuthology.orchestra.run.smithi044.stdout: This package will always depend on the latest generic kernel image 2024-02-19T21:44:47.440 INFO:teuthology.orchestra.run.smithi044.stdout: available. 2024-02-19T21:44:47.440 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-02-19T21:44:47.440 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-19T21:44:47.440 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-19T21:44:47.440 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-02-19T21:44:47.440 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi044.front.sepia.ceph.com, path=None, version=distro) 2024-02-19T21:44:47.440 DEBUG:teuthology.orchestra.run.smithi044:> sudo apt-get clean 2024-02-19T21:44:47.550 DEBUG:teuthology.orchestra.run.smithi044:> sudo apt-get update 2024-02-19T21:44:47.684 INFO:teuthology.orchestra.run.smithi044.stdout:Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-02-19T21:44:47.796 INFO:teuthology.orchestra.run.smithi044.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-19T21:44:47.878 INFO:teuthology.orchestra.run.smithi044.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-02-19T21:44:47.959 INFO:teuthology.orchestra.run.smithi104.stderr:done 2024-02-19T21:44:47.960 INFO:teuthology.orchestra.run.smithi044.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-02-19T21:44:47.961 DEBUG:teuthology.orchestra.run.smithi104:> sudo shutdown -r now 2024-02-19T21:44:49.860 INFO:teuthology.orchestra.run.smithi044.stdout:Reading package lists... 2024-02-19T21:44:49.915 DEBUG:teuthology.orchestra.run.smithi044:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-19T21:44:50.006 INFO:teuthology.orchestra.run.smithi044.stdout:Reading package lists... 2024-02-19T21:44:50.317 INFO:teuthology.orchestra.run.smithi044.stdout:Building dependency tree... 2024-02-19T21:44:50.317 INFO:teuthology.orchestra.run.smithi044.stdout:Reading state information... 2024-02-19T21:44:50.552 INFO:teuthology.orchestra.run.smithi044.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-02-19T21:44:50.553 INFO:teuthology.orchestra.run.smithi044.stdout:The following packages were automatically installed and are no longer required: 2024-02-19T21:44:50.553 INFO:teuthology.orchestra.run.smithi044.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-02-19T21:44:50.553 INFO:teuthology.orchestra.run.smithi044.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-02-19T21:44:50.553 INFO:teuthology.orchestra.run.smithi044.stdout: linux-modules-extra-4.15.0-194-generic 2024-02-19T21:44:50.553 INFO:teuthology.orchestra.run.smithi044.stdout:Use 'sudo apt autoremove' to remove them. 2024-02-19T21:44:50.612 INFO:teuthology.orchestra.run.smithi044.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-02-19T21:44:50.614 DEBUG:teuthology.orchestra.run.smithi044:> dpkg -s linux-image-generic 2024-02-19T21:44:50.634 INFO:teuthology.orchestra.run.smithi044.stdout:Package: linux-image-generic 2024-02-19T21:44:50.634 INFO:teuthology.orchestra.run.smithi044.stdout:Status: install ok installed 2024-02-19T21:44:50.635 INFO:teuthology.orchestra.run.smithi044.stdout:Priority: optional 2024-02-19T21:44:50.635 INFO:teuthology.orchestra.run.smithi044.stdout:Section: kernel 2024-02-19T21:44:50.635 INFO:teuthology.orchestra.run.smithi044.stdout:Installed-Size: 18 2024-02-19T21:44:50.635 INFO:teuthology.orchestra.run.smithi044.stdout:Maintainer: Ubuntu Kernel Team 2024-02-19T21:44:50.635 INFO:teuthology.orchestra.run.smithi044.stdout:Architecture: amd64 2024-02-19T21:44:50.635 INFO:teuthology.orchestra.run.smithi044.stdout:Source: linux-meta 2024-02-19T21:44:50.636 INFO:teuthology.orchestra.run.smithi044.stdout:Version: 4.15.0.213.196 2024-02-19T21:44:50.636 INFO:teuthology.orchestra.run.smithi044.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-19T21:44:50.636 INFO:teuthology.orchestra.run.smithi044.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-19T21:44:50.636 INFO:teuthology.orchestra.run.smithi044.stdout:Recommends: thermald 2024-02-19T21:44:50.636 INFO:teuthology.orchestra.run.smithi044.stdout:Description: Generic Linux kernel image 2024-02-19T21:44:50.636 INFO:teuthology.orchestra.run.smithi044.stdout: This package will always depend on the latest generic kernel image 2024-02-19T21:44:50.637 INFO:teuthology.orchestra.run.smithi044.stdout: available. 2024-02-19T21:44:50.637 DEBUG:teuthology.orchestra.run.smithi044:> mktemp 2024-02-19T21:44:50.685 INFO:teuthology.orchestra.run.smithi044.stdout:/tmp/tmp.P8NfnHjwpP 2024-02-19T21:44:50.685 DEBUG:teuthology.orchestra.run.smithi044:> sudo cp /boot/grub/grub.cfg /tmp/tmp.P8NfnHjwpP 2024-02-19T21:44:50.765 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 0666 /tmp/tmp.P8NfnHjwpP 2024-02-19T21:44:50.898 DEBUG:teuthology.orchestra.remote:smithi044:/tmp/tmp.P8NfnHjwpP is 10KB 2024-02-19T21:44:50.909 DEBUG:teuthology.orchestra.run.smithi044:> rm -fr /tmp/tmp.P8NfnHjwpP 2024-02-19T21:44:50.915 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-19T21:44:50.970 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:44:50.970 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-19T21:44:50.970 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-19T21:44:51.044 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-02-19T21:44:51.044 DEBUG:teuthology.orchestra.run.smithi044:> sudo update-grub 2024-02-19T21:44:52.656 INFO:teuthology.orchestra.run.smithi044.stderr:Sourcing file `/etc/default/grub' 2024-02-19T21:44:52.670 INFO:teuthology.orchestra.run.smithi044.stderr:Generating grub configuration file ... 2024-02-19T21:44:52.918 INFO:teuthology.orchestra.run.smithi044.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-19T21:44:52.930 INFO:teuthology.orchestra.run.smithi044.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-19T21:44:53.245 INFO:teuthology.orchestra.run.smithi044.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-19T21:44:53.257 INFO:teuthology.orchestra.run.smithi044.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-19T21:44:53.331 INFO:teuthology.orchestra.run.smithi044.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-19T21:44:53.343 INFO:teuthology.orchestra.run.smithi044.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-19T21:44:53.919 INFO:teuthology.orchestra.run.smithi044.stderr:done 2024-02-19T21:44:53.920 DEBUG:teuthology.orchestra.run.smithi044:> sudo shutdown -r now 2024-02-19T21:45:17.987 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-02-19T21:45:17.987 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi104.front.sepia.ceph.com' 2024-02-19T21:45:17.988 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi104.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:45:23.928 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-02-19T21:45:23.928 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-02-19T21:45:23.929 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:45:36.316 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.104 2024-02-19T21:45:42.460 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.44 2024-02-19T21:45:45.320 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi104.front.sepia.ceph.com' 2024-02-19T21:45:45.321 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi104.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:45:48.380 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.104 2024-02-19T21:45:51.464 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-02-19T21:45:51.465 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:46:00.388 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi104.front.sepia.ceph.com' 2024-02-19T21:46:00.388 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi104.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:46:31.952 DEBUG:teuthology.orchestra.run.smithi104:> true 2024-02-19T21:46:32.290 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi104.front.sepia.ceph.com' 2024-02-19T21:46:32.290 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.15.0-213-generic"... 2024-02-19T21:46:32.291 DEBUG:teuthology.orchestra.run.smithi104:> uname -r 2024-02-19T21:46:32.342 INFO:teuthology.orchestra.run.smithi104.stdout:4.15.0-213-generic 2024-02-19T21:46:32.342 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-02-19T21:46:32.342 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-19T21:46:32.343 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-19T21:46:33.343 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-02-19T21:46:33.343 DEBUG:teuthology.orchestra.run.smithi104:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-19T21:46:33.386 INFO:teuthology.orchestra.run.smithi104.stdout:ttyS1 2024-02-19T21:46:33.411 DEBUG:teuthology.parallel:result is None 2024-02-19T21:46:51.467 DEBUG:teuthology.orchestra.remote:timed out 2024-02-19T21:47:03.468 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-02-19T21:47:03.470 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:47:03.554 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-02-19T21:47:03.873 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-02-19T21:47:03.873 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.15.0-213-generic"... 2024-02-19T21:47:03.874 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-02-19T21:47:03.921 INFO:teuthology.orchestra.run.smithi044.stdout:4.15.0-213-generic 2024-02-19T21:47:03.922 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-02-19T21:47:03.922 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-19T21:47:03.922 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-19T21:47:04.923 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-02-19T21:47:04.923 DEBUG:teuthology.orchestra.run.smithi044:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-19T21:47:04.952 INFO:teuthology.orchestra.run.smithi044.stdout:ttyS1 2024-02-19T21:47:04.986 DEBUG:teuthology.parallel:result is None 2024-02-19T21:47:04.986 INFO:teuthology.run_tasks:Running task internal.base... 2024-02-19T21:47:04.994 INFO:teuthology.task.internal:Creating test directory... 2024-02-19T21:47:04.994 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-19T21:47:05.029 DEBUG:teuthology.orchestra.run.smithi104:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-19T21:47:05.036 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-02-19T21:47:05.043 INFO:teuthology.run_tasks:Running task internal.archive... 2024-02-19T21:47:05.049 INFO:teuthology.task.internal:Creating archive directory... 2024-02-19T21:47:05.049 DEBUG:teuthology.orchestra.run.smithi044:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-19T21:47:05.077 DEBUG:teuthology.orchestra.run.smithi104:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-19T21:47:05.101 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-02-19T21:47:05.108 INFO:teuthology.task.internal:Enabling coredump saving... 2024-02-19T21:47:05.108 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:47:05.137 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:47:05.157 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T21:47:05.164 INFO:teuthology.orchestra.run.smithi104.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T21:47:05.166 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T21:47:05.171 INFO:teuthology.orchestra.run.smithi104.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-19T21:47:05.173 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-02-19T21:47:05.180 INFO:teuthology.task.internal:Configuring sudo... 2024-02-19T21:47:05.180 DEBUG:teuthology.orchestra.run.smithi044:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-19T21:47:05.215 DEBUG:teuthology.orchestra.run.smithi104:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-19T21:47:05.231 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-02-19T21:47:05.240 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-02-19T21:47:05.240 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-19T21:47:05.269 DEBUG:teuthology.orchestra.run.smithi104:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-19T21:47:05.281 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-19T21:47:05.322 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-19T21:47:05.370 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:47:05.371 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-19T21:47:05.433 DEBUG:teuthology.orchestra.run.smithi104:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-19T21:47:05.440 DEBUG:teuthology.orchestra.run.smithi104:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-19T21:47:05.489 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:47:05.489 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-19T21:47:05.554 DEBUG:teuthology.orchestra.run.smithi044:> sudo service rsyslog restart 2024-02-19T21:47:05.556 DEBUG:teuthology.orchestra.run.smithi104:> sudo service rsyslog restart 2024-02-19T21:47:05.636 INFO:teuthology.run_tasks:Running task internal.timer... 2024-02-19T21:47:05.643 INFO:teuthology.task.internal:Starting timer... 2024-02-19T21:47:05.643 INFO:teuthology.run_tasks:Running task pcp... 2024-02-19T21:47:05.654 INFO:teuthology.run_tasks:Running task selinux... 2024-02-19T21:47:05.662 DEBUG:teuthology.task.selinux:Excluding smithi044: OS 'ubuntu' does not support SELinux 2024-02-19T21:47:05.663 DEBUG:teuthology.task.selinux:Excluding smithi104: OS 'ubuntu' does not support SELinux 2024-02-19T21:47:05.663 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-02-19T21:47:05.663 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-02-19T21:47:05.663 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-02-19T21:47:05.663 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-02-19T21:47:05.672 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-02-19T21:47:05.677 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-02-19T21:47:05.807 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-02-19T21:47:05.823 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-02-19T21:47:05.825 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi044.front.sepia.ceph.com,smithi104.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-02-19T21:52:30.943 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi044.front.sepia.ceph.com'), Remote(name='ubuntu@smithi104.front.sepia.ceph.com')] 2024-02-19T21:52:30.944 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-02-19T21:52:30.945 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:52:31.026 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-02-19T21:52:31.145 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-02-19T21:52:31.145 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi104.front.sepia.ceph.com' 2024-02-19T21:52:31.146 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi104.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-19T21:52:31.225 DEBUG:teuthology.orchestra.run.smithi104:> true 2024-02-19T21:52:31.345 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi104.front.sepia.ceph.com' 2024-02-19T21:52:31.345 INFO:teuthology.run_tasks:Running task clock... 2024-02-19T21:52:31.356 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-02-19T21:52:31.356 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-19T21:52:31.356 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:52:31.358 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-19T21:52:31.358 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:52:31.413 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-02-19T21:52:31.413 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Command line: ntpd -gq 2024-02-19T21:52:31.414 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: proto: precision = 0.140 usec (-23) 2024-02-19T21:52:31.414 INFO:teuthology.orchestra.run.smithi044.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T21:52:31.414 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T21:52:31.415 INFO:teuthology.orchestra.run.smithi044.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: restrict ::: KOD does nothing without LIMITED. 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listen and drop on 0 v6wildcard [::]:123 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listen normally on 2 lo 127.0.0.1:123 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listen normally on 3 ens1f0 172.21.15.44:123 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listen normally on 4 lo [::1]:123 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1572%3]:123 2024-02-19T21:52:31.416 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:31 ntpd[14394]: Listening on routing socket on fd #22 for interface updates 2024-02-19T21:52:31.461 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-02-19T21:52:31.461 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Command line: ntpd -gq 2024-02-19T21:52:31.462 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: proto: precision = 0.123 usec (-23) 2024-02-19T21:52:31.462 INFO:teuthology.orchestra.run.smithi104.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T21:52:31.463 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-19T21:52:31.463 INFO:teuthology.orchestra.run.smithi104.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-19T21:52:31.464 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: restrict ::: KOD does nothing without LIMITED. 2024-02-19T21:52:31.464 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listen and drop on 0 v6wildcard [::]:123 2024-02-19T21:52:31.464 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-19T21:52:31.464 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listen normally on 2 lo 127.0.0.1:123 2024-02-19T21:52:31.464 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listen normally on 3 enp3s0f1 172.21.15.104:123 2024-02-19T21:52:31.465 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listen normally on 4 lo [::1]:123 2024-02-19T21:52:31.465 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:ce89%5]:123 2024-02-19T21:52:31.465 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:31 ntpd[14668]: Listening on routing socket on fd #22 for interface updates 2024-02-19T21:52:32.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:32 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:32.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:32 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:32.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:32 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:32.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:32 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:34.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:34.415 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:34 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:34.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:34 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:34.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:34 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:34.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:34 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:34.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:34 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:35.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:35 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:35.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:35 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:35.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:35 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:35.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:35 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:35.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:35.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:35.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:35.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:35.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:35.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:35.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:35.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:35 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:36.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:36 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:36.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:36 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:36.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:36 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:36.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:36 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:36.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:36 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:37.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:37 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:37.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:37 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:37.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:37 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:37.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:37 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:37.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:37.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:37.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:37.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:37.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:37.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:37.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:37.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:37 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:38.414 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:38.415 INFO:teuthology.orchestra.run.smithi044.stdout:19 Feb 21:52:38 ntpd[14394]: ntpd: time slew +0.001398 s 2024-02-19T21:52:38.415 INFO:teuthology.orchestra.run.smithi044.stdout:ntpd: time slew +0.001398s 2024-02-19T21:52:38.415 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-19T21:52:38.415 INFO:teuthology.orchestra.run.smithi044.stderr:19 Feb 21:52:38 ntpd[14394]: can't open /var/log/ntpstats/loopstats.20240219: Permission denied 2024-02-19T21:52:38.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:38 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:38.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:38 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:38.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:38 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:38.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:38 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:38.480 INFO:teuthology.orchestra.run.smithi044.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T21:52:38.480 INFO:teuthology.orchestra.run.smithi044.stdout:============================================================================== 2024-02-19T21:52:38.480 INFO:teuthology.orchestra.run.smithi044.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:38.480 INFO:teuthology.orchestra.run.smithi044.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:38.480 INFO:teuthology.orchestra.run.smithi044.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:38.480 INFO:teuthology.orchestra.run.smithi044.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:39.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:39.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:39 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:40.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:40 ntpd[14668]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-19T21:52:40.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:40 ntpd[14668]: can't open /var/log/ntpstats/rawstats.20240219: Permission denied 2024-02-19T21:52:40.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:40 ntpd[14668]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-19T21:52:40.462 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:40 ntpd[14668]: can't open /var/log/ntpstats/peerstats.20240219: Permission denied 2024-02-19T21:52:40.463 INFO:teuthology.orchestra.run.smithi104.stdout:19 Feb 21:52:40 ntpd[14668]: ntpd: time slew +0.000064 s 2024-02-19T21:52:40.463 INFO:teuthology.orchestra.run.smithi104.stdout:ntpd: time slew +0.000064s 2024-02-19T21:52:40.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:40 ntpd[14668]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-19T21:52:40.463 INFO:teuthology.orchestra.run.smithi104.stderr:19 Feb 21:52:40 ntpd[14668]: can't open /var/log/ntpstats/loopstats.20240219: Permission denied 2024-02-19T21:52:40.523 INFO:teuthology.orchestra.run.smithi104.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T21:52:40.523 INFO:teuthology.orchestra.run.smithi104.stdout:============================================================================== 2024-02-19T21:52:40.523 INFO:teuthology.orchestra.run.smithi104.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:40.523 INFO:teuthology.orchestra.run.smithi104.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:40.523 INFO:teuthology.orchestra.run.smithi104.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:40.523 INFO:teuthology.orchestra.run.smithi104.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-19T21:52:40.524 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-02-19T21:52:40.535 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-02-19T21:52:40.535 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:52:40.535 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T21:52:40.542 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-02-19T21:52:40.542 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_1 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 341 Links: 1 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:51:09.037473447 +0000 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:51:08.873477347 +0000 2024-02-19T21:52:40.591 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:51:08.873477347 +0000 2024-02-19T21:52:40.592 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:52:40.592 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-19T21:52:40.646 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:52:40.646 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:52:40.646 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000395951 s, 1.3 MB/s 2024-02-19T21:52:40.647 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-19T21:52:40.696 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_2 2024-02-19T21:52:40.747 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-19T21:52:40.747 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:40.747 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 347 Links: 1 2024-02-19T21:52:40.747 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:40.747 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:51:09.173470212 +0000 2024-02-19T21:52:40.747 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:51:09.169470307 +0000 2024-02-19T21:52:40.748 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:51:09.169470307 +0000 2024-02-19T21:52:40.748 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:52:40.748 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-19T21:52:40.802 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:52:40.802 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:52:40.802 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.00034382 s, 1.5 MB/s 2024-02-19T21:52:40.803 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-19T21:52:40.852 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_3 2024-02-19T21:52:40.903 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-19T21:52:40.903 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:40.904 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 355 Links: 1 2024-02-19T21:52:40.904 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:40.904 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:51:09.461463362 +0000 2024-02-19T21:52:40.904 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:51:09.457463457 +0000 2024-02-19T21:52:40.904 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:51:09.457463457 +0000 2024-02-19T21:52:40.904 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:52:40.904 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-19T21:52:40.958 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:52:40.958 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:52:40.958 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000317588 s, 1.6 MB/s 2024-02-19T21:52:40.959 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-19T21:52:41.008 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_4 2024-02-19T21:52:41.059 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-19T21:52:41.059 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:41.059 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 361 Links: 1 2024-02-19T21:52:41.059 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:41.059 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:51:09.745456607 +0000 2024-02-19T21:52:41.059 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:51:09.741456702 +0000 2024-02-19T21:52:41.060 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:51:09.741456702 +0000 2024-02-19T21:52:41.060 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:52:41.060 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-19T21:52:41.114 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:52:41.114 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:52:41.114 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000339606 s, 1.5 MB/s 2024-02-19T21:52:41.115 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-19T21:52:41.164 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:52:41.273 INFO:teuthology.orchestra.run.smithi044.stdout:loop 2024-02-19T21:52:41.274 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_1... 2024-02-19T21:52:41.275 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:52:41.293 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-02-19T21:52:41.324 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_11 2024-02-19T21:52:41.341 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_2... 2024-02-19T21:52:41.341 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:52:41.408 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-02-19T21:52:41.438 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_21 2024-02-19T21:52:41.458 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_3... 2024-02-19T21:52:41.458 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:52:41.529 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-02-19T21:52:41.556 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_31 2024-02-19T21:52:41.579 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_4... 2024-02-19T21:52:41.579 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T21:52:41.644 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-02-19T21:52:41.671 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_41 2024-02-19T21:52:41.693 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:52:41.693 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T21:52:41.742 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme list 2024-02-19T21:52:41.797 INFO:teuthology.orchestra.run.smithi044.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-19T21:52:41.797 INFO:teuthology.orchestra.run.smithi044.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-19T21:52:41.797 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme0n1 CVFT5331001K400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-02-19T21:52:41.797 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme1n1 a0a6db9ed447368b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:41.798 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme2n1 d0bb962854c3b33d Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:41.798 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme3n1 62fd22bf420f3599 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:41.798 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme4n1 5cbfef9eef4fd8d3 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:41.798 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T21:52:41.799 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:52:41.799 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/scratch_devs 2024-02-19T21:52:41.855 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:52:41.855 DEBUG:teuthology.orchestra.run.smithi104:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T21:52:41.861 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-02-19T21:52:41.862 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/vg_nvme/lv_1 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 341 Links: 1 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:51:07.777758570 +0000 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:51:07.609762569 +0000 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:51:07.609762569 +0000 2024-02-19T21:52:41.909 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:52:41.909 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-19T21:52:41.963 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:52:41.963 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:52:41.963 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000350427 s, 1.5 MB/s 2024-02-19T21:52:41.964 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-19T21:52:42.014 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/vg_nvme/lv_2 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 347 Links: 1 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:51:07.917755238 +0000 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:51:07.913755333 +0000 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:51:07.913755333 +0000 2024-02-19T21:52:42.069 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:52:42.070 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-19T21:52:42.123 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:52:42.123 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:52:42.123 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000285325 s, 1.8 MB/s 2024-02-19T21:52:42.124 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-19T21:52:42.174 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/vg_nvme/lv_3 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 354 Links: 1 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:51:08.201748477 +0000 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:51:08.197748572 +0000 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:51:08.197748572 +0000 2024-02-19T21:52:42.225 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:52:42.225 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-19T21:52:42.283 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:52:42.283 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:52:42.283 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000381012 s, 1.3 MB/s 2024-02-19T21:52:42.284 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-19T21:52:42.333 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/vg_nvme/lv_4 2024-02-19T21:52:42.380 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 360 Links: 1 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:51:08.481741812 +0000 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:51:08.477741907 +0000 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:51:08.477741907 +0000 2024-02-19T21:52:42.381 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:52:42.381 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-19T21:52:42.435 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:52:42.435 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:52:42.435 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000353132 s, 1.4 MB/s 2024-02-19T21:52:42.437 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-19T21:52:42.486 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:52:42.577 INFO:teuthology.orchestra.run.smithi104.stdout:loop 2024-02-19T21:52:42.579 INFO:tasks.nvme_loop:Connecting nvme_loop smithi104:/dev/vg_nvme/lv_1... 2024-02-19T21:52:42.579 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:52:42.598 INFO:teuthology.orchestra.run.smithi104.stdout:1 2024-02-19T21:52:42.620 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/vg_nvme/lv_11 2024-02-19T21:52:42.642 INFO:tasks.nvme_loop:Connecting nvme_loop smithi104:/dev/vg_nvme/lv_2... 2024-02-19T21:52:42.642 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:52:42.711 INFO:teuthology.orchestra.run.smithi104.stdout:1 2024-02-19T21:52:42.740 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/vg_nvme/lv_21 2024-02-19T21:52:42.759 INFO:tasks.nvme_loop:Connecting nvme_loop smithi104:/dev/vg_nvme/lv_3... 2024-02-19T21:52:42.759 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:52:42.825 INFO:teuthology.orchestra.run.smithi104.stdout:1 2024-02-19T21:52:42.851 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/vg_nvme/lv_31 2024-02-19T21:52:42.875 INFO:tasks.nvme_loop:Connecting nvme_loop smithi104:/dev/vg_nvme/lv_4... 2024-02-19T21:52:42.875 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T21:52:42.942 INFO:teuthology.orchestra.run.smithi104.stdout:1 2024-02-19T21:52:42.972 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/vg_nvme/lv_41 2024-02-19T21:52:42.994 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:52:42.994 DEBUG:teuthology.orchestra.run.smithi104:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T21:52:43.044 DEBUG:teuthology.orchestra.run.smithi104:> sudo nvme list 2024-02-19T21:52:43.099 INFO:teuthology.orchestra.run.smithi104.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-19T21:52:43.100 INFO:teuthology.orchestra.run.smithi104.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-19T21:52:43.100 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/nvme0n1 PHFT620400NW400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-02-19T21:52:43.100 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/nvme1n1 6e9e44c521194b2f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:43.100 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/nvme2n1 3cfe133e337c684f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:43.100 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/nvme3n1 b535039e5d834240 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:43.100 INFO:teuthology.orchestra.run.smithi104.stdout:/dev/nvme4n1 be6e0b1409f03590 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-19T21:52:43.101 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T21:52:43.101 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:52:43.101 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/scratch_devs 2024-02-19T21:52:43.157 INFO:teuthology.run_tasks:Running task cephadm... 2024-02-19T21:52:43.225 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': '81bd20d634209c7cb82c18be12b4b5a05643ebf1'} 2024-02-19T21:52:43.226 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T21:52:43.226 INFO:tasks.cephadm:Cluster fsid is 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:52:43.226 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-02-19T21:52:43.226 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-02-19T21:52:43.226 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi044': '172.21.15.44', 'mon.smithi104': '172.21.15.104'} 2024-02-19T21:52:43.226 INFO:tasks.cephadm:Normalizing hostnames... 2024-02-19T21:52:43.227 DEBUG:teuthology.orchestra.run.smithi044:> sudo hostname $(hostname -s) 2024-02-19T21:52:43.243 DEBUG:teuthology.orchestra.run.smithi104:> sudo hostname $(hostname -s) 2024-02-19T21:52:43.259 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 81bd20d634209c7cb82c18be12b4b5a05643ebf1)... 2024-02-19T21:52:43.260 DEBUG:teuthology.orchestra.run.smithi044:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/81bd20d634209c7cb82c18be12b4b5a05643ebf1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-19T21:52:43.438 INFO:teuthology.orchestra.run.smithi044.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 19 21:52 /home/ubuntu/cephtest/cephadm 2024-02-19T21:52:43.438 DEBUG:teuthology.orchestra.run.smithi104:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/81bd20d634209c7cb82c18be12b4b5a05643ebf1/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-19T21:52:43.602 INFO:teuthology.orchestra.run.smithi104.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 19 21:52 /home/ubuntu/cephtest/cephadm 2024-02-19T21:52:43.602 DEBUG:teuthology.orchestra.run.smithi044:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-19T21:52:43.611 DEBUG:teuthology.orchestra.run.smithi104:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-19T21:52:43.628 DEBUG:teuthology.orchestra.run.smithi044:> sudo mkdir -p /etc/ceph 2024-02-19T21:52:43.667 DEBUG:teuthology.orchestra.run.smithi104:> sudo mkdir -p /etc/ceph 2024-02-19T21:52:43.682 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 777 /etc/ceph 2024-02-19T21:52:43.721 DEBUG:teuthology.orchestra.run.smithi104:> sudo chmod 777 /etc/ceph 2024-02-19T21:52:43.740 INFO:tasks.cephadm:Writing seed config... 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-02-19T21:52:43.741 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-02-19T21:52:43.742 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:52:43.742 DEBUG:teuthology.orchestra.run.smithi044:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-02-19T21:52:43.770 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true 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 = 3594d200-cf71-11ee-95bb-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-02-19T21:52:43.770 DEBUG:teuthology.orchestra.run.smithi044:mon.smithi044> sudo journalctl -f -n 0 -u ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi044.service 2024-02-19T21:52:43.814 INFO:tasks.cephadm:Bootstrapping... 2024-02-19T21:52:43.814 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 -v bootstrap --fsid 3594d200-cf71-11ee-95bb-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.44 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-02-19T21:52:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-02-19T21:52:44.224 INFO:teuthology.orchestra.run.smithi044.stderr:-------------------------------------------------------------------------------- 2024-02-19T21:52:44.224 INFO:teuthology.orchestra.run.smithi044.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1', '-v', 'bootstrap', '--fsid', '3594d200-cf71-11ee-95bb-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.44', '--skip-admin-label'] 2024-02-19T21:52:44.224 INFO:teuthology.orchestra.run.smithi044.stderr:Verifying podman|docker is present... 2024-02-19T21:52:44.224 INFO:teuthology.orchestra.run.smithi044.stderr:Verifying lvm2 is present... 2024-02-19T21:52:44.224 INFO:teuthology.orchestra.run.smithi044.stderr:Verifying time synchronization is in place... 2024-02-19T21:52:44.233 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-19T21:52:44.241 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.249 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-19T21:52:44.257 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.267 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: enabled 2024-02-19T21:52:44.276 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.284 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-19T21:52:44.294 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.304 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: enabled 2024-02-19T21:52:44.311 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: active 2024-02-19T21:52:44.313 INFO:teuthology.orchestra.run.smithi044.stderr:Unit ntp.service is enabled and running 2024-02-19T21:52:44.313 INFO:teuthology.orchestra.run.smithi044.stderr:Repeating the final host check... 2024-02-19T21:52:44.313 INFO:teuthology.orchestra.run.smithi044.stderr:docker (/usr/bin/docker) is present 2024-02-19T21:52:44.313 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl is present 2024-02-19T21:52:44.313 INFO:teuthology.orchestra.run.smithi044.stderr:lvcreate is present 2024-02-19T21:52:44.321 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-19T21:52:44.330 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.338 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-19T21:52:44.346 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.356 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: enabled 2024-02-19T21:52:44.364 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.371 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-19T21:52:44.378 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: inactive 2024-02-19T21:52:44.387 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: enabled 2024-02-19T21:52:44.395 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: active 2024-02-19T21:52:44.396 INFO:teuthology.orchestra.run.smithi044.stderr:Unit ntp.service is enabled and running 2024-02-19T21:52:44.396 INFO:teuthology.orchestra.run.smithi044.stderr:Host looks OK 2024-02-19T21:52:44.396 INFO:teuthology.orchestra.run.smithi044.stderr:Cluster fsid: 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:52:44.397 INFO:teuthology.orchestra.run.smithi044.stderr:Acquiring lock 139749913793816 on /run/cephadm/3594d200-cf71-11ee-95bb-87774f69a715.lock 2024-02-19T21:52:44.397 INFO:teuthology.orchestra.run.smithi044.stderr:Lock 139749913793816 acquired on /run/cephadm/3594d200-cf71-11ee-95bb-87774f69a715.lock 2024-02-19T21:52:44.397 INFO:teuthology.orchestra.run.smithi044.stderr:Verifying IP 172.21.15.44 port 3300 ... 2024-02-19T21:52:44.397 INFO:teuthology.orchestra.run.smithi044.stderr:Verifying IP 172.21.15.44 port 6789 ... 2024-02-19T21:52:44.397 INFO:teuthology.orchestra.run.smithi044.stderr:Base mon IP(s) is [172.21.15.44:3300, 172.21.15.44:6789], mon addrv is [v2:172.21.15.44:3300,v1:172.21.15.44:6789] 2024-02-19T21:52:44.402 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: default via 172.21.15.254 dev ens1f0 2024-02-19T21:52:44.402 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-19T21:52:44.402 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.44 2024-02-19T21:52:44.406 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-02-19T21:52:44.407 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1768sec hoplimit 64 pref medium 2024-02-19T21:52:44.410 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-02-19T21:52:44.411 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: inet6 ::1/128 scope host 2024-02-19T21:52:44.411 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-02-19T21:52:44.411 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: 3: ens1f0: mtu 1500 state UP qlen 1000 2024-02-19T21:52:44.411 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: inet6 fe80::ec4:7aff:febd:1572/64 scope link 2024-02-19T21:52:44.411 INFO:teuthology.orchestra.run.smithi044.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-02-19T21:52:44.413 INFO:teuthology.orchestra.run.smithi044.stderr:Mon IP `172.21.15.44` is in CIDR network `172.21.0.0/20` 2024-02-19T21:52:44.413 INFO:teuthology.orchestra.run.smithi044.stderr:Mon IP `172.21.15.44` is in CIDR network `172.21.0.0/20` 2024-02-19T21:52:44.413 INFO:teuthology.orchestra.run.smithi044.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-02-19T21:52:44.414 INFO:teuthology.orchestra.run.smithi044.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-02-19T21:52:44.415 INFO:teuthology.orchestra.run.smithi044.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1... 2024-02-19T21:52:44.787 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: 81bd20d634209c7cb82c18be12b4b5a05643ebf1: Pulling from ceph-ci/ceph 2024-02-19T21:52:44.794 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: 0f642e61a11a: Pulling fs layer 2024-02-19T21:52:44.795 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: ec93555fb25f: Pulling fs layer 2024-02-19T21:52:45.521 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: 0f642e61a11a: Verifying Checksum 2024-02-19T21:52:45.521 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: 0f642e61a11a: Download complete 2024-02-19T21:52:47.497 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: ec93555fb25f: Verifying Checksum 2024-02-19T21:52:47.497 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: ec93555fb25f: Download complete 2024-02-19T21:52:48.078 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: 0f642e61a11a: Pull complete 2024-02-19T21:52:58.423 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: ec93555fb25f: Pull complete 2024-02-19T21:52:58.597 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: Digest: sha256:7fa249cc0191869e2bcc743303b0da933d04d152b2397edb19ec992e48553ab9 2024-02-19T21:52:58.650 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T21:52:58.701 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 2024-02-19T21:53:08.924 INFO:teuthology.orchestra.run.smithi044.stderr:ceph: ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable) 2024-02-19T21:53:09.518 INFO:teuthology.orchestra.run.smithi044.stderr:Ceph version: ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable) 2024-02-19T21:53:09.518 INFO:teuthology.orchestra.run.smithi044.stderr:Extracting ceph user uid/gid from container image... 2024-02-19T21:53:10.372 INFO:teuthology.orchestra.run.smithi044.stderr:stat: 167 167 2024-02-19T21:53:10.920 INFO:teuthology.orchestra.run.smithi044.stderr:Creating initial keys... 2024-02-19T21:53:11.933 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-authtool: AQDHzdNlXAWdNxAANhrc/jHXHjGM0fhBfN0yfw== 2024-02-19T21:53:13.498 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-authtool: AQDJzdNlFOmqHRAAiHfAmy1jmUdcPmQZ0SW+3A== 2024-02-19T21:53:14.870 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-authtool: AQDKzdNl4xTaMxAAQ+TwmCatWoEN+kaXcrA72w== 2024-02-19T21:53:15.342 INFO:teuthology.orchestra.run.smithi044.stderr:Creating initial monmap... 2024-02-19T21:53:16.351 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-19T21:53:16.351 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:16.351 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-19T21:53:16.896 INFO:teuthology.orchestra.run.smithi044.stderr:monmaptool for smithi044 [v2:172.21.15.44:3300,v1:172.21.15.44:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-19T21:53:16.896 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/monmaptool: set fsid to 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:16.896 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-19T21:53:16.896 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:53:16.896 INFO:teuthology.orchestra.run.smithi044.stderr:Creating mon... 2024-02-19T21:53:17.824 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.815+0000 7ffb1ad6a880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-19T21:53:17.824 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.815+0000 7ffb1ad6a880 1 imported monmap: 2024-02-19T21:53:17.824 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: epoch 0 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: fsid 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: last_changed 2024-02-19T21:53:16.350020+0000 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: created 2024-02-19T21:53:16.350020+0000 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] mon.smithi044 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.815+0000 7ffb1ad6a880 0 /usr/bin/ceph-mon: set fsid to 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: RocksDB version: 6.8.1 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Compile date Feb 17 2024 2024-02-19T21:53:17.825 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: DB SUMMARY 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi044/store.db dir, Total Num: 0, files: 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi044/store.db: 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.error_if_exists: 0 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.create_if_missing: 1 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.paranoid_checks: 1 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.env: 0x55aa4d254080 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.fs: Posix File System 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.info_log: 0x55aa4e695300 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.statistics: (nil) 2024-02-19T21:53:17.826 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.use_fsync: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_log_file_size: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.allow_fallocate: 1 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.use_direct_reads: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-19T21:53:17.827 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.db_log_dir: 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi044/store.db 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_subcompactions: 1 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_background_flushes: -1 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-19T21:53:17.845 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.write_buffer_manager: 0x55aa4e69b950 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.unordered_write: 0 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-19T21:53:17.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.row_cache: None 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.wal_filter: None 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.preserve_deletes: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.two_write_queues: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.atomic_flush: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.log_readahead_size: 0 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_background_jobs: 2 2024-02-19T21:53:17.847 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_background_compactions: -1 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_open_files: -1 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-19T21:53:17.848 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Compression algorithms supported: 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kZSTD supported: 0 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kXpressCompression supported: 0 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kLZ4Compression supported: 1 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kBZip2Compression supported: 0 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kZlibCompression supported: 1 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: kSnappyCompression supported: 1 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi044/store.db/MANIFEST-000001 2024-02-19T21:53:17.849 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.merge_operator: 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_filter: None 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55aa4e5a9d18) 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-02-19T21:53:17.850 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: index_type: 0 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: checksum: 1 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_cache: 0x55aa4e5e0d10 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-02-19T21:53:17.851 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: format_version: 2 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-02-19T21:53:17.852 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: block_align: 0 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression: NoCompression 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.num_levels: 7 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-19T21:53:17.853 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-19T21:53:17.854 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-19T21:53:17.855 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.table_properties_collectors: 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.inplace_update_support: 0 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.bloom_locality: 0 2024-02-19T21:53:17.856 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.max_successive_merges: 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.ttl: 2592000 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.819+0000 7ffb1ad6a880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.823+0000 7ffb1ad6a880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi044/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-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.823+0000 7ffb1ad6a880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.823+0000 7ffb1ad6a880 4 rocksdb: DB pointer 0x55aa4e6a9800 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.823+0000 7ffb03bdd700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.823+0000 7ffb03bdd700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-02-19T21:53:17.857 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.858 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T21:53:17.859 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.860 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: 2024-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.827+0000 7ffb1ad6a880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.827+0000 7ffb1ad6a880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-02-19T21:53:17.861 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph-mon: debug 2024-02-19T21:53:17.827+0000 7ffb1ad6a880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi044 for mon.smithi044 2024-02-19T21:53:18.360 INFO:teuthology.orchestra.run.smithi044.stderr:create mon.smithi044 on 2024-02-19T21:53:18.495 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-02-19T21:53:18.609 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-3594d200-cf71-11ee-95bb-87774f69a715.target -> /etc/systemd/system/ceph-3594d200-cf71-11ee-95bb-87774f69a715.target. 2024-02-19T21:53:18.609 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-3594d200-cf71-11ee-95bb-87774f69a715.target -> /etc/systemd/system/ceph-3594d200-cf71-11ee-95bb-87774f69a715.target. 2024-02-19T21:53:18.854 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to reset failed state of unit ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi044.service: Unit ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi044.service is not loaded. 2024-02-19T21:53:18.863 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Created symlink /etc/systemd/system/ceph-3594d200-cf71-11ee-95bb-87774f69a715.target.wants/ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi044.service -> /etc/systemd/system/ceph-3594d200-cf71-11ee-95bb-87774f69a715@.service. 2024-02-19T21:53:18.991 INFO:teuthology.orchestra.run.smithi044.stderr:firewalld does not appear to be present 2024-02-19T21:53:18.991 INFO:teuthology.orchestra.run.smithi044.stderr:Not possible to enable service . firewalld.service is not available 2024-02-19T21:53:18.991 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for mon to start... 2024-02-19T21:53:18.991 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for mon... 2024-02-19T21:53:19.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:18 smithi044 systemd[1]: Started Ceph mon.smithi044 for 3594d200-cf71-11ee-95bb-87774f69a715. 2024-02-19T21:53:20.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:20 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.519893+0000 mon.smithi044 (mon.0) 0 : [INF] mkfs 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:20.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:20 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.502958+0000 mon.smithi044 (mon.0) 1 : cluster [INF] mon.smithi044 is new leader, mons smithi044 in quorum (ranks 0) 2024-02-19T21:53:20.875 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: cluster: 2024-02-19T21:53:20.875 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: id: 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:20.875 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: services: 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi044 (age 0.35915s) 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mgr: no daemons active 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: data: 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: pgs: 2024-02-19T21:53:20.877 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:21.420 INFO:teuthology.orchestra.run.smithi044.stderr:mon is available 2024-02-19T21:53:21.420 INFO:teuthology.orchestra.run.smithi044.stderr:Assimilating anything we can from ceph.conf... 2024-02-19T21:53:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:21 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.515001+0000 mon.smithi044 (mon.0) 2 : cluster [INF] mon.smithi044 is new leader, mons smithi044 in quorum (ranks 0) 2024-02-19T21:53:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:21 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.517055+0000 mon.smithi044 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi044=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0]} removed_ranks: {} 2024-02-19T21:53:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:21 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.526129+0000 mon.smithi044 (mon.0) 4 : cluster [DBG] fsmap 2024-02-19T21:53:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:21 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.537364+0000 mon.smithi044 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-19T21:53:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:21 smithi044 bash[15576]: cluster 2024-02-19T21:53:20.538470+0000 mon.smithi044 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-02-19T21:53:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:21 smithi044 bash[15576]: audit 2024-02-19T21:53:20.874099+0000 mon.smithi044 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.44:0/4090042762' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-02-19T21:53:22.632 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: [global] 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: fsid = 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.44:3300,v1:172.21.15.44:6789] 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: [mgr] 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: [osd] 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-19T21:53:22.633 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-19T21:53:23.126 INFO:teuthology.orchestra.run.smithi044.stderr:Generating new minimal ceph.conf... 2024-02-19T21:53:23.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:22 smithi044 bash[15576]: audit 2024-02-19T21:53:22.624438+0000 mon.smithi044 (mon.0) 8 : audit [INF] from='client.? 172.21.15.44:0/1990986794' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-19T21:53:23.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:22 smithi044 bash[15576]: audit 2024-02-19T21:53:22.630338+0000 mon.smithi044 (mon.0) 9 : audit [INF] from='client.? 172.21.15.44:0/1990986794' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-02-19T21:53:24.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:24 smithi044 bash[15576]: audit 2024-02-19T21:53:24.281990+0000 mon.smithi044 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.44:0/281998864' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:53:24.792 INFO:teuthology.orchestra.run.smithi044.stderr:Restarting the monitor... 2024-02-19T21:53:25.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:24 smithi044 systemd[1]: Stopping Ceph mon.smithi044 for 3594d200-cf71-11ee-95bb-87774f69a715... 2024-02-19T21:53:25.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:24 smithi044 bash[16106]: Error response from daemon: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-mon.smithi044 2024-02-19T21:53:25.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:24 smithi044 bash[15576]: debug 2024-02-19T21:53:24.979+0000 7fe89ee0d700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi044 -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-02-19T21:53:25.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:24 smithi044 bash[15576]: debug 2024-02-19T21:53:24.979+0000 7fe89ee0d700 -1 mon.smithi044@0(leader) e1 *** Got Signal Terminated *** 2024-02-19T21:53:25.812 INFO:teuthology.orchestra.run.smithi044.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2024-02-19T21:53:26.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:25 smithi044 bash[16106]: ceph-3594d200-cf71-11ee-95bb-87774f69a715-mon-smithi044 2024-02-19T21:53:26.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:25 smithi044 systemd[1]: Stopped Ceph mon.smithi044 for 3594d200-cf71-11ee-95bb-87774f69a715. 2024-02-19T21:53:26.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:25 smithi044 systemd[1]: Started Ceph mon.smithi044 for 3594d200-cf71-11ee-95bb-87774f69a715. 2024-02-19T21:53:27.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.983+0000 7f956347b880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-19T21:53:27.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.983+0000 7f956347b880 0 ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable), process ceph-mon, pid 7 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.983+0000 7f956347b880 0 pidfile_write: ignore empty --pid-file 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 0 load: jerasure load: lrc load: isa 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: RocksDB version: 6.8.1 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Compile date Feb 17 2024 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: DB SUMMARY 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: CURRENT file: CURRENT 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi044/store.db dir, Total Num: 1, files: 000004.sst 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi044/store.db: 000006.log size: 87035 ; 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.error_if_exists: 0 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.create_if_missing: 0 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.paranoid_checks: 1 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.env: 0x55a558173080 2024-02-19T21:53:27.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.fs: Posix File System 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.info_log: 0x55a55925a560 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.statistics: (nil) 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.use_fsync: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_log_file_size: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.allow_fallocate: 1 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.use_direct_reads: 0 2024-02-19T21:53:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.db_log_dir: 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi044/store.db 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_subcompactions: 1 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_background_flushes: -1 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-19T21:53:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.write_buffer_manager: 0x55a559ecc450 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-19T21:53:27.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-19T21:53:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-19T21:53:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.unordered_write: 0 2024-02-19T21:53:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-19T21:53:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-19T21:53:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.row_cache: None 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.wal_filter: None 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.preserve_deletes: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.two_write_queues: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.atomic_flush: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.log_readahead_size: 0 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_background_jobs: 2 2024-02-19T21:53:27.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:26 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_background_compactions: -1 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_open_files: -1 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-19T21:53:27.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Compression algorithms supported: 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kZSTD supported: 0 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kXpressCompression supported: 0 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kLZ4Compression supported: 1 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kBZip2Compression supported: 0 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kZlibCompression supported: 1 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: kSnappyCompression supported: 1 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi044/store.db/MANIFEST-000005 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.merge_operator: 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_filter: None 2024-02-19T21:53:27.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a5591fdd10) 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cache_index_and_filter_blocks: 1 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: pin_top_level_index_and_filter: 1 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: index_type: 0 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: data_block_index_type: 0 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: index_shortening: 1 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: data_block_hash_table_util_ratio: 0.750000 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: hash_index_allow_collision: 1 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: checksum: 1 2024-02-19T21:53:27.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: no_block_cache: 0 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_cache: 0x55a559234f10 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_cache_name: BinnedLRUCache 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_cache_options: 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: capacity : 536870912 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: num_shard_bits : 4 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: strict_capacity_limit : 0 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: high_pri_pool_ratio: 0.000 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_cache_compressed: (nil) 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: persistent_cache: (nil) 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_size: 4096 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_size_deviation: 10 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_restart_interval: 16 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: index_block_restart_interval: 1 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: metadata_block_size: 4096 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: partition_filters: 0 2024-02-19T21:53:27.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: use_delta_encoding: 1 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: whole_key_filtering: 1 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: verify_compression: 0 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: read_amp_bytes_per_bit: 0 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: format_version: 2 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: enable_index_compression: 1 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: block_align: 0 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression: NoCompression 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-19T21:53:27.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.num_levels: 7 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-19T21:53:27.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-19T21:53:27.166 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-19T21:53:27.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.table_properties_collectors: 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.inplace_update_support: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.bloom_locality: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.max_successive_merges: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.ttl: 2592000 2024-02-19T21:53:27.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi044/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-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708379606996709, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.991+0000 7f956347b880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.995+0000 7f956347b880 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-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.995+0000 7f956347b880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708379606998848, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83744, "table_properties": {"data_size": 82011, "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": 9462, "raw_average_key_size": 47, "raw_value_size": 76566, "raw_average_value_size": 382, "num_data_blocks": 11, "num_entries": 200, "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": 1708379606, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.995+0000 7f956347b880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.995+0000 7f956347b880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708379607000081, "job": 1, "event": "recovery_finished"} 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.999+0000 7f956347b880 4 rocksdb: DB pointer 0x55a5592fd800 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.999+0000 7f954a26d700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.999+0000 7f954a26d700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** DB Stats ** 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-19T21:53:27.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** Compaction Stats [default] ** 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: L0 2/0 83.47 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Sum 2/0 83.47 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** Compaction Stats [default] ** 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:53:27.170 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(Keys): cumulative 0, interval 0 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Cumulative compaction: 0.00 GB write, 10.26 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Interval compaction: 0.00 GB write, 10.26 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** File Read Latency Histogram By Level [default] ** 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** Compaction Stats [default] ** 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: L0 2/0 83.47 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Sum 2/0 83.47 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** Compaction Stats [default] ** 2024-02-19T21:53:27.171 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 60.7 0.00 0.00 1 0.001 0 0 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: AddFile(Keys): cumulative 0, interval 0 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Cumulative compaction: 0.00 GB write, 10.17 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: ** File Read Latency Histogram By Level [default] ** 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:26.999+0000 7f956347b880 0 starting mon.smithi044 rank 0 at public addrs [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] at bind addrs [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi044 fsid 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:27.172 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 1 mon.smithi044@-1(???) e1 preinit fsid 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 0 mon.smithi044@-1(???).mds e1 new map 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 0 mon.smithi044@-1(???).mds e1 print_map 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: e1 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 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-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: legacy client fscid: -1 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: No filesystems configured 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 0 mon.smithi044@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 0 mon.smithi044@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 0 mon.smithi044@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: audit 2024-02-19T21:53:24.281990+0000 mon.smithi044 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.44:0/281998864' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: debug 2024-02-19T21:53:27.003+0000 7f956347b880 1 mon.smithi044@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cluster 2024-02-19T21:53:27.009921+0000 mon.smithi044 (mon.0) 1 : cluster [INF] mon.smithi044 is new leader, mons smithi044 in quorum (ranks 0) 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cluster 2024-02-19T21:53:27.009996+0000 mon.smithi044 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi044=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0]} removed_ranks: {} 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cluster 2024-02-19T21:53:27.010494+0000 mon.smithi044 (mon.0) 3 : cluster [DBG] fsmap 2024-02-19T21:53:27.173 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cluster 2024-02-19T21:53:27.010539+0000 mon.smithi044 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-19T21:53:27.174 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:27 smithi044 bash[16231]: cluster 2024-02-19T21:53:27.011072+0000 mon.smithi044 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-02-19T21:53:28.032 INFO:teuthology.orchestra.run.smithi044.stderr:Wrote config to /etc/ceph/ceph.conf 2024-02-19T21:53:28.033 INFO:teuthology.orchestra.run.smithi044.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-02-19T21:53:28.033 INFO:teuthology.orchestra.run.smithi044.stderr:Creating mgr... 2024-02-19T21:53:28.033 INFO:teuthology.orchestra.run.smithi044.stderr:Verifying port 9283 ... 2024-02-19T21:53:28.181 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Failed to reset failed state of unit ceph-3594d200-cf71-11ee-95bb-87774f69a715@mgr.smithi044.ikbsam.service: Unit ceph-3594d200-cf71-11ee-95bb-87774f69a715@mgr.smithi044.ikbsam.service is not loaded. 2024-02-19T21:53:28.189 INFO:teuthology.orchestra.run.smithi044.stderr:systemctl: Created symlink /etc/systemd/system/ceph-3594d200-cf71-11ee-95bb-87774f69a715.target.wants/ceph-3594d200-cf71-11ee-95bb-87774f69a715@mgr.smithi044.ikbsam.service -> /etc/systemd/system/ceph-3594d200-cf71-11ee-95bb-87774f69a715@.service. 2024-02-19T21:53:28.314 INFO:teuthology.orchestra.run.smithi044.stderr:firewalld does not appear to be present 2024-02-19T21:53:28.314 INFO:teuthology.orchestra.run.smithi044.stderr:Not possible to enable service . firewalld.service is not available 2024-02-19T21:53:28.315 INFO:teuthology.orchestra.run.smithi044.stderr:firewalld does not appear to be present 2024-02-19T21:53:28.315 INFO:teuthology.orchestra.run.smithi044.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-02-19T21:53:28.315 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for mgr to start... 2024-02-19T21:53:28.315 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for mgr... 2024-02-19T21:53:28.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:28 smithi044 bash[16231]: audit 2024-02-19T21:53:27.375286+0000 mon.smithi044 (mon.0) 6 : audit [INF] from='client.? 172.21.15.44:0/3049713417' entity='client.admin' 2024-02-19T21:53:29.994 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "fsid": "3594d200-cf71-11ee-95bb-87774f69a715", 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "health": { 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "checks": {}, 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mutes": [] 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum": [ 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 0 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-19T21:53:29.995 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "smithi044" 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "monmap": { 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osdmap": { 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-19T21:53:29.996 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "pgmap": { 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-19T21:53:30.000 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "fsmap": { 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "available": false, 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "modules": [ 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "iostat", 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "nfs", 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "restful" 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "services": {} 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "servicemap": { 2024-02-19T21:53:30.001 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:30.002 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "modified": "2024-02-19T21:53:20.520821+0000", 2024-02-19T21:53:30.002 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "services": {} 2024-02-19T21:53:30.002 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:30.002 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-19T21:53:30.002 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:53:30.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:30 smithi044 bash[16231]: audit 2024-02-19T21:53:29.991186+0000 mon.smithi044 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.44:0/3081766162' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-19T21:53:30.529 INFO:teuthology.orchestra.run.smithi044.stderr:mgr not available, waiting (1/15)... 2024-02-19T21:53:33.904 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:33.904 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:53:33.904 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "fsid": "3594d200-cf71-11ee-95bb-87774f69a715", 2024-02-19T21:53:33.904 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "health": { 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "checks": {}, 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mutes": [] 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum": [ 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 0 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "smithi044" 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "monmap": { 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-19T21:53:33.905 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osdmap": { 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "pgmap": { 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-19T21:53:33.906 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "fsmap": { 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "available": false, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "modules": [ 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "iostat", 2024-02-19T21:53:33.907 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "nfs", 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "restful" 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "services": {} 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "servicemap": { 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "modified": "2024-02-19T21:53:20.520821+0000", 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "services": {} 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-19T21:53:33.908 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:53:34.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:33 smithi044 bash[16231]: audit 2024-02-19T21:53:33.897610+0000 mon.smithi044 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.44:0/1519790539' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-19T21:53:34.476 INFO:teuthology.orchestra.run.smithi044.stderr:mgr not available, waiting (2/15)... 2024-02-19T21:53:36.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: cluster 2024-02-19T21:53:36.338652+0000 mon.smithi044 (mon.0) 9 : cluster [INF] Activating manager daemon smithi044.ikbsam 2024-02-19T21:53:36.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: cluster 2024-02-19T21:53:36.345492+0000 mon.smithi044 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi044.ikbsam(active, starting, since 0.00695799s) 2024-02-19T21:53:36.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.347212+0000 mon.smithi044 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T21:53:36.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.347497+0000 mon.smithi044 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.347703+0000 mon.smithi044 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.347935+0000 mon.smithi044 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.348187+0000 mon.smithi044 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.348404+0000 mon.smithi044 (mon.0) 16 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.348846+0000 mon.smithi044 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi044"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.349383+0000 mon.smithi044 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr metadata", "who": "smithi044.ikbsam", "id": "smithi044.ikbsam"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: cluster 2024-02-19T21:53:36.353387+0000 mon.smithi044 (mon.0) 19 : cluster [INF] Manager daemon smithi044.ikbsam is now available 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.373639+0000 mon.smithi044 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.383353+0000 mon.smithi044 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/mirror_snapshot_schedule"}]: dispatch 2024-02-19T21:53:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:36 smithi044 bash[16231]: audit 2024-02-19T21:53:36.387949+0000 mon.smithi044 (mon.0) 22 : audit [INF] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/trash_purge_schedule"}]: dispatch 2024-02-19T21:53:37.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:37 smithi044 bash[16231]: audit 2024-02-19T21:53:36.393212+0000 mon.smithi044 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:37.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:37 smithi044 bash[16231]: audit 2024-02-19T21:53:36.400712+0000 mon.smithi044 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.44:0/1680786196' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:37.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:37 smithi044 bash[16231]: cluster 2024-02-19T21:53:37.348588+0000 mon.smithi044 (mon.0) 25 : cluster [DBG] mgrmap e3: smithi044.ikbsam(active, since 1.01004s) 2024-02-19T21:53:38.138 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:38.138 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:53:38.138 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "fsid": "3594d200-cf71-11ee-95bb-87774f69a715", 2024-02-19T21:53:38.138 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "health": { 2024-02-19T21:53:38.138 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-19T21:53:38.138 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "checks": {}, 2024-02-19T21:53:38.147 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mutes": [] 2024-02-19T21:53:38.147 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.147 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum": [ 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 0 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "smithi044" 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "quorum_age": 11, 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "monmap": { 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osdmap": { 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:38.148 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "pgmap": { 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-19T21:53:38.149 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "fsmap": { 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "available": true, 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "modules": [ 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "iostat", 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "nfs", 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "restful" 2024-02-19T21:53:38.150 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ], 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "services": {} 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "servicemap": { 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "modified": "2024-02-19T21:53:20.520821+0000", 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "services": {} 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: }, 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-19T21:53:38.151 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:53:38.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:38 smithi044 bash[16231]: audit 2024-02-19T21:53:38.136318+0000 mon.smithi044 (mon.0) 26 : audit [DBG] from='client.? 172.21.15.44:0/4055656089' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-19T21:53:38.742 INFO:teuthology.orchestra.run.smithi044.stderr:mgr is available 2024-02-19T21:53:39.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:39 smithi044 bash[16231]: cluster 2024-02-19T21:53:38.405122+0000 mon.smithi044 (mon.0) 27 : cluster [DBG] mgrmap e4: smithi044.ikbsam(active, since 2s) 2024-02-19T21:53:40.208 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: [global] 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: fsid = 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: [mgr] 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: [osd] 2024-02-19T21:53:40.209 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-19T21:53:40.210 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-19T21:53:40.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:40 smithi044 bash[16231]: audit 2024-02-19T21:53:40.204722+0000 mon.smithi044 (mon.0) 28 : audit [INF] from='client.? 172.21.15.44:0/3407528226' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-19T21:53:40.765 INFO:teuthology.orchestra.run.smithi044.stderr:Enabling cephadm module... 2024-02-19T21:53:42.573 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:42 smithi044 bash[16231]: audit 2024-02-19T21:53:42.236212+0000 mon.smithi044 (mon.0) 29 : audit [INF] from='client.? 172.21.15.44:0/762884330' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-02-19T21:53:43.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:43 smithi044 bash[16231]: audit 2024-02-19T21:53:42.292770+0000 mon.smithi044 (mon.0) 30 : audit [INF] from='client.? 172.21.15.44:0/762884330' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-02-19T21:53:43.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:43 smithi044 bash[16231]: cluster 2024-02-19T21:53:42.292954+0000 mon.smithi044 (mon.0) 31 : cluster [DBG] mgrmap e5: smithi044.ikbsam(active, since 5s) 2024-02-19T21:53:44.366 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:53:44.367 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 5, 2024-02-19T21:53:44.367 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "available": true, 2024-02-19T21:53:44.367 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "active_name": "smithi044.ikbsam", 2024-02-19T21:53:44.367 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-19T21:53:44.367 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:53:44.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:44 smithi044 bash[16231]: audit 2024-02-19T21:53:44.364876+0000 mon.smithi044 (mon.0) 32 : audit [DBG] from='client.? 172.21.15.44:0/2263545091' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-19T21:53:44.911 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for the mgr to restart... 2024-02-19T21:53:44.911 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for mgr epoch 5... 2024-02-19T21:53:49.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: cluster 2024-02-19T21:53:48.883170+0000 mon.smithi044 (mon.0) 33 : cluster [INF] Active manager daemon smithi044.ikbsam restarted 2024-02-19T21:53:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: cluster 2024-02-19T21:53:48.883436+0000 mon.smithi044 (mon.0) 34 : cluster [INF] Activating manager daemon smithi044.ikbsam 2024-02-19T21:53:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: cluster 2024-02-19T21:53:48.888924+0000 mon.smithi044 (mon.0) 35 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-02-19T21:53:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: cluster 2024-02-19T21:53:48.889216+0000 mon.smithi044 (mon.0) 36 : cluster [DBG] mgrmap e6: smithi044.ikbsam(active, starting, since 0.00587502s) 2024-02-19T21:53:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: audit 2024-02-19T21:53:48.891953+0000 mon.smithi044 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi044"}]: dispatch 2024-02-19T21:53:49.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: audit 2024-02-19T21:53:48.892907+0000 mon.smithi044 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr metadata", "who": "smithi044.ikbsam", "id": "smithi044.ikbsam"}]: dispatch 2024-02-19T21:53:49.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: audit 2024-02-19T21:53:48.894384+0000 mon.smithi044 (mon.0) 39 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T21:53:49.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: audit 2024-02-19T21:53:48.894815+0000 mon.smithi044 (mon.0) 40 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T21:53:49.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: audit 2024-02-19T21:53:48.895155+0000 mon.smithi044 (mon.0) 41 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T21:53:49.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: cluster 2024-02-19T21:53:48.898227+0000 mon.smithi044 (mon.0) 42 : cluster [INF] Manager daemon smithi044.ikbsam is now available 2024-02-19T21:53:49.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:48 smithi044 bash[16231]: audit 2024-02-19T21:53:48.920587+0000 mon.smithi044 (mon.0) 43 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:49.909 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:53:49.909 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-02-19T21:53:49.909 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "initialized": true 2024-02-19T21:53:49.910 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:53:50.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: cephadm 2024-02-19T21:53:48.916067+0000 mgr.smithi044.ikbsam (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-02-19T21:53:50.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: audit 2024-02-19T21:53:49.047016+0000 mon.smithi044 (mon.0) 44 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:50.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: audit 2024-02-19T21:53:49.049127+0000 mon.smithi044 (mon.0) 45 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:53:50.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: audit 2024-02-19T21:53:49.052286+0000 mon.smithi044 (mon.0) 46 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:53:50.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: audit 2024-02-19T21:53:49.056900+0000 mon.smithi044 (mon.0) 47 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:53:50.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: audit 2024-02-19T21:53:49.087310+0000 mon.smithi044 (mon.0) 48 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/mirror_snapshot_schedule"}]: dispatch 2024-02-19T21:53:50.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: audit 2024-02-19T21:53:49.092419+0000 mon.smithi044 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/trash_purge_schedule"}]: dispatch 2024-02-19T21:53:50.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:50 smithi044 bash[16231]: cluster 2024-02-19T21:53:49.893907+0000 mon.smithi044 (mon.0) 50 : cluster [DBG] mgrmap e7: smithi044.ikbsam(active, since 1.01056s) 2024-02-19T21:53:50.551 INFO:teuthology.orchestra.run.smithi044.stderr:mgr epoch 5 is available 2024-02-19T21:53:50.551 INFO:teuthology.orchestra.run.smithi044.stderr:Setting orchestrator backend to cephadm... 2024-02-19T21:53:51.373 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:51 smithi044 bash[16231]: audit 2024-02-19T21:53:49.892977+0000 mgr.smithi044.ikbsam (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-19T21:53:51.373 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:51 smithi044 bash[16231]: audit 2024-02-19T21:53:49.907747+0000 mgr.smithi044.ikbsam (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-19T21:53:52.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:52 smithi044 bash[16231]: cluster 2024-02-19T21:53:51.055669+0000 mon.smithi044 (mon.0) 51 : cluster [DBG] mgrmap e8: smithi044.ikbsam(active, since 2s) 2024-02-19T21:53:52.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:52 smithi044 bash[16231]: audit 2024-02-19T21:53:51.978832+0000 mon.smithi044 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:52.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:52 smithi044 bash[16231]: audit 2024-02-19T21:53:52.043564+0000 mon.smithi044 (mon.0) 53 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:53:53.329 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:53 smithi044 bash[16231]: audit 2024-02-19T21:53:51.969345+0000 mgr.smithi044.ikbsam (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:53:53.915 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: value unchanged 2024-02-19T21:53:54.471 INFO:teuthology.orchestra.run.smithi044.stderr:Generating ssh key... 2024-02-19T21:53:54.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:54 smithi044 bash[16231]: audit 2024-02-19T21:53:53.914023+0000 mgr.smithi044.ikbsam (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:53:57.572 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:57 smithi044 bash[16231]: audit 2024-02-19T21:53:55.954847+0000 mgr.smithi044.ikbsam (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:53:57.573 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:57 smithi044 bash[16231]: cephadm 2024-02-19T21:53:55.955290+0000 mgr.smithi044.ikbsam (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-02-19T21:53:57.573 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:57 smithi044 bash[16231]: audit 2024-02-19T21:53:56.321093+0000 mon.smithi044 (mon.0) 54 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:57.573 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:57 smithi044 bash[16231]: audit 2024-02-19T21:53:56.325296+0000 mon.smithi044 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:53:58.236 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDRInEOeNhdrL8BDLNCBl+CF1RiR9AqoWhenPUqknUXOyuSURRpn/Cv7q6q+80P1QFzcrASYnucGk6WHV2UCvAKT5ew92c9TI/J6fxpiqdsfN5fiXcvHaiqTWbTl3f3P03KwZKuZDCFZwByLRkomTbJv3HDTlax1HW0tx/eLHSIyXLFShjFhCLh2ZLygZQIXvmLyasdqgMN9pZqFppSm9Z2zFqLtlkc4eU9pT17DCw08jrtqHiRLfuF2gOJLAccObm8zl7B5UapdvBFt+M/eHX/g2dy8gleDkccO8ZHx1ySbLIBRKGJIGy0Q8YJ0Vsa/kUIAcNe/tNHLeCWaIyey8+H8BxPAPWvOKyNgYc25e3ys/UIzBw+YYEbT6BMlSUIJ66RtTmvYUB24TJFnXRidVWkV9dySrJnPPcJCP4/UDWsS4Ptbw0OCMCSDkgao24CXlJyriHXTJvsEHjMfqxNp3Xgrj9KJNrWAyCtjFog7ecKSeLzXFNLLxZPGGgbQeSpr6c= ceph-3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:53:58.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:53:58 smithi044 bash[16231]: audit 2024-02-19T21:53:58.235074+0000 mgr.smithi044.ikbsam (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:53:58.818 INFO:teuthology.orchestra.run.smithi044.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-02-19T21:53:58.818 INFO:teuthology.orchestra.run.smithi044.stderr:Adding key to root@localhost authorized_keys... 2024-02-19T21:53:58.819 INFO:teuthology.orchestra.run.smithi044.stderr:Adding host smithi044... 2024-02-19T21:54:00.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:00 smithi044 bash[16231]: audit 2024-02-19T21:54:00.208786+0000 mgr.smithi044.ikbsam (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi044", "addr": "172.21.15.44", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:01.012 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Added host 'smithi044' with addr '172.21.15.44' 2024-02-19T21:54:01.847 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying mon service with default placement... 2024-02-19T21:54:02.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:02 smithi044 bash[16231]: audit 2024-02-19T21:54:01.009895+0000 mon.smithi044 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:02.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:02 smithi044 bash[16231]: cephadm 2024-02-19T21:54:01.010617+0000 mgr.smithi044.ikbsam (mgr.14116) 10 : cephadm [INF] Added host smithi044 2024-02-19T21:54:02.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:02 smithi044 bash[16231]: audit 2024-02-19T21:54:01.050344+0000 mon.smithi044 (mon.0) 57 : audit [DBG] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:54:03.830 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled mon update... 2024-02-19T21:54:04.392 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying mgr service with default placement... 2024-02-19T21:54:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:04 smithi044 bash[16231]: audit 2024-02-19T21:54:03.820029+0000 mgr.smithi044.ikbsam (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:04 smithi044 bash[16231]: cephadm 2024-02-19T21:54:03.823309+0000 mgr.smithi044.ikbsam (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-02-19T21:54:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:04 smithi044 bash[16231]: audit 2024-02-19T21:54:03.829060+0000 mon.smithi044 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:05.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:04 smithi044 bash[16231]: audit 2024-02-19T21:54:03.975647+0000 mon.smithi044 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:05.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:04 smithi044 bash[16231]: audit 2024-02-19T21:54:04.282123+0000 mon.smithi044 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:05.839 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-02-19T21:54:06.460 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying crash service with default placement... 2024-02-19T21:54:07.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:06 smithi044 bash[16231]: audit 2024-02-19T21:54:05.830115+0000 mgr.smithi044.ikbsam (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:07.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:06 smithi044 bash[16231]: cephadm 2024-02-19T21:54:05.832283+0000 mgr.smithi044.ikbsam (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-02-19T21:54:07.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:06 smithi044 bash[16231]: audit 2024-02-19T21:54:05.836811+0000 mon.smithi044 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:07.846 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled crash update... 2024-02-19T21:54:08.499 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying prometheus service with default placement... 2024-02-19T21:54:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:08 smithi044 bash[16231]: audit 2024-02-19T21:54:07.839030+0000 mgr.smithi044.ikbsam (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:08 smithi044 bash[16231]: cephadm 2024-02-19T21:54:07.841469+0000 mgr.smithi044.ikbsam (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-02-19T21:54:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:08 smithi044 bash[16231]: audit 2024-02-19T21:54:07.844476+0000 mon.smithi044 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:10.006 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-02-19T21:54:10.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:09 smithi044 bash[16231]: cluster 2024-02-19T21:54:08.896000+0000 mgr.smithi044.ikbsam (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:10.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:09 smithi044 bash[16231]: audit 2024-02-19T21:54:09.479890+0000 mon.smithi044 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:10.596 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying grafana service with default placement... 2024-02-19T21:54:11.380 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:11 smithi044 bash[16231]: audit 2024-02-19T21:54:09.997332+0000 mgr.smithi044.ikbsam (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:11.381 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:11 smithi044 bash[16231]: cephadm 2024-02-19T21:54:09.999566+0000 mgr.smithi044.ikbsam (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-02-19T21:54:11.381 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:11 smithi044 bash[16231]: audit 2024-02-19T21:54:10.004093+0000 mon.smithi044 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:12.086 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-02-19T21:54:12.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:12 smithi044 bash[16231]: cluster 2024-02-19T21:54:10.896313+0000 mgr.smithi044.ikbsam (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:12.695 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying node-exporter service with default placement... 2024-02-19T21:54:13.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:13 smithi044 bash[16231]: audit 2024-02-19T21:54:12.079549+0000 mgr.smithi044.ikbsam (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:13.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:13 smithi044 bash[16231]: cephadm 2024-02-19T21:54:12.081771+0000 mgr.smithi044.ikbsam (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-02-19T21:54:13.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:13 smithi044 bash[16231]: audit 2024-02-19T21:54:12.084589+0000 mon.smithi044 (mon.0) 65 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:14.144 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-02-19T21:54:14.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:14 smithi044 bash[16231]: cluster 2024-02-19T21:54:12.896747+0000 mgr.smithi044.ikbsam (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:14.718 INFO:teuthology.orchestra.run.smithi044.stderr:Deploying alertmanager service with default placement... 2024-02-19T21:54:15.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:15 smithi044 bash[16231]: audit 2024-02-19T21:54:14.137266+0000 mgr.smithi044.ikbsam (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:15.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:15 smithi044 bash[16231]: cephadm 2024-02-19T21:54:14.139468+0000 mgr.smithi044.ikbsam (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-02-19T21:54:15.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:15 smithi044 bash[16231]: audit 2024-02-19T21:54:14.142677+0000 mon.smithi044 (mon.0) 66 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:16.161 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-02-19T21:54:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:16 smithi044 bash[16231]: cluster 2024-02-19T21:54:14.897060+0000 mgr.smithi044.ikbsam (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:17 smithi044 bash[16231]: audit 2024-02-19T21:54:16.153011+0000 mgr.smithi044.ikbsam (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:17 smithi044 bash[16231]: cephadm 2024-02-19T21:54:16.155206+0000 mgr.smithi044.ikbsam (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-02-19T21:54:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:17 smithi044 bash[16231]: audit 2024-02-19T21:54:16.159385+0000 mon.smithi044 (mon.0) 67 : audit [INF] from='mgr.14116 172.21.15.44:0/2200790890' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:18.268 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:18 smithi044 bash[16231]: cluster 2024-02-19T21:54:16.897405+0000 mgr.smithi044.ikbsam (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:20.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:19 smithi044 bash[16231]: audit 2024-02-19T21:54:18.651236+0000 mon.smithi044 (mon.0) 68 : audit [INF] from='client.? 172.21.15.44:0/3726920576' entity='client.admin' 2024-02-19T21:54:20.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:19 smithi044 bash[16231]: cluster 2024-02-19T21:54:18.897743+0000 mgr.smithi044.ikbsam (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:21.518 INFO:teuthology.orchestra.run.smithi044.stderr:Enabling the dashboard module... 2024-02-19T21:54:22.222 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:21 smithi044 bash[16231]: cluster 2024-02-19T21:54:20.898130+0000 mgr.smithi044.ikbsam (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:22.222 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:21 smithi044 bash[16231]: audit 2024-02-19T21:54:20.958353+0000 mon.smithi044 (mon.0) 69 : audit [INF] from='client.? 172.21.15.44:0/1992500788' entity='client.admin' 2024-02-19T21:54:24.262 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:23 smithi044 bash[16231]: cluster 2024-02-19T21:54:22.898535+0000 mgr.smithi044.ikbsam (mgr.14116) 32 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:24.262 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:23 smithi044 bash[16231]: audit 2024-02-19T21:54:23.019597+0000 mon.smithi044 (mon.0) 70 : audit [INF] from='client.? 172.21.15.44:0/2845698204' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-02-19T21:54:25.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:24 smithi044 bash[16231]: audit 2024-02-19T21:54:23.969169+0000 mon.smithi044 (mon.0) 71 : audit [INF] from='client.? 172.21.15.44:0/2845698204' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-02-19T21:54:25.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:24 smithi044 bash[16231]: cluster 2024-02-19T21:54:23.969272+0000 mon.smithi044 (mon.0) 72 : cluster [DBG] mgrmap e9: smithi044.ikbsam(active, since 35s) 2024-02-19T21:54:26.276 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:54:26.277 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "epoch": 9, 2024-02-19T21:54:26.277 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "available": true, 2024-02-19T21:54:26.277 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "active_name": "smithi044.ikbsam", 2024-02-19T21:54:26.277 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-19T21:54:26.277 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:54:26.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:26 smithi044 bash[16231]: audit 2024-02-19T21:54:26.275245+0000 mon.smithi044 (mon.0) 73 : audit [DBG] from='client.? 172.21.15.44:0/1690480950' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-19T21:54:26.838 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for the mgr to restart... 2024-02-19T21:54:26.838 INFO:teuthology.orchestra.run.smithi044.stderr:Waiting for mgr epoch 9... 2024-02-19T21:54:30.850 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: cluster 2024-02-19T21:54:30.575086+0000 mon.smithi044 (mon.0) 74 : cluster [INF] Active manager daemon smithi044.ikbsam restarted 2024-02-19T21:54:30.850 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: cluster 2024-02-19T21:54:30.575589+0000 mon.smithi044 (mon.0) 75 : cluster [INF] Activating manager daemon smithi044.ikbsam 2024-02-19T21:54:30.850 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: cluster 2024-02-19T21:54:30.582464+0000 mon.smithi044 (mon.0) 76 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-02-19T21:54:30.850 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: cluster 2024-02-19T21:54:30.582723+0000 mon.smithi044 (mon.0) 77 : cluster [DBG] mgrmap e10: smithi044.ikbsam(active, starting, since 0.00729965s) 2024-02-19T21:54:30.850 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: audit 2024-02-19T21:54:30.584794+0000 mon.smithi044 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi044"}]: dispatch 2024-02-19T21:54:30.851 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: audit 2024-02-19T21:54:30.586461+0000 mon.smithi044 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr metadata", "who": "smithi044.ikbsam", "id": "smithi044.ikbsam"}]: dispatch 2024-02-19T21:54:30.851 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: audit 2024-02-19T21:54:30.587672+0000 mon.smithi044 (mon.0) 80 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T21:54:30.851 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: audit 2024-02-19T21:54:30.587959+0000 mon.smithi044 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T21:54:30.851 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: audit 2024-02-19T21:54:30.588267+0000 mon.smithi044 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T21:54:30.851 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:30 smithi044 bash[16231]: cluster 2024-02-19T21:54:30.592466+0000 mon.smithi044 (mon.0) 83 : cluster [INF] Manager daemon smithi044.ikbsam is now available 2024-02-19T21:54:31.603 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: { 2024-02-19T21:54:31.604 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-02-19T21:54:31.604 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: "initialized": true 2024-02-19T21:54:31.604 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: } 2024-02-19T21:54:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:31 smithi044 bash[16231]: audit 2024-02-19T21:54:30.735009+0000 mon.smithi044 (mon.0) 84 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:54:31.936 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:31 smithi044 bash[16231]: audit 2024-02-19T21:54:30.739035+0000 mon.smithi044 (mon.0) 85 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:54:31.936 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:31 smithi044 bash[16231]: audit 2024-02-19T21:54:30.792351+0000 mon.smithi044 (mon.0) 86 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/mirror_snapshot_schedule"}]: dispatch 2024-02-19T21:54:31.937 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:31 smithi044 bash[16231]: audit 2024-02-19T21:54:30.796651+0000 mon.smithi044 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/trash_purge_schedule"}]: dispatch 2024-02-19T21:54:31.937 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:31 smithi044 bash[16231]: cluster 2024-02-19T21:54:31.585948+0000 mon.smithi044 (mon.0) 88 : cluster [DBG] mgrmap e11: smithi044.ikbsam(active, since 1.01051s) 2024-02-19T21:54:32.279 INFO:teuthology.orchestra.run.smithi044.stderr:mgr epoch 9 is available 2024-02-19T21:54:32.279 INFO:teuthology.orchestra.run.smithi044.stderr:Generating a dashboard self-signed certificate... 2024-02-19T21:54:32.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:32 smithi044 bash[16231]: audit 2024-02-19T21:54:31.585548+0000 mgr.smithi044.ikbsam (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-19T21:54:32.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:32 smithi044 bash[16231]: audit 2024-02-19T21:54:31.601835+0000 mgr.smithi044.ikbsam (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-19T21:54:33.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:33 smithi044 bash[16231]: cluster 2024-02-19T21:54:32.638939+0000 mon.smithi044 (mon.0) 89 : cluster [DBG] mgrmap e12: smithi044.ikbsam(active, since 2s) 2024-02-19T21:54:33.952 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: Self-signed certificate created 2024-02-19T21:54:34.520 INFO:teuthology.orchestra.run.smithi044.stderr:Creating initial admin user... 2024-02-19T21:54:35.343 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:34 smithi044 bash[16231]: audit 2024-02-19T21:54:33.784669+0000 mgr.smithi044.ikbsam (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:54:35.343 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:34 smithi044 bash[16231]: audit 2024-02-19T21:54:33.943177+0000 mon.smithi044 (mon.0) 90 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:35.343 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:34 smithi044 bash[16231]: audit 2024-02-19T21:54:33.950031+0000 mon.smithi044 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:36.316 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$HiVkRAt5kNh/OxcwDAdmHerUVzF6loiyDkX03UlXXfJjIIEzYAupi", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1708379676, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-02-19T21:54:36.918 INFO:teuthology.orchestra.run.smithi044.stderr:Fetching dashboard port number... 2024-02-19T21:54:37.644 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:37 smithi044 bash[16231]: audit 2024-02-19T21:54:36.045621+0000 mgr.smithi044.ikbsam (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-02-19T21:54:37.644 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:37 smithi044 bash[16231]: audit 2024-02-19T21:54:36.314795+0000 mon.smithi044 (mon.0) 92 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:37.644 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:37 smithi044 bash[16231]: audit 2024-02-19T21:54:36.357374+0000 mon.smithi044 (mon.0) 93 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:38.315 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: 8443 2024-02-19T21:54:38.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:38 smithi044 bash[16231]: cluster 2024-02-19T21:54:37.361462+0000 mon.smithi044 (mon.0) 94 : cluster [DBG] mgrmap e13: smithi044.ikbsam(active, since 6s) 2024-02-19T21:54:38.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:38 smithi044 bash[16231]: audit 2024-02-19T21:54:38.313253+0000 mon.smithi044 (mon.0) 95 : audit [DBG] from='client.? 172.21.15.44:0/1650152440' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-02-19T21:54:38.926 INFO:teuthology.orchestra.run.smithi044.stderr:firewalld does not appear to be present 2024-02-19T21:54:38.926 INFO:teuthology.orchestra.run.smithi044.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr:Ceph Dashboard is now available at: 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr: URL: https://smithi044.front.sepia.ceph.com:8443/ 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr: User: admin 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr: Password: ptchy35e5l 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:38.930 INFO:teuthology.orchestra.run.smithi044.stderr:Enabling autotune for osd_memory_target 2024-02-19T21:54:42.895 INFO:teuthology.orchestra.run.smithi044.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr:Or, if you are only running a single cluster on this host: 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.588 INFO:teuthology.orchestra.run.smithi044.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr:Please consider enabling telemetry to help improve Ceph: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: ceph telemetry on 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr:For more information see: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T21:54:43.589 INFO:teuthology.orchestra.run.smithi044.stderr:Bootstrap complete. 2024-02-19T21:54:43.627 INFO:tasks.cephadm:Fetching config... 2024-02-19T21:54:43.627 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:54:43.627 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-02-19T21:54:43.633 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-02-19T21:54:43.633 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:54:43.633 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-02-19T21:54:43.683 INFO:tasks.cephadm:Fetching mon keyring... 2024-02-19T21:54:43.683 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:54:43.683 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/keyring of=/dev/stdout 2024-02-19T21:54:43.739 INFO:tasks.cephadm:Fetching pub ssh key... 2024-02-19T21:54:43.739 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:54:43.739 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-02-19T21:54:43.787 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-02-19T21:54:43.787 DEBUG:teuthology.orchestra.run.smithi044:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDRInEOeNhdrL8BDLNCBl+CF1RiR9AqoWhenPUqknUXOyuSURRpn/Cv7q6q+80P1QFzcrASYnucGk6WHV2UCvAKT5ew92c9TI/J6fxpiqdsfN5fiXcvHaiqTWbTl3f3P03KwZKuZDCFZwByLRkomTbJv3HDTlax1HW0tx/eLHSIyXLFShjFhCLh2ZLygZQIXvmLyasdqgMN9pZqFppSm9Z2zFqLtlkc4eU9pT17DCw08jrtqHiRLfuF2gOJLAccObm8zl7B5UapdvBFt+M/eHX/g2dy8gleDkccO8ZHx1ySbLIBRKGJIGy0Q8YJ0Vsa/kUIAcNe/tNHLeCWaIyey8+H8BxPAPWvOKyNgYc25e3ys/UIzBw+YYEbT6BMlSUIJ66RtTmvYUB24TJFnXRidVWkV9dySrJnPPcJCP4/UDWsS4Ptbw0OCMCSDkgao24CXlJyriHXTJvsEHjMfqxNp3Xgrj9KJNrWAyCtjFog7ecKSeLzXFNLLxZPGGgbQeSpr6c= ceph-3594d200-cf71-11ee-95bb-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-19T21:54:43.852 INFO:teuthology.orchestra.run.smithi044.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDRInEOeNhdrL8BDLNCBl+CF1RiR9AqoWhenPUqknUXOyuSURRpn/Cv7q6q+80P1QFzcrASYnucGk6WHV2UCvAKT5ew92c9TI/J6fxpiqdsfN5fiXcvHaiqTWbTl3f3P03KwZKuZDCFZwByLRkomTbJv3HDTlax1HW0tx/eLHSIyXLFShjFhCLh2ZLygZQIXvmLyasdqgMN9pZqFppSm9Z2zFqLtlkc4eU9pT17DCw08jrtqHiRLfuF2gOJLAccObm8zl7B5UapdvBFt+M/eHX/g2dy8gleDkccO8ZHx1ySbLIBRKGJIGy0Q8YJ0Vsa/kUIAcNe/tNHLeCWaIyey8+H8BxPAPWvOKyNgYc25e3ys/UIzBw+YYEbT6BMlSUIJ66RtTmvYUB24TJFnXRidVWkV9dySrJnPPcJCP4/UDWsS4Ptbw0OCMCSDkgao24CXlJyriHXTJvsEHjMfqxNp3Xgrj9KJNrWAyCtjFog7ecKSeLzXFNLLxZPGGgbQeSpr6c= ceph-3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:54:43.863 DEBUG:teuthology.orchestra.run.smithi104:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDRInEOeNhdrL8BDLNCBl+CF1RiR9AqoWhenPUqknUXOyuSURRpn/Cv7q6q+80P1QFzcrASYnucGk6WHV2UCvAKT5ew92c9TI/J6fxpiqdsfN5fiXcvHaiqTWbTl3f3P03KwZKuZDCFZwByLRkomTbJv3HDTlax1HW0tx/eLHSIyXLFShjFhCLh2ZLygZQIXvmLyasdqgMN9pZqFppSm9Z2zFqLtlkc4eU9pT17DCw08jrtqHiRLfuF2gOJLAccObm8zl7B5UapdvBFt+M/eHX/g2dy8gleDkccO8ZHx1ySbLIBRKGJIGy0Q8YJ0Vsa/kUIAcNe/tNHLeCWaIyey8+H8BxPAPWvOKyNgYc25e3ys/UIzBw+YYEbT6BMlSUIJ66RtTmvYUB24TJFnXRidVWkV9dySrJnPPcJCP4/UDWsS4Ptbw0OCMCSDkgao24CXlJyriHXTJvsEHjMfqxNp3Xgrj9KJNrWAyCtjFog7ecKSeLzXFNLLxZPGGgbQeSpr6c= ceph-3594d200-cf71-11ee-95bb-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-19T21:54:43.889 INFO:teuthology.orchestra.run.smithi104.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDRInEOeNhdrL8BDLNCBl+CF1RiR9AqoWhenPUqknUXOyuSURRpn/Cv7q6q+80P1QFzcrASYnucGk6WHV2UCvAKT5ew92c9TI/J6fxpiqdsfN5fiXcvHaiqTWbTl3f3P03KwZKuZDCFZwByLRkomTbJv3HDTlax1HW0tx/eLHSIyXLFShjFhCLh2ZLygZQIXvmLyasdqgMN9pZqFppSm9Z2zFqLtlkc4eU9pT17DCw08jrtqHiRLfuF2gOJLAccObm8zl7B5UapdvBFt+M/eHX/g2dy8gleDkccO8ZHx1ySbLIBRKGJIGy0Q8YJ0Vsa/kUIAcNe/tNHLeCWaIyey8+H8BxPAPWvOKyNgYc25e3ys/UIzBw+YYEbT6BMlSUIJ66RtTmvYUB24TJFnXRidVWkV9dySrJnPPcJCP4/UDWsS4Ptbw0OCMCSDkgao24CXlJyriHXTJvsEHjMfqxNp3Xgrj9KJNrWAyCtjFog7ecKSeLzXFNLLxZPGGgbQeSpr6c= ceph-3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:54:43.900 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-02-19T21:54:44.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:43 smithi044 bash[16231]: audit 2024-02-19T21:54:42.890411+0000 mon.smithi044 (mon.0) 96 : audit [INF] from='client.? 172.21.15.44:0/248026085' entity='client.admin' 2024-02-19T21:54:47.902 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-02-19T21:54:47.903 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-02-19T21:54:48.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:48 smithi044 bash[16231]: audit 2024-02-19T21:54:47.106713+0000 mon.smithi044 (mon.0) 97 : audit [INF] from='client.? 172.21.15.44:0/36654891' entity='client.admin' 2024-02-19T21:54:51.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:51 smithi044 bash[16231]: cluster 2024-02-19T21:54:50.589449+0000 mgr.smithi044.ikbsam (mgr.14156) 5 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:51.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:51 smithi044 bash[16231]: audit 2024-02-19T21:54:51.512222+0000 mon.smithi044 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:52.491 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi104 2024-02-19T21:54:52.491 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:54:52.491 DEBUG:teuthology.orchestra.run.smithi104:> dd of=/etc/ceph/ceph.conf 2024-02-19T21:54:52.498 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:54:52.498 DEBUG:teuthology.orchestra.run.smithi104:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-19T21:54:52.545 INFO:tasks.cephadm:Adding host smithi104 to orchestrator... 2024-02-19T21:54:52.545 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch host add smithi104 2024-02-19T21:54:52.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: audit 2024-02-19T21:54:51.723894+0000 mon.smithi044 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: audit 2024-02-19T21:54:51.827695+0000 mon.smithi044 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd/host:smithi044", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: audit 2024-02-19T21:54:51.829378+0000 mon.smithi044 (mon.0) 101 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: audit 2024-02-19T21:54:51.830456+0000 mon.smithi044 (mon.0) 102 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: cephadm 2024-02-19T21:54:51.832069+0000 mgr.smithi044.ikbsam (mgr.14156) 7 : cephadm [INF] Updating smithi044:/etc/ceph/ceph.conf 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: cephadm 2024-02-19T21:54:51.877504+0000 mgr.smithi044.ikbsam (mgr.14156) 8 : cephadm [INF] Updating smithi044:/etc/ceph/ceph.client.admin.keyring 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: audit 2024-02-19T21:54:51.960473+0000 mon.smithi044 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: audit 2024-02-19T21:54:51.966529+0000 mon.smithi044 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:54:52.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:52 smithi044 bash[16231]: cephadm 2024-02-19T21:54:51.979029+0000 mgr.smithi044.ikbsam (mgr.14156) 9 : cephadm [INF] Deploying daemon alertmanager.smithi044 on smithi044 2024-02-19T21:54:54.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:53 smithi044 bash[16231]: cluster 2024-02-19T21:54:52.589817+0000 mgr.smithi044.ikbsam (mgr.14156) 10 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:56.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:55 smithi044 bash[16231]: cluster 2024-02-19T21:54:54.590212+0000 mgr.smithi044.ikbsam (mgr.14156) 11 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:54:58.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:57 smithi044 bash[16231]: cluster 2024-02-19T21:54:56.590653+0000 mgr.smithi044.ikbsam (mgr.14156) 12 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:59 smithi044 bash[16231]: cluster 2024-02-19T21:54:58.591031+0000 mgr.smithi044.ikbsam (mgr.14156) 13 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:59 smithi044 bash[16231]: audit 2024-02-19T21:54:59.815260+0000 mon.smithi044 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:59 smithi044 bash[16231]: audit 2024-02-19T21:54:59.817953+0000 mon.smithi044 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi044", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T21:55:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:59 smithi044 bash[16231]: audit 2024-02-19T21:54:59.821496+0000 mon.smithi044 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi044", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-19T21:55:00.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:54:59 smithi044 bash[16231]: audit 2024-02-19T21:54:59.822740+0000 mon.smithi044 (mon.0) 108 : audit [DBG] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:55:01.273 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:00 smithi044 bash[16231]: cephadm 2024-02-19T21:54:59.823945+0000 mgr.smithi044.ikbsam (mgr.14156) 14 : cephadm [INF] Deploying daemon crash.smithi044 on smithi044 2024-02-19T21:55:01.274 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:00 smithi044 bash[16231]: audit 2024-02-19T21:55:00.792003+0000 mon.smithi044 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:02.335 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:01 smithi044 bash[16231]: cluster 2024-02-19T21:55:00.591493+0000 mgr.smithi044.ikbsam (mgr.14156) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:03.868 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: audit 2024-02-19T21:55:02.490129+0000 mon.smithi044 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: cluster 2024-02-19T21:55:02.591822+0000 mgr.smithi044.ikbsam (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: audit 2024-02-19T21:55:02.619114+0000 mon.smithi044 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: audit 2024-02-19T21:55:02.623713+0000 mon.smithi044 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: audit 2024-02-19T21:55:02.625830+0000 mon.smithi044 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: audit 2024-02-19T21:55:02.626776+0000 mgr.smithi044.ikbsam (mgr.14156) 17 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: audit 2024-02-19T21:55:02.632390+0000 mon.smithi044 (mon.0) 114 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:03.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:03 smithi044 bash[16231]: cephadm 2024-02-19T21:55:02.646467+0000 mgr.smithi044.ikbsam (mgr.14156) 18 : cephadm [INF] Deploying daemon grafana.smithi044 on smithi044 2024-02-19T21:55:05.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:05 smithi044 bash[16231]: cluster 2024-02-19T21:55:04.592164+0000 mgr.smithi044.ikbsam (mgr.14156) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:07.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:06 smithi044 bash[16231]: audit 2024-02-19T21:55:05.799913+0000 mon.smithi044 (mon.0) 115 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:07 smithi044 bash[16231]: cluster 2024-02-19T21:55:06.592516+0000 mgr.smithi044.ikbsam (mgr.14156) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:10.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:09 smithi044 bash[16231]: cluster 2024-02-19T21:55:08.592924+0000 mgr.smithi044.ikbsam (mgr.14156) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:12.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:11 smithi044 bash[16231]: cluster 2024-02-19T21:55:10.593258+0000 mgr.smithi044.ikbsam (mgr.14156) 22 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:14.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:13 smithi044 bash[16231]: cluster 2024-02-19T21:55:12.593762+0000 mgr.smithi044.ikbsam (mgr.14156) 23 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:16.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:15 smithi044 bash[16231]: cluster 2024-02-19T21:55:14.594279+0000 mgr.smithi044.ikbsam (mgr.14156) 24 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:17.875 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:17 smithi044 bash[16231]: cluster 2024-02-19T21:55:16.594691+0000 mgr.smithi044.ikbsam (mgr.14156) 25 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:18.130 INFO:teuthology.orchestra.run.smithi104.stdout:Added host 'smithi104' with addr '172.21.15.104' 2024-02-19T21:55:18.793 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch host ls --format=json 2024-02-19T21:55:19.102 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:18 smithi044 bash[16231]: audit 2024-02-19T21:55:17.281670+0000 mgr.smithi044.ikbsam (mgr.14156) 26 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi104", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:55:19.102 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:18 smithi044 bash[16231]: audit 2024-02-19T21:55:18.127633+0000 mon.smithi044 (mon.0) 116 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:20.138 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:19 smithi044 bash[16231]: cephadm 2024-02-19T21:55:18.128514+0000 mgr.smithi044.ikbsam (mgr.14156) 27 : cephadm [INF] Added host smithi104 2024-02-19T21:55:20.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:19 smithi044 bash[16231]: cluster 2024-02-19T21:55:18.595296+0000 mgr.smithi044.ikbsam (mgr.14156) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:21.515 INFO:teuthology.orchestra.run.smithi104.stdout: 2024-02-19T21:55:21.515 INFO:teuthology.orchestra.run.smithi104.stdout:[{"addr": "172.21.15.44", "hostname": "smithi044", "labels": [], "status": ""}, {"addr": "172.21.15.104", "hostname": "smithi104", "labels": [], "status": ""}] 2024-02-19T21:55:21.517 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:21 smithi044 bash[16231]: audit 2024-02-19T21:55:20.179653+0000 mon.smithi044 (mon.0) 117 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:21.518 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:21 smithi044 bash[16231]: cephadm 2024-02-19T21:55:20.183988+0000 mgr.smithi044.ikbsam (mgr.14156) 29 : cephadm [INF] Deploying daemon node-exporter.smithi044 on smithi044 2024-02-19T21:55:21.518 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:21 smithi044 bash[16231]: cluster 2024-02-19T21:55:20.595749+0000 mgr.smithi044.ikbsam (mgr.14156) 30 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:21.518 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:21 smithi044 bash[16231]: audit 2024-02-19T21:55:20.739731+0000 mon.smithi044 (mon.0) 118 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:21.518 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:21 smithi044 bash[16231]: audit 2024-02-19T21:55:20.743256+0000 mon.smithi044 (mon.0) 119 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-02-19T21:55:21.518 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:21 smithi044 bash[16231]: audit 2024-02-19T21:55:20.810076+0000 mon.smithi044 (mon.0) 120 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:22.060 INFO:tasks.cephadm:Setting crush tunables to default 2024-02-19T21:55:22.060 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd crush tunables default 2024-02-19T21:55:22.856 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:22 smithi044 bash[16231]: audit 2024-02-19T21:55:21.741980+0000 mon.smithi044 (mon.0) 121 : audit [INF] from='mgr.14156 172.21.15.44:0/3327878957' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-02-19T21:55:22.856 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:22 smithi044 bash[16231]: cluster 2024-02-19T21:55:21.742048+0000 mon.smithi044 (mon.0) 122 : cluster [DBG] mgrmap e14: smithi044.ikbsam(active, since 51s) 2024-02-19T21:55:27.608 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:27 smithi044 bash[16231]: audit 2024-02-19T21:55:27.552921+0000 mon.smithi044 (mon.0) 123 : audit [INF] from='client.? 172.21.15.44:0/1604607239' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-02-19T21:55:27.610 INFO:teuthology.orchestra.run.smithi044.stderr:adjusted tunables profile to default 2024-02-19T21:55:28.392 INFO:tasks.cephadm:Adding mon.smithi044 on smithi044 2024-02-19T21:55:28.392 INFO:tasks.cephadm:Adding mon.smithi104 on smithi104 2024-02-19T21:55:28.392 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch apply mon '2;smithi044:172.21.15.44=smithi044;smithi104:172.21.15.104=smithi104' 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:27.605725+0000 mon.smithi044 (mon.0) 124 : audit [INF] from='client.? 172.21.15.44:0/1604607239' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: cluster 2024-02-19T21:55:27.605800+0000 mon.smithi044 (mon.0) 125 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: cluster 2024-02-19T21:55:28.391870+0000 mon.smithi044 (mon.0) 126 : cluster [INF] Active manager daemon smithi044.ikbsam restarted 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: cluster 2024-02-19T21:55:28.392088+0000 mon.smithi044 (mon.0) 127 : cluster [INF] Activating manager daemon smithi044.ikbsam 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: cluster 2024-02-19T21:55:28.397364+0000 mon.smithi044 (mon.0) 128 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: cluster 2024-02-19T21:55:28.397481+0000 mon.smithi044 (mon.0) 129 : cluster [DBG] mgrmap e15: smithi044.ikbsam(active, starting, since 0.00548659s) 2024-02-19T21:55:28.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.398592+0000 mon.smithi044 (mon.0) 130 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi044"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.399921+0000 mon.smithi044 (mon.0) 131 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr metadata", "who": "smithi044.ikbsam", "id": "smithi044.ikbsam"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.400541+0000 mon.smithi044 (mon.0) 132 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.400702+0000 mon.smithi044 (mon.0) 133 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.400864+0000 mon.smithi044 (mon.0) 134 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: cluster 2024-02-19T21:55:28.404048+0000 mon.smithi044 (mon.0) 135 : cluster [INF] Manager daemon smithi044.ikbsam is now available 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.542948+0000 mon.smithi044 (mon.0) 136 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.548696+0000 mon.smithi044 (mon.0) 137 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:55:28.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:28 smithi044 bash[16231]: audit 2024-02-19T21:55:28.575608+0000 mon.smithi044 (mon.0) 138 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:29.779 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:29 smithi044 bash[16231]: audit 2024-02-19T21:55:28.610336+0000 mon.smithi044 (mon.0) 139 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/mirror_snapshot_schedule"}]: dispatch 2024-02-19T21:55:29.779 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:29 smithi044 bash[16231]: audit 2024-02-19T21:55:28.614119+0000 mon.smithi044 (mon.0) 140 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi044.ikbsam/trash_purge_schedule"}]: dispatch 2024-02-19T21:55:29.779 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:29 smithi044 bash[16231]: audit 2024-02-19T21:55:29.197789+0000 mon.smithi044 (mon.0) 141 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:29.779 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:29 smithi044 bash[16231]: cluster 2024-02-19T21:55:29.401750+0000 mon.smithi044 (mon.0) 142 : cluster [DBG] mgrmap e16: smithi044.ikbsam(active, since 1.00975s) 2024-02-19T21:55:31.229 INFO:teuthology.orchestra.run.smithi104.stdout:Scheduled mon update... 2024-02-19T21:55:31.641 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:31 smithi044 bash[16231]: cluster 2024-02-19T21:55:30.615965+0000 mon.smithi044 (mon.0) 143 : cluster [DBG] mgrmap e17: smithi044.ikbsam(active, since 2s) 2024-02-19T21:55:31.642 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:31 smithi044 bash[16231]: audit 2024-02-19T21:55:30.666898+0000 mon.smithi044 (mon.0) 144 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:31.642 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:31 smithi044 bash[16231]: audit 2024-02-19T21:55:31.226800+0000 mon.smithi044 (mon.0) 145 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:31.782 DEBUG:teuthology.orchestra.run.smithi104:mon.smithi104> sudo journalctl -f -n 0 -u ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi104.service 2024-02-19T21:55:31.784 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T21:55:31.784 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T21:55:32.029 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-02-19T21:55:32.712 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:32 smithi044 bash[16231]: cephadm 2024-02-19T21:55:31.221765+0000 mgr.smithi044.ikbsam (mgr.14184) 2 : cephadm [INF] Saving service mon spec with placement smithi044:172.21.15.44=smithi044;smithi104:172.21.15.104=smithi104;count:2 2024-02-19T21:55:35.336 INFO:teuthology.orchestra.run.smithi104.stdout: 2024-02-19T21:55:35.337 INFO:teuthology.orchestra.run.smithi104.stdout:{"epoch":1,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","modified":"2024-02-19T21:53:16.350020Z","created":"2024-02-19T21:53:16.350020Z","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":"smithi044","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-19T21:55:35.340 INFO:teuthology.orchestra.run.smithi104.stderr:dumped monmap epoch 1 2024-02-19T21:55:35.698 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:35 smithi044 bash[16231]: audit 2024-02-19T21:55:34.662493+0000 mon.smithi044 (mon.0) 146 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:35.698 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:35 smithi044 bash[16231]: audit 2024-02-19T21:55:34.951210+0000 mon.smithi044 (mon.0) 147 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd/host:smithi044", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:55:35.698 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:35 smithi044 bash[16231]: audit 2024-02-19T21:55:35.335114+0000 mon.smithi044 (mon.0) 148 : audit [DBG] from='client.? 172.21.15.104:0/612577243' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T21:55:36.951 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T21:55:36.951 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T21:55:39.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:37.672409+0000 mon.smithi044 (mon.0) 149 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:39.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:37.983975+0000 mon.smithi044 (mon.0) 150 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:39.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:37.985398+0000 mon.smithi044 (mon.0) 151 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd/host:smithi104", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:55:39.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:37.987072+0000 mon.smithi044 (mon.0) 152 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:55:39.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:37.988288+0000 mon.smithi044 (mon.0) 153 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:55:39.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:38.052315+0000 mon.smithi044 (mon.0) 154 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:39.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:38.076368+0000 mon.smithi044 (mon.0) 155 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:39.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:38.085642+0000 mon.smithi044 (mon.0) 156 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:39.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:38.090009+0000 mon.smithi044 (mon.0) 157 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi104", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T21:55:39.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:38.094675+0000 mon.smithi044 (mon.0) 158 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi104", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-19T21:55:39.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:38 smithi044 bash[16231]: audit 2024-02-19T21:55:38.096271+0000 mon.smithi044 (mon.0) 159 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:55:40.081 INFO:teuthology.orchestra.run.smithi104.stdout: 2024-02-19T21:55:40.081 INFO:teuthology.orchestra.run.smithi104.stdout:{"epoch":1,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","modified":"2024-02-19T21:53:16.350020Z","created":"2024-02-19T21:53:16.350020Z","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":"smithi044","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-19T21:55:40.084 INFO:teuthology.orchestra.run.smithi104.stderr:dumped monmap epoch 1 2024-02-19T21:55:40.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:39 smithi044 bash[16231]: cephadm 2024-02-19T21:55:37.990422+0000 mgr.smithi044.ikbsam (mgr.14184) 3 : cephadm [INF] Updating smithi044:/etc/ceph/ceph.conf 2024-02-19T21:55:40.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:39 smithi044 bash[16231]: cephadm 2024-02-19T21:55:37.990914+0000 mgr.smithi044.ikbsam (mgr.14184) 4 : cephadm [INF] Updating smithi104:/etc/ceph/ceph.conf 2024-02-19T21:55:40.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:39 smithi044 bash[16231]: cephadm 2024-02-19T21:55:38.008806+0000 mgr.smithi044.ikbsam (mgr.14184) 5 : cephadm [INF] Updating smithi104:/etc/ceph/ceph.client.admin.keyring 2024-02-19T21:55:40.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:39 smithi044 bash[16231]: cephadm 2024-02-19T21:55:38.018706+0000 mgr.smithi044.ikbsam (mgr.14184) 6 : cephadm [INF] Updating smithi044:/etc/ceph/ceph.client.admin.keyring 2024-02-19T21:55:40.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:39 smithi044 bash[16231]: cephadm 2024-02-19T21:55:38.097796+0000 mgr.smithi044.ikbsam (mgr.14184) 7 : cephadm [INF] Deploying daemon crash.smithi104 on smithi104 2024-02-19T21:55:41.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:40 smithi044 bash[16231]: audit 2024-02-19T21:55:40.079289+0000 mon.smithi044 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.104:0/661360759' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T21:55:41.625 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T21:55:41.626 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T21:55:42.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:41 smithi044 bash[16231]: audit 2024-02-19T21:55:40.848350+0000 mon.smithi044 (mon.0) 161 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:42.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:41 smithi044 bash[16231]: audit 2024-02-19T21:55:40.853623+0000 mon.smithi044 (mon.0) 162 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi104.cxzjji", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T21:55:42.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:41 smithi044 bash[16231]: audit 2024-02-19T21:55:40.860469+0000 mon.smithi044 (mon.0) 163 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi104.cxzjji", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-02-19T21:55:42.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:41 smithi044 bash[16231]: audit 2024-02-19T21:55:40.862134+0000 mon.smithi044 (mon.0) 164 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T21:55:42.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:41 smithi044 bash[16231]: audit 2024-02-19T21:55:40.864009+0000 mon.smithi044 (mon.0) 165 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:55:42.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:41 smithi044 bash[16231]: cephadm 2024-02-19T21:55:40.865620+0000 mgr.smithi044.ikbsam (mgr.14184) 8 : cephadm [INF] Deploying daemon mgr.smithi104.cxzjji on smithi104 2024-02-19T21:55:44.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:44 smithi044 bash[16231]: audit 2024-02-19T21:55:43.547231+0000 mon.smithi044 (mon.0) 166 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:44.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:44 smithi044 bash[16231]: audit 2024-02-19T21:55:43.550741+0000 mon.smithi044 (mon.0) 167 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T21:55:44.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:44 smithi044 bash[16231]: audit 2024-02-19T21:55:43.552443+0000 mon.smithi044 (mon.0) 168 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:55:44.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:44 smithi044 bash[16231]: cephadm 2024-02-19T21:55:43.553959+0000 mgr.smithi044.ikbsam (mgr.14184) 9 : cephadm [INF] Deploying daemon mon.smithi104 on smithi104 2024-02-19T21:55:44.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:44 smithi044 bash[16231]: audit 2024-02-19T21:55:43.597411+0000 mon.smithi044 (mon.0) 169 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:45.723 INFO:teuthology.orchestra.run.smithi104.stdout: 2024-02-19T21:55:45.723 INFO:teuthology.orchestra.run.smithi104.stdout:{"epoch":1,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","modified":"2024-02-19T21:53:16.350020Z","created":"2024-02-19T21:53:16.350020Z","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":"smithi044","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-19T21:55:45.725 INFO:teuthology.orchestra.run.smithi104.stderr:dumped monmap epoch 1 2024-02-19T21:55:46.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:45 smithi044 bash[16231]: audit 2024-02-19T21:55:45.721289+0000 mon.smithi044 (mon.0) 170 : audit [DBG] from='client.? 172.21.15.104:0/539711729' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T21:55:47.461 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-19T21:55:47.461 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph mon dump -f json 2024-02-19T21:55:48.052 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:47 smithi104 systemd[1]: Started Ceph mon.smithi104 for 3594d200-cf71-11ee-95bb-87774f69a715. 2024-02-19T21:55:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:48 smithi044 bash[16231]: audit 2024-02-19T21:55:47.791772+0000 mon.smithi044 (mon.0) 171 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:48 smithi044 bash[16231]: cephadm 2024-02-19T21:55:47.795863+0000 mgr.smithi044.ikbsam (mgr.14184) 10 : cephadm [INF] Deploying daemon node-exporter.smithi104 on smithi104 2024-02-19T21:55:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:48 smithi044 bash[16231]: audit 2024-02-19T21:55:48.364701+0000 mon.smithi044 (mon.0) 172 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:49.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:48 smithi044 bash[16231]: audit 2024-02-19T21:55:48.608461+0000 mon.smithi044 (mon.0) 173 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:49.802 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.679+0000 7f6a10faa880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-19T21:55:49.802 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.679+0000 7f6a10faa880 0 ceph version 16.2.14-548-g81bd20d6 (81bd20d634209c7cb82c18be12b4b5a05643ebf1) pacific (stable), process ceph-mon, pid 10 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.679+0000 7f6a10faa880 0 pidfile_write: ignore empty --pid-file 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 0 load: jerasure load: lrc load: isa 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: RocksDB version: 6.8.1 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Compile date Feb 17 2024 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: DB SUMMARY 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: CURRENT file: CURRENT 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi104/store.db dir, Total Num: 0, files: 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi104/store.db: 000003.log size: 511 ; 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.error_if_exists: 0 2024-02-19T21:55:49.803 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.create_if_missing: 0 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.paranoid_checks: 1 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.env: 0x55ead4bcd080 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.fs: Posix File System 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.info_log: 0x55ead62f8560 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.statistics: (nil) 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.use_fsync: 0 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_log_file_size: 0 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.allow_fallocate: 1 2024-02-19T21:55:49.804 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.use_direct_reads: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.db_log_dir: 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi104/store.db 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_subcompactions: 1 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_background_flushes: -1 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-19T21:55:49.805 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.write_buffer_manager: 0x55ead6f6a450 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.unordered_write: 0 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-19T21:55:49.806 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.row_cache: None 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.wal_filter: None 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.preserve_deletes: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.two_write_queues: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.atomic_flush: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.log_readahead_size: 0 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_background_jobs: 2 2024-02-19T21:55:49.807 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_background_compactions: -1 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_open_files: -1 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-19T21:55:49.808 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Compression algorithms supported: 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kZSTD supported: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kXpressCompression supported: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kLZ4Compression supported: 1 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kBZip2Compression supported: 0 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kZlibCompression supported: 1 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: kSnappyCompression supported: 1 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi104/store.db/MANIFEST-000001 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-19T21:55:49.809 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.merge_operator: 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_filter: None 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55ead629bd10) 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: cache_index_and_filter_blocks: 1 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: pin_top_level_index_and_filter: 1 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: index_type: 0 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: data_block_index_type: 0 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: index_shortening: 1 2024-02-19T21:55:49.810 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: data_block_hash_table_util_ratio: 0.750000 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: hash_index_allow_collision: 1 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: checksum: 1 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: no_block_cache: 0 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_cache: 0x55ead62d2f10 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_cache_name: BinnedLRUCache 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_cache_options: 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: capacity : 536870912 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: num_shard_bits : 4 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: strict_capacity_limit : 0 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: high_pri_pool_ratio: 0.000 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_cache_compressed: (nil) 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: persistent_cache: (nil) 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_size: 4096 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_size_deviation: 10 2024-02-19T21:55:49.811 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_restart_interval: 16 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: index_block_restart_interval: 1 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: metadata_block_size: 4096 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: partition_filters: 0 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: use_delta_encoding: 1 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: whole_key_filtering: 1 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: verify_compression: 0 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: read_amp_bytes_per_bit: 0 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: format_version: 2 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: enable_index_compression: 1 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: block_align: 0 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-19T21:55:49.812 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression: NoCompression 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.num_levels: 7 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-19T21:55:49.813 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-19T21:55:49.814 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-19T21:55:49.815 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-19T21:55:49.815 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-19T21:55:49.815 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-19T21:55:49.815 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-19T21:55:49.815 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-19T21:55:49.815 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-19T21:55:49.816 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.table_properties_collectors: 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.inplace_update_support: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.bloom_locality: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.max_successive_merges: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-19T21:55:49.817 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.ttl: 2592000 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.683+0000 7f6a10faa880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi104/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-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708379749691843, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 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-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708379749692494, "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": 1708379749, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708379749693199, "job": 1, "event": "recovery_finished"} 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f6a10faa880 4 rocksdb: DB pointer 0x55ead639b800 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f69f7d9c700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.687+0000 7f69f7d9c700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** DB Stats ** 2024-02-19T21:55:49.818 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** Compaction Stats [default] ** 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** Compaction Stats [default] ** 2024-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.819 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(Keys): cumulative 0, interval 0 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Cumulative compaction: 0.00 GB write, 0.33 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Interval compaction: 0.00 GB write, 0.33 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** File Read Latency Histogram By Level [default] ** 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** Compaction Stats [default] ** 2024-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.820 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** Compaction Stats [default] ** 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2 0.00 0.00 1 0.001 0 0 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(Total Files): cumulative 0, interval 0 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: AddFile(Keys): cumulative 0, interval 0 2024-02-19T21:55:49.821 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Cumulative compaction: 0.00 GB write, 0.33 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: ** File Read Latency Histogram By Level [default] ** 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.691+0000 7f6a10faa880 0 mon.smithi104 does not exist in monmap, will attempt to join an existing cluster 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.691+0000 7f6a10faa880 0 using public_addr v2:172.21.15.104:0/0 -> [v2:172.21.15.104:3300/0,v1:172.21.15.104:6789/0] 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.691+0000 7f6a10faa880 0 starting mon.smithi104 rank -1 at public addrs [v2:172.21.15.104:3300/0,v1:172.21.15.104:6789/0] at bind addrs [v2:172.21.15.104:3300/0,v1:172.21.15.104:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi104 fsid 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.691+0000 7f6a10faa880 1 mon.smithi104@-1(???) e0 preinit fsid 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.731+0000 7f69fa5a1700 0 mon.smithi104@-1(synchronizing).mds e1 new map 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.731+0000 7f69fa5a1700 0 mon.smithi104@-1(synchronizing).mds e1 print_map 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: e1 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 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-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: legacy client fscid: -1 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: No filesystems configured 2024-02-19T21:55:49.822 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.731+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 0 mon.smithi104@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 0 mon.smithi104@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: audit 2024-02-19T21:55:47.791772+0000 mon.smithi044 (mon.0) 171 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: cephadm 2024-02-19T21:55:47.795863+0000 mgr.smithi044.ikbsam (mgr.14184) 10 : cephadm [INF] Deploying daemon node-exporter.smithi104 on smithi104 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: audit 2024-02-19T21:55:48.364701+0000 mon.smithi044 (mon.0) 172 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: audit 2024-02-19T21:55:48.608461+0000 mon.smithi044 (mon.0) 173 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:55:49.823 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:49 smithi104 bash[21066]: debug 2024-02-19T21:55:49.735+0000 7f69fa5a1700 1 mon.smithi104@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-02-19T21:55:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:49.752967+0000 mon.smithi044 (mon.0) 175 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi044"}]: dispatch 2024-02-19T21:55:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:49.753418+0000 mon.smithi044 (mon.0) 176 : cluster [INF] mon.smithi044 calling monitor election 2024-02-19T21:55:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:49.778405+0000 mon.smithi044 (mon.0) 177 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:50.402878+0000 mgr.smithi044.ikbsam (mgr.14184) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:50.745758+0000 mon.smithi044 (mon.0) 178 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:51.745678+0000 mon.smithi044 (mon.0) 179 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:51.746976+0000 mon.smithi104 (mon.1) 1 : cluster [INF] mon.smithi104 calling monitor election 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:51.916458+0000 mon.smithi044 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi104.cxzjji/crt"}]: dispatch 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:52.403307+0000 mgr.smithi044.ikbsam (mgr.14184) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:52.745825+0000 mon.smithi044 (mon.0) 181 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:53.746189+0000 mon.smithi044 (mon.0) 182 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.403689+0000 mgr.smithi044.ikbsam (mgr.14184) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:54.746148+0000 mon.smithi044 (mon.0) 183 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.781339+0000 mon.smithi044 (mon.0) 184 : cluster [INF] mon.smithi044 is new leader, mons smithi044,smithi104 in quorum (ranks 0,1) 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.787018+0000 mon.smithi044 (mon.0) 185 : cluster [DBG] monmap e2: 2 mons at {smithi044=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],smithi104=[v2:172.21.15.104:3300/0,v1:172.21.15.104:6789/0]} removed_ranks: {} 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.788141+0000 mon.smithi044 (mon.0) 186 : cluster [DBG] fsmap 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.788233+0000 mon.smithi044 (mon.0) 187 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.788618+0000 mon.smithi044 (mon.0) 188 : cluster [DBG] mgrmap e17: smithi044.ikbsam(active, since 26s) 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.788923+0000 mon.smithi044 (mon.0) 189 : cluster [INF] overall HEALTH_OK 2024-02-19T21:55:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.789668+0000 mon.smithi044 (mon.0) 190 : cluster [DBG] Standby manager daemon smithi104.cxzjji started 2024-02-19T21:55:55.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:54.793793+0000 mon.smithi044 (mon.0) 191 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-19T21:55:55.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:54.795786+0000 mon.smithi044 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi104.cxzjji/key"}]: dispatch 2024-02-19T21:55:55.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:54 smithi104 bash[21066]: audit 2024-02-19T21:55:54.796626+0000 mon.smithi044 (mon.0) 193 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-19T21:55:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:49.752967+0000 mon.smithi044 (mon.0) 175 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi044"}]: dispatch 2024-02-19T21:55:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:49.753418+0000 mon.smithi044 (mon.0) 176 : cluster [INF] mon.smithi044 calling monitor election 2024-02-19T21:55:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:49.778405+0000 mon.smithi044 (mon.0) 177 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:50.402878+0000 mgr.smithi044.ikbsam (mgr.14184) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:50.745758+0000 mon.smithi044 (mon.0) 178 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:51.745678+0000 mon.smithi044 (mon.0) 179 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:51.746976+0000 mon.smithi104 (mon.1) 1 : cluster [INF] mon.smithi104 calling monitor election 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:51.916458+0000 mon.smithi044 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi104.cxzjji/crt"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:52.403307+0000 mgr.smithi044.ikbsam (mgr.14184) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:52.745825+0000 mon.smithi044 (mon.0) 181 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:53.746189+0000 mon.smithi044 (mon.0) 182 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.403689+0000 mgr.smithi044.ikbsam (mgr.14184) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:54.746148+0000 mon.smithi044 (mon.0) 183 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.781339+0000 mon.smithi044 (mon.0) 184 : cluster [INF] mon.smithi044 is new leader, mons smithi044,smithi104 in quorum (ranks 0,1) 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.787018+0000 mon.smithi044 (mon.0) 185 : cluster [DBG] monmap e2: 2 mons at {smithi044=[v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0],smithi104=[v2:172.21.15.104:3300/0,v1:172.21.15.104:6789/0]} removed_ranks: {} 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.788141+0000 mon.smithi044 (mon.0) 186 : cluster [DBG] fsmap 2024-02-19T21:55:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.788233+0000 mon.smithi044 (mon.0) 187 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-19T21:55:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.788618+0000 mon.smithi044 (mon.0) 188 : cluster [DBG] mgrmap e17: smithi044.ikbsam(active, since 26s) 2024-02-19T21:55:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.788923+0000 mon.smithi044 (mon.0) 189 : cluster [INF] overall HEALTH_OK 2024-02-19T21:55:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.789668+0000 mon.smithi044 (mon.0) 190 : cluster [DBG] Standby manager daemon smithi104.cxzjji started 2024-02-19T21:55:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:54.793793+0000 mon.smithi044 (mon.0) 191 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-19T21:55:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:54.795786+0000 mon.smithi044 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi104.cxzjji/key"}]: dispatch 2024-02-19T21:55:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:54 smithi044 bash[16231]: audit 2024-02-19T21:55:54.796626+0000 mon.smithi044 (mon.0) 193 : audit [DBG] from='mgr.? 172.21.15.104:0/3213285072' entity='mgr.smithi104.cxzjji' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-19T21:55:55.579 INFO:teuthology.orchestra.run.smithi104.stdout: 2024-02-19T21:55:55.579 INFO:teuthology.orchestra.run.smithi104.stdout:{"epoch":2,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","modified":"2024-02-19T21:55:49.747344Z","created":"2024-02-19T21:53:16.350020Z","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":"smithi044","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:3300","nonce":0},{"type":"v1","addr":"172.21.15.44:6789","nonce":0}]},"addr":"172.21.15.44:6789/0","public_addr":"172.21.15.44:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi104","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:3300","nonce":0},{"type":"v1","addr":"172.21.15.104:6789","nonce":0}]},"addr":"172.21.15.104:6789/0","public_addr":"172.21.15.104:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-02-19T21:55:55.582 INFO:teuthology.orchestra.run.smithi104.stderr:dumped monmap epoch 2 2024-02-19T21:55:56.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:55 smithi104 bash[21066]: cluster 2024-02-19T21:55:54.856786+0000 mon.smithi044 (mon.0) 194 : cluster [DBG] mgrmap e18: smithi044.ikbsam(active, since 26s), standbys: smithi104.cxzjji 2024-02-19T21:55:56.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:55 smithi104 bash[21066]: audit 2024-02-19T21:55:54.857556+0000 mon.smithi044 (mon.0) 195 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr metadata", "who": "smithi104.cxzjji", "id": "smithi104.cxzjji"}]: dispatch 2024-02-19T21:55:56.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:55 smithi104 bash[21066]: audit 2024-02-19T21:55:55.577239+0000 mon.smithi044 (mon.0) 196 : audit [DBG] from='client.? 172.21.15.104:0/544765238' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T21:55:56.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:55 smithi104 bash[21066]: audit 2024-02-19T21:55:55.746487+0000 mon.smithi044 (mon.0) 197 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:56.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:55 smithi044 bash[16231]: cluster 2024-02-19T21:55:54.856786+0000 mon.smithi044 (mon.0) 194 : cluster [DBG] mgrmap e18: smithi044.ikbsam(active, since 26s), standbys: smithi104.cxzjji 2024-02-19T21:55:56.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:55 smithi044 bash[16231]: audit 2024-02-19T21:55:54.857556+0000 mon.smithi044 (mon.0) 195 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr metadata", "who": "smithi104.cxzjji", "id": "smithi104.cxzjji"}]: dispatch 2024-02-19T21:55:56.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:55 smithi044 bash[16231]: audit 2024-02-19T21:55:55.577239+0000 mon.smithi044 (mon.0) 196 : audit [DBG] from='client.? 172.21.15.104:0/544765238' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-19T21:55:56.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:55 smithi044 bash[16231]: audit 2024-02-19T21:55:55.746487+0000 mon.smithi044 (mon.0) 197 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mon metadata", "id": "smithi104"}]: dispatch 2024-02-19T21:55:56.987 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-02-19T21:55:56.988 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph config generate-minimal-conf 2024-02-19T21:55:57.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:56 smithi104 bash[21066]: cluster 2024-02-19T21:55:56.404156+0000 mgr.smithi044.ikbsam (mgr.14184) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:57.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:56 smithi044 bash[16231]: cluster 2024-02-19T21:55:56.404156+0000 mgr.smithi044.ikbsam (mgr.14184) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:59.793 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:55:59 smithi044 bash[16231]: cluster 2024-02-19T21:55:58.404459+0000 mgr.smithi044.ikbsam (mgr.14184) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:55:59.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:55:59 smithi104 bash[21066]: cluster 2024-02-19T21:55:58.404459+0000 mgr.smithi044.ikbsam (mgr.14184) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:00.215 INFO:teuthology.orchestra.run.smithi044.stdout:# minimal ceph.conf for 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:56:00.216 INFO:teuthology.orchestra.run.smithi044.stdout:[global] 2024-02-19T21:56:00.216 INFO:teuthology.orchestra.run.smithi044.stdout: fsid = 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T21:56:00.216 INFO:teuthology.orchestra.run.smithi044.stdout: mon_host = [v2:172.21.15.44:3300/0,v1:172.21.15.44:6789/0] [v2:172.21.15.104:3300/0,v1:172.21.15.104:6789/0] 2024-02-19T21:56:00.833 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:00 smithi104 bash[21066]: audit 2024-02-19T21:56:00.214579+0000 mon.smithi044 (mon.0) 198 : audit [DBG] from='client.? 172.21.15.44:0/712904263' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:00.854 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-02-19T21:56:00.854 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:56:00.854 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/ceph/ceph.conf 2024-02-19T21:56:00.864 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:56:00.864 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-19T21:56:00.918 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:56:00.918 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/etc/ceph/ceph.conf 2024-02-19T21:56:00.933 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:56:00.934 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-19T21:56:00.991 INFO:tasks.cephadm:Deploying OSDs... 2024-02-19T21:56:00.991 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:56:00.991 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T21:56:00.998 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T21:56:00.998 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/nvme1n1 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/nvme1n1 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:54:45.721702852 +0000 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:52:41.344400012 +0000 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:52:41.344400012 +0000 2024-02-19T21:56:01.048 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:56:01.048 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-19T21:56:01.100 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:00 smithi044 bash[16231]: audit 2024-02-19T21:56:00.214579+0000 mon.smithi044 (mon.0) 198 : audit [DBG] from='client.? 172.21.15.44:0/712904263' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:01.102 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:56:01.103 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:56:01.103 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000469142 s, 1.1 MB/s 2024-02-19T21:56:01.104 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-19T21:56:01.153 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/nvme2n1 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/nvme2n1 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:54:45.737702471 +0000 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:52:41.460443401 +0000 2024-02-19T21:56:01.204 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:52:41.460443401 +0000 2024-02-19T21:56:01.205 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:56:01.205 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-19T21:56:01.258 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:56:01.259 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:56:01.259 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000363045 s, 1.4 MB/s 2024-02-19T21:56:01.260 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-19T21:56:01.313 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/nvme3n1 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/nvme3n1 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:54:45.749702186 +0000 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:52:41.580488285 +0000 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:52:41.580488285 +0000 2024-02-19T21:56:01.364 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:56:01.365 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-19T21:56:01.421 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:56:01.421 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:56:01.421 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000481734 s, 1.1 MB/s 2024-02-19T21:56:01.421 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-19T21:56:01.474 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/nvme4n1 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/nvme4n1 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-02-19 21:54:45.765701805 +0000 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-02-19 21:52:41.696531674 +0000 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-02-19 21:52:41.696531674 +0000 2024-02-19T21:56:01.524 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: - 2024-02-19T21:56:01.524 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-19T21:56:01.577 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-02-19T21:56:01.577 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-02-19T21:56:01.577 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000435516 s, 1.2 MB/s 2024-02-19T21:56:01.578 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-19T21:56:01.628 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:56:01.628 DEBUG:teuthology.orchestra.run.smithi104:> dd if=/scratch_devs of=/dev/stdout 2024-02-19T21:56:01.635 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-19T21:56:01.635 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/nvme1n1 2024-02-19T21:56:01.681 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/nvme1n1 2024-02-19T21:56:01.681 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.681 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 472 Links: 1 Device type: 103,2 2024-02-19T21:56:01.682 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.682 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:55:35.711444277 +0000 2024-02-19T21:56:01.682 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:52:42.643562607 +0000 2024-02-19T21:56:01.682 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:52:42.643562607 +0000 2024-02-19T21:56:01.682 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:56:01.682 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-19T21:56:01.733 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:56:01.733 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:56:01.733 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000306507 s, 1.7 MB/s 2024-02-19T21:56:01.734 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-19T21:56:01.783 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/nvme2n1 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/nvme2n1 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:55:35.727443896 +0000 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:52:42.759559869 +0000 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:52:42.759559869 +0000 2024-02-19T21:56:01.828 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:56:01.829 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-19T21:56:01.885 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:56:01.885 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:56:01.885 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000312977 s, 1.6 MB/s 2024-02-19T21:56:01.886 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-19T21:56:01.936 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/nvme3n1 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/nvme3n1 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 484 Links: 1 Device type: 103,6 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:55:35.739443611 +0000 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:52:42.875557132 +0000 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:52:42.875557132 +0000 2024-02-19T21:56:01.987 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:56:01.987 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-19T21:56:02.039 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:01 smithi104 bash[21066]: cluster 2024-02-19T21:56:00.404912+0000 mgr.smithi044.ikbsam (mgr.14184) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:02.039 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:01 smithi104 bash[21066]: audit 2024-02-19T21:56:01.689446+0000 mon.smithi044 (mon.0) 199 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:02.040 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:01 smithi104 bash[21066]: audit 2024-02-19T21:56:01.692099+0000 mon.smithi044 (mon.0) 200 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:56:02.041 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:56:02.042 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:56:02.042 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.000459049 s, 1.1 MB/s 2024-02-19T21:56:02.043 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-19T21:56:02.092 DEBUG:teuthology.orchestra.run.smithi104:> stat /dev/nvme4n1 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout: File: /dev/nvme4n1 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout:Access: 2024-02-19 21:55:35.755443230 +0000 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout:Modify: 2024-02-19 21:52:42.991554395 +0000 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout:Change: 2024-02-19 21:52:42.991554395 +0000 2024-02-19T21:56:02.144 INFO:teuthology.orchestra.run.smithi104.stdout: Birth: - 2024-02-19T21:56:02.144 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-19T21:56:02.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:01 smithi044 bash[16231]: cluster 2024-02-19T21:56:00.404912+0000 mgr.smithi044.ikbsam (mgr.14184) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:02.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:01 smithi044 bash[16231]: audit 2024-02-19T21:56:01.689446+0000 mon.smithi044 (mon.0) 199 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:02.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:01 smithi044 bash[16231]: audit 2024-02-19T21:56:01.692099+0000 mon.smithi044 (mon.0) 200 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:56:02.202 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records in 2024-02-19T21:56:02.202 INFO:teuthology.orchestra.run.smithi104.stderr:1+0 records out 2024-02-19T21:56:02.202 INFO:teuthology.orchestra.run.smithi104.stderr:512 bytes copied, 0.00042142 s, 1.2 MB/s 2024-02-19T21:56:02.203 DEBUG:teuthology.orchestra.run.smithi104:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-19T21:56:02.252 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-02-19T21:56:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:03 smithi104 bash[21066]: cluster 2024-02-19T21:56:02.405362+0000 mgr.smithi044.ikbsam (mgr.14184) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:03 smithi104 bash[21066]: audit 2024-02-19T21:56:03.619544+0000 mon.smithi044 (mon.0) 201 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:04.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:03 smithi044 bash[16231]: cluster 2024-02-19T21:56:02.405362+0000 mgr.smithi044.ikbsam (mgr.14184) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:04.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:03 smithi044 bash[16231]: audit 2024-02-19T21:56:03.619544+0000 mon.smithi044 (mon.0) 201 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:05.333 INFO:teuthology.orchestra.run.smithi104.stdout:Scheduled osd.all-available-devices update... 2024-02-19T21:56:05.923 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-02-19T21:56:05.923 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:06.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:05 smithi104 bash[21066]: cluster 2024-02-19T21:56:04.405758+0000 mgr.smithi044.ikbsam (mgr.14184) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:06.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:05 smithi104 bash[21066]: audit 2024-02-19T21:56:05.332192+0000 mon.smithi044 (mon.0) 202 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:06.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:05 smithi044 bash[16231]: cluster 2024-02-19T21:56:04.405758+0000 mgr.smithi044.ikbsam (mgr.14184) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:06.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:05 smithi044 bash[16231]: audit 2024-02-19T21:56:05.332192+0000 mon.smithi044 (mon.0) 202 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:07.032 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:06 smithi044 bash[16231]: audit 2024-02-19T21:56:05.320269+0000 mgr.smithi044.ikbsam (mgr.14184) 21 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:56:07.032 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:06 smithi044 bash[16231]: cephadm 2024-02-19T21:56:05.324732+0000 mgr.smithi044.ikbsam (mgr.14184) 22 : cephadm [INF] Marking host: smithi044 for OSDSpec preview refresh. 2024-02-19T21:56:07.032 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:06 smithi044 bash[16231]: cephadm 2024-02-19T21:56:05.324959+0000 mgr.smithi044.ikbsam (mgr.14184) 23 : cephadm [INF] Marking host: smithi104 for OSDSpec preview refresh. 2024-02-19T21:56:07.032 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:06 smithi044 bash[16231]: cephadm 2024-02-19T21:56:05.325528+0000 mgr.smithi044.ikbsam (mgr.14184) 24 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-19T21:56:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:06 smithi104 bash[21066]: audit 2024-02-19T21:56:05.320269+0000 mgr.smithi044.ikbsam (mgr.14184) 21 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T21:56:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:06 smithi104 bash[21066]: cephadm 2024-02-19T21:56:05.324732+0000 mgr.smithi044.ikbsam (mgr.14184) 22 : cephadm [INF] Marking host: smithi044 for OSDSpec preview refresh. 2024-02-19T21:56:07.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:06 smithi104 bash[21066]: cephadm 2024-02-19T21:56:05.324959+0000 mgr.smithi044.ikbsam (mgr.14184) 23 : cephadm [INF] Marking host: smithi104 for OSDSpec preview refresh. 2024-02-19T21:56:07.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:06 smithi104 bash[21066]: cephadm 2024-02-19T21:56:05.325528+0000 mgr.smithi044.ikbsam (mgr.14184) 24 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-19T21:56:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:07 smithi104 bash[21066]: cluster 2024-02-19T21:56:06.406212+0000 mgr.smithi044.ikbsam (mgr.14184) 25 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:07 smithi044 bash[16231]: cluster 2024-02-19T21:56:06.406212+0000 mgr.smithi044.ikbsam (mgr.14184) 25 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:09.111 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:09.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.308131+0000 mon.smithi044 (mon.0) 203 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.319565+0000 mon.smithi044 (mon.0) 204 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.321147+0000 mon.smithi044 (mon.0) 205 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.322668+0000 mon.smithi044 (mon.0) 206 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: cephadm 2024-02-19T21:56:08.324737+0000 mgr.smithi044.ikbsam (mgr.14184) 26 : cephadm [INF] Updating smithi044:/etc/ceph/ceph.conf 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: cephadm 2024-02-19T21:56:08.325194+0000 mgr.smithi044.ikbsam (mgr.14184) 27 : cephadm [INF] Updating smithi104:/etc/ceph/ceph.conf 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.355147+0000 mon.smithi044 (mon.0) 207 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.398341+0000 mon.smithi044 (mon.0) 208 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: cluster 2024-02-19T21:56:08.406654+0000 mgr.smithi044.ikbsam (mgr.14184) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:09.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.406796+0000 mon.smithi044 (mon.0) 209 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.417444+0000 mon.smithi044 (mon.0) 210 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:56:09.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.425531+0000 mon.smithi044 (mon.0) 211 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:56:09.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.427220+0000 mon.smithi044 (mon.0) 212 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:56:09.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.427981+0000 mon.smithi044 (mon.0) 213 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:09.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:08.428595+0000 mon.smithi044 (mon.0) 214 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:09.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:09 smithi104 bash[21066]: audit 2024-02-19T21:56:09.110997+0000 mon.smithi044 (mon.0) 215 : audit [DBG] from='client.? 172.21.15.44:0/278737760' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:09.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.308131+0000 mon.smithi044 (mon.0) 203 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.319565+0000 mon.smithi044 (mon.0) 204 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.321147+0000 mon.smithi044 (mon.0) 205 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:09.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.322668+0000 mon.smithi044 (mon.0) 206 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:56:09.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: cephadm 2024-02-19T21:56:08.324737+0000 mgr.smithi044.ikbsam (mgr.14184) 26 : cephadm [INF] Updating smithi044:/etc/ceph/ceph.conf 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: cephadm 2024-02-19T21:56:08.325194+0000 mgr.smithi044.ikbsam (mgr.14184) 27 : cephadm [INF] Updating smithi104:/etc/ceph/ceph.conf 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.355147+0000 mon.smithi044 (mon.0) 207 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.398341+0000 mon.smithi044 (mon.0) 208 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: cluster 2024-02-19T21:56:08.406654+0000 mgr.smithi044.ikbsam (mgr.14184) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.406796+0000 mon.smithi044 (mon.0) 209 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.417444+0000 mon.smithi044 (mon.0) 210 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.425531+0000 mon.smithi044 (mon.0) 211 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.427220+0000 mon.smithi044 (mon.0) 212 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.427981+0000 mon.smithi044 (mon.0) 213 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:08.428595+0000 mon.smithi044 (mon.0) 214 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:09.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:09 smithi044 bash[16231]: audit 2024-02-19T21:56:09.110997+0000 mon.smithi044 (mon.0) 215 : audit [DBG] from='client.? 172.21.15.44:0/278737760' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:09.818 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:56:10.819 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:11.856 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:11 smithi044 bash[16231]: cluster 2024-02-19T21:56:10.407083+0000 mgr.smithi044.ikbsam (mgr.14184) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:11.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:11 smithi104 bash[21066]: cluster 2024-02-19T21:56:10.407083+0000 mgr.smithi044.ikbsam (mgr.14184) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:13.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:13 smithi104 bash[21066]: cluster 2024-02-19T21:56:12.407567+0000 mgr.smithi044.ikbsam (mgr.14184) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:13.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:13 smithi044 bash[16231]: cluster 2024-02-19T21:56:12.407567+0000 mgr.smithi044.ikbsam (mgr.14184) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:13.980 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:14.745 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:14 smithi044 bash[16231]: audit 2024-02-19T21:56:13.980182+0000 mon.smithi044 (mon.0) 216 : audit [DBG] from='client.? 172.21.15.44:0/3101455872' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:14.752 INFO:teuthology.orchestra.run.smithi044.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-02-19T21:56:14.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:14 smithi104 bash[21066]: audit 2024-02-19T21:56:13.980182+0000 mon.smithi044 (mon.0) 216 : audit [DBG] from='client.? 172.21.15.44:0/3101455872' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:15.753 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:15.766 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:15 smithi044 bash[16231]: cluster 2024-02-19T21:56:14.408009+0000 mgr.smithi044.ikbsam (mgr.14184) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:15.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:15 smithi104 bash[21066]: cluster 2024-02-19T21:56:14.408009+0000 mgr.smithi044.ikbsam (mgr.14184) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:17 smithi044 bash[16231]: cluster 2024-02-19T21:56:16.408521+0000 mgr.smithi044.ikbsam (mgr.14184) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:17 smithi044 bash[16231]: audit 2024-02-19T21:56:16.683792+0000 mon.smithi104 (mon.1) 2 : audit [INF] from='client.? 172.21.15.104:0/3944510668' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25416c71-bfa5-40bb-9343-8e1911d0b263"}]: dispatch 2024-02-19T21:56:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:17 smithi044 bash[16231]: audit 2024-02-19T21:56:16.685883+0000 mon.smithi044 (mon.0) 217 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25416c71-bfa5-40bb-9343-8e1911d0b263"}]: dispatch 2024-02-19T21:56:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:17 smithi044 bash[16231]: audit 2024-02-19T21:56:16.691348+0000 mon.smithi044 (mon.0) 218 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "25416c71-bfa5-40bb-9343-8e1911d0b263"}]': finished 2024-02-19T21:56:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:17 smithi044 bash[16231]: cluster 2024-02-19T21:56:16.691462+0000 mon.smithi044 (mon.0) 219 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-19T21:56:17.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:17 smithi044 bash[16231]: audit 2024-02-19T21:56:16.691616+0000 mon.smithi044 (mon.0) 220 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:17.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:17 smithi104 bash[21066]: cluster 2024-02-19T21:56:16.408521+0000 mgr.smithi044.ikbsam (mgr.14184) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:17.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:17 smithi104 bash[21066]: audit 2024-02-19T21:56:16.683792+0000 mon.smithi104 (mon.1) 2 : audit [INF] from='client.? 172.21.15.104:0/3944510668' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25416c71-bfa5-40bb-9343-8e1911d0b263"}]: dispatch 2024-02-19T21:56:17.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:17 smithi104 bash[21066]: audit 2024-02-19T21:56:16.685883+0000 mon.smithi044 (mon.0) 217 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25416c71-bfa5-40bb-9343-8e1911d0b263"}]: dispatch 2024-02-19T21:56:17.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:17 smithi104 bash[21066]: audit 2024-02-19T21:56:16.691348+0000 mon.smithi044 (mon.0) 218 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "25416c71-bfa5-40bb-9343-8e1911d0b263"}]': finished 2024-02-19T21:56:17.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:17 smithi104 bash[21066]: cluster 2024-02-19T21:56:16.691462+0000 mon.smithi044 (mon.0) 219 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-19T21:56:17.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:17 smithi104 bash[21066]: audit 2024-02-19T21:56:16.691616+0000 mon.smithi044 (mon.0) 220 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:18.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:18 smithi104 bash[21066]: audit 2024-02-19T21:56:17.684361+0000 mon.smithi104 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.104:0/3838482537' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:18.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:18 smithi104 bash[21066]: audit 2024-02-19T21:56:18.348995+0000 mon.smithi044 (mon.0) 221 : audit [INF] from='client.? 172.21.15.44:0/1976778489' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8"}]: dispatch 2024-02-19T21:56:18.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:18 smithi104 bash[21066]: audit 2024-02-19T21:56:18.355467+0000 mon.smithi044 (mon.0) 222 : audit [INF] from='client.? 172.21.15.44:0/1976778489' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8"}]': finished 2024-02-19T21:56:18.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:18 smithi104 bash[21066]: cluster 2024-02-19T21:56:18.355580+0000 mon.smithi044 (mon.0) 223 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-19T21:56:18.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:18 smithi104 bash[21066]: audit 2024-02-19T21:56:18.355780+0000 mon.smithi044 (mon.0) 224 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:18.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:18 smithi104 bash[21066]: audit 2024-02-19T21:56:18.356343+0000 mon.smithi044 (mon.0) 225 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:18.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:18 smithi044 bash[16231]: audit 2024-02-19T21:56:17.684361+0000 mon.smithi104 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.104:0/3838482537' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:18.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:18 smithi044 bash[16231]: audit 2024-02-19T21:56:18.348995+0000 mon.smithi044 (mon.0) 221 : audit [INF] from='client.? 172.21.15.44:0/1976778489' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8"}]: dispatch 2024-02-19T21:56:18.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:18 smithi044 bash[16231]: audit 2024-02-19T21:56:18.355467+0000 mon.smithi044 (mon.0) 222 : audit [INF] from='client.? 172.21.15.44:0/1976778489' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8"}]': finished 2024-02-19T21:56:18.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:18 smithi044 bash[16231]: cluster 2024-02-19T21:56:18.355580+0000 mon.smithi044 (mon.0) 223 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-19T21:56:18.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:18 smithi044 bash[16231]: audit 2024-02-19T21:56:18.355780+0000 mon.smithi044 (mon.0) 224 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:18.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:18 smithi044 bash[16231]: audit 2024-02-19T21:56:18.356343+0000 mon.smithi044 (mon.0) 225 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:19.416 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:19.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:19 smithi104 bash[21066]: cluster 2024-02-19T21:56:18.408866+0000 mgr.smithi044.ikbsam (mgr.14184) 33 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:19.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:19 smithi104 bash[21066]: audit 2024-02-19T21:56:19.416298+0000 mon.smithi044 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.44:0/1480109051' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:19.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:19 smithi044 bash[16231]: cluster 2024-02-19T21:56:18.408866+0000 mgr.smithi044.ikbsam (mgr.14184) 33 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:19.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:19 smithi044 bash[16231]: audit 2024-02-19T21:56:19.416298+0000 mon.smithi044 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.44:0/1480109051' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:20.095 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1708379778,"num_remapped_pgs":0} 2024-02-19T21:56:20.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:19.644577+0000 mon.smithi044 (mon.0) 227 : audit [DBG] from='client.? 172.21.15.44:0/2520442290' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:20.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:20.408510+0000 mon.smithi104 (mon.1) 4 : audit [INF] from='client.? 172.21.15.104:0/885476421' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b037789a-d0b9-40ce-9201-9d872393499a"}]: dispatch 2024-02-19T21:56:20.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:20.410676+0000 mon.smithi044 (mon.0) 228 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b037789a-d0b9-40ce-9201-9d872393499a"}]: dispatch 2024-02-19T21:56:20.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:20.417555+0000 mon.smithi044 (mon.0) 229 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b037789a-d0b9-40ce-9201-9d872393499a"}]': finished 2024-02-19T21:56:20.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: cluster 2024-02-19T21:56:20.417661+0000 mon.smithi044 (mon.0) 230 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-19T21:56:20.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:20.417906+0000 mon.smithi044 (mon.0) 231 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:20.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:20.418662+0000 mon.smithi044 (mon.0) 232 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:20.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:20 smithi104 bash[21066]: audit 2024-02-19T21:56:20.419159+0000 mon.smithi044 (mon.0) 233 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:20.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:19.644577+0000 mon.smithi044 (mon.0) 227 : audit [DBG] from='client.? 172.21.15.44:0/2520442290' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:20.408510+0000 mon.smithi104 (mon.1) 4 : audit [INF] from='client.? 172.21.15.104:0/885476421' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b037789a-d0b9-40ce-9201-9d872393499a"}]: dispatch 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:20.410676+0000 mon.smithi044 (mon.0) 228 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b037789a-d0b9-40ce-9201-9d872393499a"}]: dispatch 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:20.417555+0000 mon.smithi044 (mon.0) 229 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b037789a-d0b9-40ce-9201-9d872393499a"}]': finished 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: cluster 2024-02-19T21:56:20.417661+0000 mon.smithi044 (mon.0) 230 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:20.417906+0000 mon.smithi044 (mon.0) 231 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:20.418662+0000 mon.smithi044 (mon.0) 232 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:20.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:20 smithi044 bash[16231]: audit 2024-02-19T21:56:20.419159+0000 mon.smithi044 (mon.0) 233 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:21.096 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:21.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:21 smithi104 bash[21066]: cluster 2024-02-19T21:56:20.409309+0000 mgr.smithi044.ikbsam (mgr.14184) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:21.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:21 smithi104 bash[21066]: audit 2024-02-19T21:56:21.443687+0000 mon.smithi104 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.104:0/1279200254' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:21 smithi044 bash[16231]: cluster 2024-02-19T21:56:20.409309+0000 mgr.smithi044.ikbsam (mgr.14184) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:21 smithi044 bash[16231]: audit 2024-02-19T21:56:21.443687+0000 mon.smithi104 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.104:0/1279200254' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:22.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: audit 2024-02-19T21:56:22.458663+0000 mon.smithi044 (mon.0) 234 : audit [INF] from='client.? 172.21.15.44:0/2349904601' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2785c239-1220-4b0a-93ac-f99d1f09aa48"}]: dispatch 2024-02-19T21:56:22.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: audit 2024-02-19T21:56:22.464251+0000 mon.smithi044 (mon.0) 235 : audit [INF] from='client.? 172.21.15.44:0/2349904601' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2785c239-1220-4b0a-93ac-f99d1f09aa48"}]': finished 2024-02-19T21:56:22.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: cluster 2024-02-19T21:56:22.464295+0000 mon.smithi044 (mon.0) 236 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-19T21:56:22.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: audit 2024-02-19T21:56:22.464381+0000 mon.smithi044 (mon.0) 237 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:22.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: audit 2024-02-19T21:56:22.464669+0000 mon.smithi044 (mon.0) 238 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:22.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: audit 2024-02-19T21:56:22.464896+0000 mon.smithi044 (mon.0) 239 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:22.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:22 smithi044 bash[16231]: audit 2024-02-19T21:56:22.465144+0000 mon.smithi044 (mon.0) 240 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: audit 2024-02-19T21:56:22.458663+0000 mon.smithi044 (mon.0) 234 : audit [INF] from='client.? 172.21.15.44:0/2349904601' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2785c239-1220-4b0a-93ac-f99d1f09aa48"}]: dispatch 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: audit 2024-02-19T21:56:22.464251+0000 mon.smithi044 (mon.0) 235 : audit [INF] from='client.? 172.21.15.44:0/2349904601' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2785c239-1220-4b0a-93ac-f99d1f09aa48"}]': finished 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: cluster 2024-02-19T21:56:22.464295+0000 mon.smithi044 (mon.0) 236 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: audit 2024-02-19T21:56:22.464381+0000 mon.smithi044 (mon.0) 237 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: audit 2024-02-19T21:56:22.464669+0000 mon.smithi044 (mon.0) 238 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: audit 2024-02-19T21:56:22.464896+0000 mon.smithi044 (mon.0) 239 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:22.779 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:22 smithi104 bash[21066]: audit 2024-02-19T21:56:22.465144+0000 mon.smithi044 (mon.0) 240 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:23.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:23 smithi104 bash[21066]: cluster 2024-02-19T21:56:22.409630+0000 mgr.smithi044.ikbsam (mgr.14184) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:23.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:23 smithi044 bash[16231]: cluster 2024-02-19T21:56:22.409630+0000 mgr.smithi044.ikbsam (mgr.14184) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:24.865 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.163546+0000 mon.smithi104 (mon.1) 6 : audit [INF] from='client.? 172.21.15.104:0/2274915428' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e45e0c79-2ead-48e4-a276-10264694775d"}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.165840+0000 mon.smithi044 (mon.0) 241 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e45e0c79-2ead-48e4-a276-10264694775d"}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.176579+0000 mon.smithi044 (mon.0) 242 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e45e0c79-2ead-48e4-a276-10264694775d"}]': finished 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: cluster 2024-02-19T21:56:24.176708+0000 mon.smithi044 (mon.0) 243 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.176921+0000 mon.smithi044 (mon.0) 244 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.177590+0000 mon.smithi044 (mon.0) 245 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.178003+0000 mon.smithi044 (mon.0) 246 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.178382+0000 mon.smithi044 (mon.0) 247 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.178756+0000 mon.smithi044 (mon.0) 248 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:24.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:24 smithi104 bash[21066]: audit 2024-02-19T21:56:24.234200+0000 mon.smithi044 (mon.0) 249 : audit [DBG] from='client.? 172.21.15.44:0/1862756844' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:24.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.163546+0000 mon.smithi104 (mon.1) 6 : audit [INF] from='client.? 172.21.15.104:0/2274915428' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e45e0c79-2ead-48e4-a276-10264694775d"}]: dispatch 2024-02-19T21:56:24.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.165840+0000 mon.smithi044 (mon.0) 241 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e45e0c79-2ead-48e4-a276-10264694775d"}]: dispatch 2024-02-19T21:56:24.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.176579+0000 mon.smithi044 (mon.0) 242 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e45e0c79-2ead-48e4-a276-10264694775d"}]': finished 2024-02-19T21:56:24.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: cluster 2024-02-19T21:56:24.176708+0000 mon.smithi044 (mon.0) 243 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-19T21:56:24.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.176921+0000 mon.smithi044 (mon.0) 244 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:24.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.177590+0000 mon.smithi044 (mon.0) 245 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:24.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.178003+0000 mon.smithi044 (mon.0) 246 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:24.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.178382+0000 mon.smithi044 (mon.0) 247 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:24.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.178756+0000 mon.smithi044 (mon.0) 248 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:24.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:24 smithi044 bash[16231]: audit 2024-02-19T21:56:24.234200+0000 mon.smithi044 (mon.0) 249 : audit [DBG] from='client.? 172.21.15.44:0/1862756844' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:25.544 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1708379784,"num_remapped_pgs":0} 2024-02-19T21:56:25.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:25 smithi104 bash[21066]: cluster 2024-02-19T21:56:24.409969+0000 mgr.smithi044.ikbsam (mgr.14184) 36 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:25.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:25 smithi104 bash[21066]: audit 2024-02-19T21:56:24.865443+0000 mon.smithi044 (mon.0) 250 : audit [DBG] from='client.? 172.21.15.44:0/1612782609' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:25.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:25 smithi104 bash[21066]: audit 2024-02-19T21:56:25.254352+0000 mon.smithi104 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.104:0/4061044874' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:25.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:25 smithi044 bash[16231]: cluster 2024-02-19T21:56:24.409969+0000 mgr.smithi044.ikbsam (mgr.14184) 36 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:25.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:25 smithi044 bash[16231]: audit 2024-02-19T21:56:24.865443+0000 mon.smithi044 (mon.0) 250 : audit [DBG] from='client.? 172.21.15.44:0/1612782609' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:25.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:25 smithi044 bash[16231]: audit 2024-02-19T21:56:25.254352+0000 mon.smithi104 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.104:0/4061044874' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:26.545 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:27.816 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: cluster 2024-02-19T21:56:26.410444+0000 mgr.smithi044.ikbsam (mgr.14184) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:27.816 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.970651+0000 mon.smithi044 (mon.0) 251 : audit [INF] from='client.? 172.21.15.44:0/3401959893' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8d56aa6f-1490-45bf-b89e-df7ab72e09a4"}]: dispatch 2024-02-19T21:56:27.816 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.978293+0000 mon.smithi044 (mon.0) 252 : audit [INF] from='client.? 172.21.15.44:0/3401959893' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8d56aa6f-1490-45bf-b89e-df7ab72e09a4"}]': finished 2024-02-19T21:56:27.816 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: cluster 2024-02-19T21:56:26.978400+0000 mon.smithi044 (mon.0) 253 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-19T21:56:27.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.978599+0000 mon.smithi044 (mon.0) 254 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:27.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.979257+0000 mon.smithi044 (mon.0) 255 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:27.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.979628+0000 mon.smithi044 (mon.0) 256 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:27.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.979998+0000 mon.smithi044 (mon.0) 257 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:27.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.980419+0000 mon.smithi044 (mon.0) 258 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:27.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:27 smithi044 bash[16231]: audit 2024-02-19T21:56:26.981101+0000 mon.smithi044 (mon.0) 259 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: cluster 2024-02-19T21:56:26.410444+0000 mgr.smithi044.ikbsam (mgr.14184) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.970651+0000 mon.smithi044 (mon.0) 251 : audit [INF] from='client.? 172.21.15.44:0/3401959893' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8d56aa6f-1490-45bf-b89e-df7ab72e09a4"}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.978293+0000 mon.smithi044 (mon.0) 252 : audit [INF] from='client.? 172.21.15.44:0/3401959893' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8d56aa6f-1490-45bf-b89e-df7ab72e09a4"}]': finished 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: cluster 2024-02-19T21:56:26.978400+0000 mon.smithi044 (mon.0) 253 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.978599+0000 mon.smithi044 (mon.0) 254 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.979257+0000 mon.smithi044 (mon.0) 255 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.979628+0000 mon.smithi044 (mon.0) 256 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.979998+0000 mon.smithi044 (mon.0) 257 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.980419+0000 mon.smithi044 (mon.0) 258 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:27.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:27 smithi104 bash[21066]: audit 2024-02-19T21:56:26.981101+0000 mon.smithi044 (mon.0) 259 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.986956+0000 mon.smithi104 (mon.1) 8 : audit [INF] from='client.? 172.21.15.104:0/1864699015' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acc899b2-b093-44ae-955a-6b0c0763b975"}]: dispatch 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.989143+0000 mon.smithi044 (mon.0) 260 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acc899b2-b093-44ae-955a-6b0c0763b975"}]: dispatch 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.996780+0000 mon.smithi044 (mon.0) 261 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acc899b2-b093-44ae-955a-6b0c0763b975"}]': finished 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: cluster 2024-02-19T21:56:27.996971+0000 mon.smithi044 (mon.0) 262 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.997200+0000 mon.smithi044 (mon.0) 263 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.997678+0000 mon.smithi044 (mon.0) 264 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:28.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.998000+0000 mon.smithi044 (mon.0) 265 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:28.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.998320+0000 mon.smithi044 (mon.0) 266 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:28.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.998629+0000 mon.smithi044 (mon.0) 267 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:28.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.998932+0000 mon.smithi044 (mon.0) 268 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:28.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:27.999246+0000 mon.smithi044 (mon.0) 269 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:28.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:28 smithi104 bash[21066]: audit 2024-02-19T21:56:28.407424+0000 mon.smithi044 (mon.0) 270 : audit [DBG] from='client.? 172.21.15.44:0/927704030' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:28.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.986956+0000 mon.smithi104 (mon.1) 8 : audit [INF] from='client.? 172.21.15.104:0/1864699015' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acc899b2-b093-44ae-955a-6b0c0763b975"}]: dispatch 2024-02-19T21:56:28.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.989143+0000 mon.smithi044 (mon.0) 260 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acc899b2-b093-44ae-955a-6b0c0763b975"}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.996780+0000 mon.smithi044 (mon.0) 261 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acc899b2-b093-44ae-955a-6b0c0763b975"}]': finished 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: cluster 2024-02-19T21:56:27.996971+0000 mon.smithi044 (mon.0) 262 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.997200+0000 mon.smithi044 (mon.0) 263 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.997678+0000 mon.smithi044 (mon.0) 264 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.998000+0000 mon.smithi044 (mon.0) 265 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.998320+0000 mon.smithi044 (mon.0) 266 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.998629+0000 mon.smithi044 (mon.0) 267 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.998932+0000 mon.smithi044 (mon.0) 268 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:27.999246+0000 mon.smithi044 (mon.0) 269 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:28 smithi044 bash[16231]: audit 2024-02-19T21:56:28.407424+0000 mon.smithi044 (mon.0) 270 : audit [DBG] from='client.? 172.21.15.44:0/927704030' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:29.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:29 smithi104 bash[21066]: cluster 2024-02-19T21:56:28.410867+0000 mgr.smithi044.ikbsam (mgr.14184) 38 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:29.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:29 smithi104 bash[21066]: audit 2024-02-19T21:56:29.096450+0000 mon.smithi104 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.104:0/8990691' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:29.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:29 smithi044 bash[16231]: cluster 2024-02-19T21:56:28.410867+0000 mgr.smithi044.ikbsam (mgr.14184) 38 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:29.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:29 smithi044 bash[16231]: audit 2024-02-19T21:56:29.096450+0000 mon.smithi104 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.104:0/8990691' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:30.055 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:30.697 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1708379787,"num_remapped_pgs":0} 2024-02-19T21:56:30.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:30 smithi104 bash[21066]: audit 2024-02-19T21:56:30.055229+0000 mon.smithi044 (mon.0) 271 : audit [DBG] from='client.? 172.21.15.44:0/2659979444' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:30.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:30 smithi044 bash[16231]: audit 2024-02-19T21:56:30.055229+0000 mon.smithi044 (mon.0) 271 : audit [DBG] from='client.? 172.21.15.44:0/2659979444' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:31.698 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: cluster 2024-02-19T21:56:30.411370+0000 mgr.smithi044.ikbsam (mgr.14184) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.256208+0000 mon.smithi044 (mon.0) 272 : audit [INF] from='client.? 172.21.15.44:0/248485525' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "79bd1346-4a8c-48a0-97f9-403bd3717a3e"}]: dispatch 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.264497+0000 mon.smithi044 (mon.0) 273 : audit [INF] from='client.? 172.21.15.44:0/248485525' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "79bd1346-4a8c-48a0-97f9-403bd3717a3e"}]': finished 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: cluster 2024-02-19T21:56:31.264611+0000 mon.smithi044 (mon.0) 274 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.264875+0000 mon.smithi044 (mon.0) 275 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.265743+0000 mon.smithi044 (mon.0) 276 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.266199+0000 mon.smithi044 (mon.0) 277 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.266651+0000 mon.smithi044 (mon.0) 278 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:31.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.267126+0000 mon.smithi044 (mon.0) 279 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:31.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.267686+0000 mon.smithi044 (mon.0) 280 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:31.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.268139+0000 mon.smithi044 (mon.0) 281 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:31.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:31 smithi104 bash[21066]: audit 2024-02-19T21:56:31.268626+0000 mon.smithi044 (mon.0) 282 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: cluster 2024-02-19T21:56:30.411370+0000 mgr.smithi044.ikbsam (mgr.14184) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.256208+0000 mon.smithi044 (mon.0) 272 : audit [INF] from='client.? 172.21.15.44:0/248485525' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "79bd1346-4a8c-48a0-97f9-403bd3717a3e"}]: dispatch 2024-02-19T21:56:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.264497+0000 mon.smithi044 (mon.0) 273 : audit [INF] from='client.? 172.21.15.44:0/248485525' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "79bd1346-4a8c-48a0-97f9-403bd3717a3e"}]': finished 2024-02-19T21:56:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: cluster 2024-02-19T21:56:31.264611+0000 mon.smithi044 (mon.0) 274 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-19T21:56:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.264875+0000 mon.smithi044 (mon.0) 275 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.265743+0000 mon.smithi044 (mon.0) 276 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.266199+0000 mon.smithi044 (mon.0) 277 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.266651+0000 mon.smithi044 (mon.0) 278 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.267126+0000 mon.smithi044 (mon.0) 279 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.267686+0000 mon.smithi044 (mon.0) 280 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.268139+0000 mon.smithi044 (mon.0) 281 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:31 smithi044 bash[16231]: audit 2024-02-19T21:56:31.268626+0000 mon.smithi044 (mon.0) 282 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:32.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:32 smithi044 bash[16231]: audit 2024-02-19T21:56:32.345069+0000 mon.smithi044 (mon.0) 283 : audit [DBG] from='client.? 172.21.15.44:0/3125052783' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:32.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:32 smithi104 bash[21066]: audit 2024-02-19T21:56:32.345069+0000 mon.smithi044 (mon.0) 283 : audit [DBG] from='client.? 172.21.15.44:0/3125052783' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-19T21:56:33.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:33 smithi104 bash[21066]: cluster 2024-02-19T21:56:32.411759+0000 mgr.smithi044.ikbsam (mgr.14184) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:33.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:33 smithi044 bash[16231]: cluster 2024-02-19T21:56:32.411759+0000 mgr.smithi044.ikbsam (mgr.14184) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:34.902 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:35.704 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:56:35.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:35 smithi104 bash[21066]: cluster 2024-02-19T21:56:34.412207+0000 mgr.smithi044.ikbsam (mgr.14184) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:35.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:35 smithi104 bash[21066]: audit 2024-02-19T21:56:34.902979+0000 mon.smithi044 (mon.0) 284 : audit [DBG] from='client.? 172.21.15.44:0/3901855396' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:35.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:35 smithi044 bash[16231]: cluster 2024-02-19T21:56:34.412207+0000 mgr.smithi044.ikbsam (mgr.14184) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:35.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:35 smithi044 bash[16231]: audit 2024-02-19T21:56:34.902979+0000 mon.smithi044 (mon.0) 284 : audit [DBG] from='client.? 172.21.15.44:0/3901855396' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:36.705 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:37.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:37 smithi104 bash[21066]: cluster 2024-02-19T21:56:36.412662+0000 mgr.smithi044.ikbsam (mgr.14184) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:37.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:37 smithi044 bash[16231]: cluster 2024-02-19T21:56:36.412662+0000 mgr.smithi044.ikbsam (mgr.14184) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:39.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:39 smithi044 bash[16231]: cluster 2024-02-19T21:56:38.413198+0000 mgr.smithi044.ikbsam (mgr.14184) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:39.821 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:39.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:39 smithi104 bash[21066]: cluster 2024-02-19T21:56:38.413198+0000 mgr.smithi044.ikbsam (mgr.14184) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:40.434 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:56:40.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:40 smithi104 bash[21066]: audit 2024-02-19T21:56:39.821485+0000 mon.smithi044 (mon.0) 285 : audit [DBG] from='client.? 172.21.15.44:0/1399214829' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:40.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:40 smithi104 bash[21066]: audit 2024-02-19T21:56:40.103130+0000 mon.smithi044 (mon.0) 286 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-19T21:56:40.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:40 smithi104 bash[21066]: audit 2024-02-19T21:56:40.105099+0000 mon.smithi044 (mon.0) 287 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:40.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:40 smithi044 bash[16231]: audit 2024-02-19T21:56:39.821485+0000 mon.smithi044 (mon.0) 285 : audit [DBG] from='client.? 172.21.15.44:0/1399214829' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:40.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:40 smithi044 bash[16231]: audit 2024-02-19T21:56:40.103130+0000 mon.smithi044 (mon.0) 286 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-19T21:56:40.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:40 smithi044 bash[16231]: audit 2024-02-19T21:56:40.105099+0000 mon.smithi044 (mon.0) 287 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:41.435 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:41.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:41 smithi104 bash[21066]: cephadm 2024-02-19T21:56:40.106851+0000 mgr.smithi044.ikbsam (mgr.14184) 44 : cephadm [INF] Deploying daemon osd.0 on smithi104 2024-02-19T21:56:41.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:41 smithi104 bash[21066]: cluster 2024-02-19T21:56:40.413628+0000 mgr.smithi044.ikbsam (mgr.14184) 45 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:41.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:41 smithi044 bash[16231]: cephadm 2024-02-19T21:56:40.106851+0000 mgr.smithi044.ikbsam (mgr.14184) 44 : cephadm [INF] Deploying daemon osd.0 on smithi104 2024-02-19T21:56:41.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:41 smithi044 bash[16231]: cluster 2024-02-19T21:56:40.413628+0000 mgr.smithi044.ikbsam (mgr.14184) 45 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:43.768 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:43 smithi104 bash[21066]: cluster 2024-02-19T21:56:42.414096+0000 mgr.smithi044.ikbsam (mgr.14184) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:43 smithi044 bash[16231]: cluster 2024-02-19T21:56:42.414096+0000 mgr.smithi044.ikbsam (mgr.14184) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:45.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:44 smithi104 bash[21066]: audit 2024-02-19T21:56:43.811837+0000 mon.smithi044 (mon.0) 288 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:45.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:44 smithi104 bash[21066]: audit 2024-02-19T21:56:43.813616+0000 mon.smithi044 (mon.0) 289 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-19T21:56:45.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:44 smithi104 bash[21066]: audit 2024-02-19T21:56:43.815299+0000 mon.smithi044 (mon.0) 290 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:45.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:44 smithi044 bash[16231]: audit 2024-02-19T21:56:43.811837+0000 mon.smithi044 (mon.0) 288 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:45.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:44 smithi044 bash[16231]: audit 2024-02-19T21:56:43.813616+0000 mon.smithi044 (mon.0) 289 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-19T21:56:45.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:44 smithi044 bash[16231]: audit 2024-02-19T21:56:43.815299+0000 mon.smithi044 (mon.0) 290 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:45.958 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:46.082 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:45 smithi104 bash[21066]: cephadm 2024-02-19T21:56:43.816856+0000 mgr.smithi044.ikbsam (mgr.14184) 47 : cephadm [INF] Deploying daemon osd.2 on smithi104 2024-02-19T21:56:46.083 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:45 smithi104 bash[21066]: cluster 2024-02-19T21:56:44.414525+0000 mgr.smithi044.ikbsam (mgr.14184) 48 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:46.083 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:45 smithi104 bash[21066]: audit 2024-02-19T21:56:45.662171+0000 mon.smithi044 (mon.0) 291 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-19T21:56:46.083 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:45 smithi104 bash[21066]: audit 2024-02-19T21:56:45.663342+0000 mon.smithi044 (mon.0) 292 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:46.083 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:45 smithi104 bash[21066]: cephadm 2024-02-19T21:56:45.664308+0000 mgr.smithi044.ikbsam (mgr.14184) 49 : cephadm [INF] Deploying daemon osd.1 on smithi044 2024-02-19T21:56:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:45 smithi044 bash[16231]: cephadm 2024-02-19T21:56:43.816856+0000 mgr.smithi044.ikbsam (mgr.14184) 47 : cephadm [INF] Deploying daemon osd.2 on smithi104 2024-02-19T21:56:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:45 smithi044 bash[16231]: cluster 2024-02-19T21:56:44.414525+0000 mgr.smithi044.ikbsam (mgr.14184) 48 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:45 smithi044 bash[16231]: audit 2024-02-19T21:56:45.662171+0000 mon.smithi044 (mon.0) 291 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-19T21:56:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:45 smithi044 bash[16231]: audit 2024-02-19T21:56:45.663342+0000 mon.smithi044 (mon.0) 292 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:45 smithi044 bash[16231]: cephadm 2024-02-19T21:56:45.664308+0000 mgr.smithi044.ikbsam (mgr.14184) 49 : cephadm [INF] Deploying daemon osd.1 on smithi044 2024-02-19T21:56:46.940 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:56:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:46 smithi104 bash[21066]: audit 2024-02-19T21:56:45.959458+0000 mon.smithi044 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.44:0/1473407865' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:47.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:46 smithi104 bash[21066]: cluster 2024-02-19T21:56:46.414962+0000 mgr.smithi044.ikbsam (mgr.14184) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:47.140 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:46 smithi044 bash[16231]: audit 2024-02-19T21:56:45.959458+0000 mon.smithi044 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.44:0/1473407865' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:47.140 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:46 smithi044 bash[16231]: cluster 2024-02-19T21:56:46.414962+0000 mgr.smithi044.ikbsam (mgr.14184) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:47.941 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:49 smithi044 bash[16231]: cluster 2024-02-19T21:56:48.415382+0000 mgr.smithi044.ikbsam (mgr.14184) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:49 smithi044 bash[16231]: audit 2024-02-19T21:56:48.686499+0000 mon.smithi044 (mon.0) 294 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:49 smithi044 bash[16231]: audit 2024-02-19T21:56:48.688360+0000 mon.smithi044 (mon.0) 295 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-19T21:56:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:49 smithi044 bash[16231]: audit 2024-02-19T21:56:48.690479+0000 mon.smithi044 (mon.0) 296 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:49 smithi044 bash[16231]: cephadm 2024-02-19T21:56:48.692295+0000 mgr.smithi044.ikbsam (mgr.14184) 52 : cephadm [INF] Deploying daemon osd.4 on smithi104 2024-02-19T21:56:49.952 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:49 smithi104 bash[21066]: cluster 2024-02-19T21:56:48.415382+0000 mgr.smithi044.ikbsam (mgr.14184) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:49.952 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:49 smithi104 bash[21066]: audit 2024-02-19T21:56:48.686499+0000 mon.smithi044 (mon.0) 294 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:49.952 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:49 smithi104 bash[21066]: audit 2024-02-19T21:56:48.688360+0000 mon.smithi044 (mon.0) 295 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-19T21:56:49.952 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:49 smithi104 bash[21066]: audit 2024-02-19T21:56:48.690479+0000 mon.smithi044 (mon.0) 296 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:49.952 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:49 smithi104 bash[21066]: cephadm 2024-02-19T21:56:48.692295+0000 mgr.smithi044.ikbsam (mgr.14184) 52 : cephadm [INF] Deploying daemon osd.4 on smithi104 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: cluster 2024-02-19T21:56:50.415862+0000 mgr.smithi044.ikbsam (mgr.14184) 53 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: audit 2024-02-19T21:56:50.680772+0000 mon.smithi044 (mon.0) 297 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: audit 2024-02-19T21:56:50.682069+0000 mon.smithi044 (mon.0) 298 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: audit 2024-02-19T21:56:50.683143+0000 mon.smithi044 (mon.0) 299 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: cephadm 2024-02-19T21:56:50.684057+0000 mgr.smithi044.ikbsam (mgr.14184) 54 : cephadm [INF] Deploying daemon osd.3 on smithi044 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: audit 2024-02-19T21:56:51.437612+0000 mon.smithi104 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.104:6800/3939089873,v1:172.21.15.104:6801/3939089873]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T21:56:51.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:51 smithi104 bash[21066]: audit 2024-02-19T21:56:51.439884+0000 mon.smithi044 (mon.0) 300 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T21:56:52.000 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: cluster 2024-02-19T21:56:50.415862+0000 mgr.smithi044.ikbsam (mgr.14184) 53 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:52.000 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: audit 2024-02-19T21:56:50.680772+0000 mon.smithi044 (mon.0) 297 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:52.000 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: audit 2024-02-19T21:56:50.682069+0000 mon.smithi044 (mon.0) 298 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-19T21:56:52.000 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: audit 2024-02-19T21:56:50.683143+0000 mon.smithi044 (mon.0) 299 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:52.000 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: cephadm 2024-02-19T21:56:50.684057+0000 mgr.smithi044.ikbsam (mgr.14184) 54 : cephadm [INF] Deploying daemon osd.3 on smithi044 2024-02-19T21:56:52.001 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: audit 2024-02-19T21:56:51.437612+0000 mon.smithi104 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.104:6800/3939089873,v1:172.21.15.104:6801/3939089873]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T21:56:52.001 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:51 smithi044 bash[16231]: audit 2024-02-19T21:56:51.439884+0000 mon.smithi044 (mon.0) 300 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-19T21:56:52.454 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.692827+0000 mon.smithi044 (mon.0) 301 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: cluster 2024-02-19T21:56:51.692984+0000 mon.smithi044 (mon.0) 302 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.693226+0000 mon.smithi044 (mon.0) 303 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.693704+0000 mon.smithi044 (mon.0) 304 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.694060+0000 mon.smithi044 (mon.0) 305 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.694326+0000 mon.smithi044 (mon.0) 306 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.694769+0000 mon.smithi044 (mon.0) 307 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.695154+0000 mon.smithi044 (mon.0) 308 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.695546+0000 mon.smithi044 (mon.0) 309 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.695880+0000 mon.smithi044 (mon.0) 310 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:52.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.696076+0000 mon.smithi104 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.104:6800/3939089873,v1:172.21.15.104:6801/3939089873]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:52.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:51.698308+0000 mon.smithi044 (mon.0) 311 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:52.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:52 smithi104 bash[21066]: audit 2024-02-19T21:56:52.453507+0000 mon.smithi044 (mon.0) 312 : audit [DBG] from='client.? 172.21.15.44:0/2600490814' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:53.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.692827+0000 mon.smithi044 (mon.0) 301 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-19T21:56:53.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: cluster 2024-02-19T21:56:51.692984+0000 mon.smithi044 (mon.0) 302 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-19T21:56:53.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.693226+0000 mon.smithi044 (mon.0) 303 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:53.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.693704+0000 mon.smithi044 (mon.0) 304 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:53.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.694060+0000 mon.smithi044 (mon.0) 305 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:53.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.694326+0000 mon.smithi044 (mon.0) 306 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.694769+0000 mon.smithi044 (mon.0) 307 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.695154+0000 mon.smithi044 (mon.0) 308 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.695546+0000 mon.smithi044 (mon.0) 309 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.695880+0000 mon.smithi044 (mon.0) 310 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.696076+0000 mon.smithi104 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.104:6800/3939089873,v1:172.21.15.104:6801/3939089873]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:51.698308+0000 mon.smithi044 (mon.0) 311 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:52 smithi044 bash[16231]: audit 2024-02-19T21:56:52.453507+0000 mon.smithi044 (mon.0) 312 : audit [DBG] from='client.? 172.21.15.44:0/2600490814' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:56:53.540 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: cluster 2024-02-19T21:56:52.416154+0000 mgr.smithi044.ikbsam (mgr.14184) 55 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.692179+0000 mon.smithi044 (mon.0) 313 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: cluster 2024-02-19T21:56:52.692254+0000 mon.smithi044 (mon.0) 314 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.692626+0000 mon.smithi044 (mon.0) 315 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.692958+0000 mon.smithi044 (mon.0) 316 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.693248+0000 mon.smithi044 (mon.0) 317 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.693483+0000 mon.smithi044 (mon.0) 318 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.693707+0000 mon.smithi044 (mon.0) 319 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.693977+0000 mon.smithi044 (mon.0) 320 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.694235+0000 mon.smithi044 (mon.0) 321 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.694640+0000 mon.smithi044 (mon.0) 322 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:53.892 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:52.703374+0000 mon.smithi044 (mon.0) 323 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:53.893 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:53.557629+0000 mon.smithi044 (mon.0) 324 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:53.893 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:53.559251+0000 mon.smithi044 (mon.0) 325 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-19T21:56:53.893 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:53 smithi104 bash[21066]: audit 2024-02-19T21:56:53.560580+0000 mon.smithi044 (mon.0) 326 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:54.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: cluster 2024-02-19T21:56:52.416154+0000 mgr.smithi044.ikbsam (mgr.14184) 55 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:54.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.692179+0000 mon.smithi044 (mon.0) 313 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:56:54.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: cluster 2024-02-19T21:56:52.692254+0000 mon.smithi044 (mon.0) 314 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.692626+0000 mon.smithi044 (mon.0) 315 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.692958+0000 mon.smithi044 (mon.0) 316 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.693248+0000 mon.smithi044 (mon.0) 317 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.693483+0000 mon.smithi044 (mon.0) 318 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.693707+0000 mon.smithi044 (mon.0) 319 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.693977+0000 mon.smithi044 (mon.0) 320 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.694235+0000 mon.smithi044 (mon.0) 321 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.694640+0000 mon.smithi044 (mon.0) 322 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:52.703374+0000 mon.smithi044 (mon.0) 323 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:53.557629+0000 mon.smithi044 (mon.0) 324 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:53.559251+0000 mon.smithi044 (mon.0) 325 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-19T21:56:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:53 smithi044 bash[16231]: audit 2024-02-19T21:56:53.560580+0000 mon.smithi044 (mon.0) 326 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:54.541 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:56:54.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: cluster 2024-02-19T21:56:52.470115+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:56:54.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: cluster 2024-02-19T21:56:52.470228+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:56:54.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: cephadm 2024-02-19T21:56:53.561860+0000 mgr.smithi044.ikbsam (mgr.14184) 56 : cephadm [INF] Deploying daemon osd.6 on smithi104 2024-02-19T21:56:54.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: cluster 2024-02-19T21:56:53.705104+0000 mon.smithi044 (mon.0) 327 : cluster [INF] osd.0 [v2:172.21.15.104:6800/3939089873,v1:172.21.15.104:6801/3939089873] boot 2024-02-19T21:56:54.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: cluster 2024-02-19T21:56:53.705242+0000 mon.smithi044 (mon.0) 328 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.706078+0000 mon.smithi044 (mon.0) 329 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.707069+0000 mon.smithi044 (mon.0) 330 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.715263+0000 mon.smithi044 (mon.0) 331 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.715639+0000 mon.smithi044 (mon.0) 332 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.716035+0000 mon.smithi044 (mon.0) 333 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.716422+0000 mon.smithi044 (mon.0) 334 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.716816+0000 mon.smithi044 (mon.0) 335 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:54.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:54 smithi044 bash[16231]: audit 2024-02-19T21:56:53.717249+0000 mon.smithi044 (mon.0) 336 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: cluster 2024-02-19T21:56:52.470115+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: cluster 2024-02-19T21:56:52.470228+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: cephadm 2024-02-19T21:56:53.561860+0000 mgr.smithi044.ikbsam (mgr.14184) 56 : cephadm [INF] Deploying daemon osd.6 on smithi104 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: cluster 2024-02-19T21:56:53.705104+0000 mon.smithi044 (mon.0) 327 : cluster [INF] osd.0 [v2:172.21.15.104:6800/3939089873,v1:172.21.15.104:6801/3939089873] boot 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: cluster 2024-02-19T21:56:53.705242+0000 mon.smithi044 (mon.0) 328 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.706078+0000 mon.smithi044 (mon.0) 329 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.707069+0000 mon.smithi044 (mon.0) 330 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.715263+0000 mon.smithi044 (mon.0) 331 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.715639+0000 mon.smithi044 (mon.0) 332 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.716035+0000 mon.smithi044 (mon.0) 333 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.716422+0000 mon.smithi044 (mon.0) 334 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:55.002 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.716816+0000 mon.smithi044 (mon.0) 335 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:55.003 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:54 smithi104 bash[21066]: audit 2024-02-19T21:56:53.717249+0000 mon.smithi044 (mon.0) 336 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: cluster 2024-02-19T21:56:54.416537+0000 mgr.smithi044.ikbsam (mgr.14184) 57 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: cluster 2024-02-19T21:56:54.719815+0000 mon.smithi044 (mon.0) 337 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.720000+0000 mon.smithi044 (mon.0) 338 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.720642+0000 mon.smithi044 (mon.0) 339 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.720969+0000 mon.smithi044 (mon.0) 340 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.721308+0000 mon.smithi044 (mon.0) 341 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.721615+0000 mon.smithi044 (mon.0) 342 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.721930+0000 mon.smithi044 (mon.0) 343 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:55.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:55 smithi104 bash[21066]: audit 2024-02-19T21:56:54.722243+0000 mon.smithi044 (mon.0) 344 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:56.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: cluster 2024-02-19T21:56:54.416537+0000 mgr.smithi044.ikbsam (mgr.14184) 57 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-19T21:56:56.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: cluster 2024-02-19T21:56:54.719815+0000 mon.smithi044 (mon.0) 337 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-19T21:56:56.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.720000+0000 mon.smithi044 (mon.0) 338 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:56.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.720642+0000 mon.smithi044 (mon.0) 339 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:56.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.720969+0000 mon.smithi044 (mon.0) 340 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:56.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.721308+0000 mon.smithi044 (mon.0) 341 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:56.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.721615+0000 mon.smithi044 (mon.0) 342 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:56.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.721930+0000 mon.smithi044 (mon.0) 343 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:56.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:55 smithi044 bash[16231]: audit 2024-02-19T21:56:54.722243+0000 mon.smithi044 (mon.0) 344 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:56.814 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:56 smithi044 bash[16231]: audit 2024-02-19T21:56:56.282021+0000 mon.smithi104 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.104:6808/2143280496,v1:172.21.15.104:6809/2143280496]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T21:56:56.814 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:56 smithi044 bash[16231]: audit 2024-02-19T21:56:56.284324+0000 mon.smithi044 (mon.0) 345 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T21:56:57.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:56 smithi104 bash[21066]: audit 2024-02-19T21:56:56.282021+0000 mon.smithi104 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.104:6808/2143280496,v1:172.21.15.104:6809/2143280496]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T21:56:57.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:56 smithi104 bash[21066]: audit 2024-02-19T21:56:56.284324+0000 mon.smithi044 (mon.0) 345 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: cluster 2024-02-19T21:56:56.416909+0000 mgr.smithi044.ikbsam (mgr.14184) 58 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.729208+0000 mon.smithi104 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.104:6808/2143280496,v1:172.21.15.104:6809/2143280496]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.729716+0000 mon.smithi044 (mon.0) 346 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: cluster 2024-02-19T21:56:56.729781+0000 mon.smithi044 (mon.0) 347 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.729905+0000 mon.smithi044 (mon.0) 348 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.730265+0000 mon.smithi044 (mon.0) 349 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.730516+0000 mon.smithi044 (mon.0) 350 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.730756+0000 mon.smithi044 (mon.0) 351 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.730971+0000 mon.smithi044 (mon.0) 352 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.731258+0000 mon.smithi044 (mon.0) 353 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:58.099 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.731767+0000 mon.smithi044 (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=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:58.100 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.732215+0000 mon.smithi044 (mon.0) 355 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:58.100 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.853906+0000 mon.smithi044 (mon.0) 356 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:58.100 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.855240+0000 mon.smithi044 (mon.0) 357 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-19T21:56:58.100 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:57 smithi104 bash[21066]: audit 2024-02-19T21:56:56.856614+0000 mon.smithi044 (mon.0) 358 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:58.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: cluster 2024-02-19T21:56:56.416909+0000 mgr.smithi044.ikbsam (mgr.14184) 58 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.729208+0000 mon.smithi104 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.104:6808/2143280496,v1:172.21.15.104:6809/2143280496]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.729716+0000 mon.smithi044 (mon.0) 346 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: cluster 2024-02-19T21:56:56.729781+0000 mon.smithi044 (mon.0) 347 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.729905+0000 mon.smithi044 (mon.0) 348 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.730265+0000 mon.smithi044 (mon.0) 349 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.730516+0000 mon.smithi044 (mon.0) 350 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.730756+0000 mon.smithi044 (mon.0) 351 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.730971+0000 mon.smithi044 (mon.0) 352 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.731258+0000 mon.smithi044 (mon.0) 353 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.731767+0000 mon.smithi044 (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=smithi104", "root=default"]}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.732215+0000 mon.smithi044 (mon.0) 355 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.853906+0000 mon.smithi044 (mon.0) 356 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:58.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.855240+0000 mon.smithi044 (mon.0) 357 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-19T21:56:58.165 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:57 smithi044 bash[16231]: audit 2024-02-19T21:56:56.856614+0000 mon.smithi044 (mon.0) 358 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:56:59.092 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: cephadm 2024-02-19T21:56:56.857760+0000 mgr.smithi044.ikbsam (mgr.14184) 59 : cephadm [INF] Deploying daemon osd.5 on smithi044 2024-02-19T21:56:59.092 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.732527+0000 mon.smithi044 (mon.0) 359 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:56:59.092 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: cluster 2024-02-19T21:56:57.732686+0000 mon.smithi044 (mon.0) 360 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-19T21:56:59.092 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.733497+0000 mon.smithi044 (mon.0) 361 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.734001+0000 mon.smithi044 (mon.0) 362 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.734364+0000 mon.smithi044 (mon.0) 363 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.734751+0000 mon.smithi044 (mon.0) 364 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.735104+0000 mon.smithi044 (mon.0) 365 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.742986+0000 mon.smithi044 (mon.0) 366 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.743236+0000 mon.smithi044 (mon.0) 367 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:57.743528+0000 mon.smithi044 (mon.0) 368 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:59.093 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:58 smithi044 bash[16231]: audit 2024-02-19T21:56:58.690772+0000 mon.smithi044 (mon.0) 369 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: cephadm 2024-02-19T21:56:56.857760+0000 mgr.smithi044.ikbsam (mgr.14184) 59 : cephadm [INF] Deploying daemon osd.5 on smithi044 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.732527+0000 mon.smithi044 (mon.0) 359 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: cluster 2024-02-19T21:56:57.732686+0000 mon.smithi044 (mon.0) 360 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.733497+0000 mon.smithi044 (mon.0) 361 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.734001+0000 mon.smithi044 (mon.0) 362 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.734364+0000 mon.smithi044 (mon.0) 363 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.734751+0000 mon.smithi044 (mon.0) 364 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.735104+0000 mon.smithi044 (mon.0) 365 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.742986+0000 mon.smithi044 (mon.0) 366 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.743236+0000 mon.smithi044 (mon.0) 367 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:57.743528+0000 mon.smithi044 (mon.0) 368 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:56:59.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:58 smithi104 bash[21066]: audit 2024-02-19T21:56:58.690772+0000 mon.smithi044 (mon.0) 369 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:00.056 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: cluster 2024-02-19T21:56:57.283650+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:00.056 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: cluster 2024-02-19T21:56:57.283747+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:00.056 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: cluster 2024-02-19T21:56:58.417301+0000 mgr.smithi044.ikbsam (mgr.14184) 60 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T21:57:00.056 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: cluster 2024-02-19T21:56:58.742412+0000 mon.smithi044 (mon.0) 370 : cluster [INF] osd.2 [v2:172.21.15.104:6808/2143280496,v1:172.21.15.104:6809/2143280496] boot 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: cluster 2024-02-19T21:56:58.742511+0000 mon.smithi044 (mon.0) 371 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.743274+0000 mon.smithi044 (mon.0) 372 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.743835+0000 mon.smithi044 (mon.0) 373 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.744192+0000 mon.smithi044 (mon.0) 374 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.744481+0000 mon.smithi044 (mon.0) 375 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.752785+0000 mon.smithi044 (mon.0) 376 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.753271+0000 mon.smithi044 (mon.0) 377 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:00.057 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:56:59 smithi044 bash[16231]: audit 2024-02-19T21:56:58.753703+0000 mon.smithi044 (mon.0) 378 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: cluster 2024-02-19T21:56:57.283650+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: cluster 2024-02-19T21:56:57.283747+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: cluster 2024-02-19T21:56:58.417301+0000 mgr.smithi044.ikbsam (mgr.14184) 60 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: cluster 2024-02-19T21:56:58.742412+0000 mon.smithi044 (mon.0) 370 : cluster [INF] osd.2 [v2:172.21.15.104:6808/2143280496,v1:172.21.15.104:6809/2143280496] boot 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: cluster 2024-02-19T21:56:58.742511+0000 mon.smithi044 (mon.0) 371 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.743274+0000 mon.smithi044 (mon.0) 372 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.743835+0000 mon.smithi044 (mon.0) 373 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.744192+0000 mon.smithi044 (mon.0) 374 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.744481+0000 mon.smithi044 (mon.0) 375 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.752785+0000 mon.smithi044 (mon.0) 376 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:00.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.753271+0000 mon.smithi044 (mon.0) 377 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:00.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:56:59 smithi104 bash[21066]: audit 2024-02-19T21:56:58.753703+0000 mon.smithi044 (mon.0) 378 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:00.506 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:57:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: cluster 2024-02-19T21:56:59.752132+0000 mon.smithi044 (mon.0) 379 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-19T21:57:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:56:59.752756+0000 mon.smithi044 (mon.0) 380 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:56:59.752978+0000 mon.smithi044 (mon.0) 381 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:56:59.753200+0000 mon.smithi044 (mon.0) 382 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:56:59.753401+0000 mon.smithi044 (mon.0) 383 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:56:59.753599+0000 mon.smithi044 (mon.0) 384 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:00.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:56:59.753832+0000 mon.smithi044 (mon.0) 385 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:00.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:57:00.200211+0000 mon.smithi044 (mon.0) 386 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-19T21:57:00.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:00 smithi044 bash[16231]: audit 2024-02-19T21:57:00.506894+0000 mon.smithi044 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.44:0/2118478887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:01.086 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: cluster 2024-02-19T21:56:59.752132+0000 mon.smithi044 (mon.0) 379 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-19T21:57:01.086 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:56:59.752756+0000 mon.smithi044 (mon.0) 380 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:01.086 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:56:59.752978+0000 mon.smithi044 (mon.0) 381 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:01.087 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:56:59.753200+0000 mon.smithi044 (mon.0) 382 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:01.087 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:56:59.753401+0000 mon.smithi044 (mon.0) 383 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:01.087 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:56:59.753599+0000 mon.smithi044 (mon.0) 384 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:01.087 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:56:59.753832+0000 mon.smithi044 (mon.0) 385 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:01.087 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:57:00.200211+0000 mon.smithi044 (mon.0) 386 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-19T21:57:01.087 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:00 smithi104 bash[21066]: audit 2024-02-19T21:57:00.506894+0000 mon.smithi044 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.44:0/2118478887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:01.633 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":21,"num_osds":8,"num_up_osds":2,"osd_up_since":1708379818,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:57:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: cluster 2024-02-19T21:57:00.417722+0000 mgr.smithi044.ikbsam (mgr.14184) 61 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T21:57:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.769146+0000 mon.smithi044 (mon.0) 388 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-19T21:57:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: cluster 2024-02-19T21:57:00.769368+0000 mon.smithi044 (mon.0) 389 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-19T21:57:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.770144+0000 mon.smithi044 (mon.0) 390 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.771251+0000 mon.smithi044 (mon.0) 391 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.771714+0000 mon.smithi044 (mon.0) 392 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:01.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.772323+0000 mon.smithi044 (mon.0) 393 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:01.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.772744+0000 mon.smithi044 (mon.0) 394 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:01.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.773195+0000 mon.smithi044 (mon.0) 395 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:01.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:00.773636+0000 mon.smithi044 (mon.0) 396 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:01.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:01.089690+0000 mon.smithi104 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.104:6816/2972453486,v1:172.21.15.104:6817/2972453486]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T21:57:01.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:01 smithi044 bash[16231]: audit 2024-02-19T21:57:01.091972+0000 mon.smithi044 (mon.0) 397 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T21:57:02.076 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: cluster 2024-02-19T21:57:00.417722+0000 mgr.smithi044.ikbsam (mgr.14184) 61 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T21:57:02.076 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.769146+0000 mon.smithi044 (mon.0) 388 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-19T21:57:02.076 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: cluster 2024-02-19T21:57:00.769368+0000 mon.smithi044 (mon.0) 389 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-19T21:57:02.076 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.770144+0000 mon.smithi044 (mon.0) 390 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:02.076 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.771251+0000 mon.smithi044 (mon.0) 391 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:02.076 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.771714+0000 mon.smithi044 (mon.0) 392 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:02.077 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.772323+0000 mon.smithi044 (mon.0) 393 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:02.077 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.772744+0000 mon.smithi044 (mon.0) 394 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:02.077 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.773195+0000 mon.smithi044 (mon.0) 395 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:02.077 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:00.773636+0000 mon.smithi044 (mon.0) 396 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:02.077 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:01.089690+0000 mon.smithi104 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.104:6816/2972453486,v1:172.21.15.104:6817/2972453486]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T21:57:02.077 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:01 smithi104 bash[21066]: audit 2024-02-19T21:57:01.091972+0000 mon.smithi044 (mon.0) 397 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-19T21:57:02.635 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.782159+0000 mon.smithi104 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.104:6816/2972453486,v1:172.21.15.104:6817/2972453486]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.782183+0000 mon.smithi044 (mon.0) 398 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.782353+0000 mon.smithi044 (mon.0) 399 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: cluster 2024-02-19T21:57:01.782494+0000 mon.smithi044 (mon.0) 400 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.782753+0000 mon.smithi044 (mon.0) 401 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.783522+0000 mon.smithi044 (mon.0) 402 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:02.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.784671+0000 mon.smithi044 (mon.0) 403 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:02.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.785245+0000 mon.smithi044 (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=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:02.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.785619+0000 mon.smithi044 (mon.0) 405 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:02.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.785847+0000 mon.smithi044 (mon.0) 406 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:02.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.786179+0000 mon.smithi044 (mon.0) 407 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:02.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:02 smithi044 bash[16231]: audit 2024-02-19T21:57:01.790306+0000 mon.smithi044 (mon.0) 408 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.782159+0000 mon.smithi104 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.104:6816/2972453486,v1:172.21.15.104:6817/2972453486]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.782183+0000 mon.smithi044 (mon.0) 398 : audit [INF] from='osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.782353+0000 mon.smithi044 (mon.0) 399 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: cluster 2024-02-19T21:57:01.782494+0000 mon.smithi044 (mon.0) 400 : cluster [DBG] osdmap e23: 8 total, 2 up, 8 in 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.782753+0000 mon.smithi044 (mon.0) 401 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.783522+0000 mon.smithi044 (mon.0) 402 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.784671+0000 mon.smithi044 (mon.0) 403 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.785245+0000 mon.smithi044 (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=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.785619+0000 mon.smithi044 (mon.0) 405 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.785847+0000 mon.smithi044 (mon.0) 406 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:03.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.786179+0000 mon.smithi044 (mon.0) 407 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:03.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:02 smithi104 bash[21066]: audit 2024-02-19T21:57:01.790306+0000 mon.smithi044 (mon.0) 408 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:03.818 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: cluster 2024-02-19T21:57:01.177810+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: cluster 2024-02-19T21:57:01.177937+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: cluster 2024-02-19T21:57:02.418073+0000 mgr.smithi044.ikbsam (mgr.14184) 62 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.782340+0000 mon.smithi044 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: cluster 2024-02-19T21:57:02.782435+0000 mon.smithi044 (mon.0) 410 : cluster [INF] osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498] boot 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: cluster 2024-02-19T21:57:02.782461+0000 mon.smithi044 (mon.0) 411 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.783145+0000 mon.smithi044 (mon.0) 412 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.783403+0000 mon.smithi044 (mon.0) 413 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.783619+0000 mon.smithi044 (mon.0) 414 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.783889+0000 mon.smithi044 (mon.0) 415 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.787315+0000 mon.smithi044 (mon.0) 416 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.787545+0000 mon.smithi044 (mon.0) 417 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:02.787832+0000 mon.smithi044 (mon.0) 418 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-19T21:57:03.819 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:03 smithi044 bash[16231]: audit 2024-02-19T21:57:03.246270+0000 mon.smithi044 (mon.0) 419 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: cluster 2024-02-19T21:57:01.177810+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: cluster 2024-02-19T21:57:01.177937+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: cluster 2024-02-19T21:57:02.418073+0000 mgr.smithi044.ikbsam (mgr.14184) 62 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-19T21:57:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.782340+0000 mon.smithi044 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:57:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: cluster 2024-02-19T21:57:02.782435+0000 mon.smithi044 (mon.0) 410 : cluster [INF] osd.1 [v2:172.21.15.44:6802/290339498,v1:172.21.15.44:6803/290339498] boot 2024-02-19T21:57:04.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: cluster 2024-02-19T21:57:02.782461+0000 mon.smithi044 (mon.0) 411 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.783145+0000 mon.smithi044 (mon.0) 412 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.783403+0000 mon.smithi044 (mon.0) 413 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.783619+0000 mon.smithi044 (mon.0) 414 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.783889+0000 mon.smithi044 (mon.0) 415 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.787315+0000 mon.smithi044 (mon.0) 416 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.787545+0000 mon.smithi044 (mon.0) 417 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:02.787832+0000 mon.smithi044 (mon.0) 418 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-19T21:57:04.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:03 smithi104 bash[21066]: audit 2024-02-19T21:57:03.246270+0000 mon.smithi044 (mon.0) 419 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: cluster 2024-02-19T21:57:02.083257+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: cluster 2024-02-19T21:57:02.083356+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.793858+0000 mon.smithi044 (mon.0) 420 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.802303+0000 mon.smithi044 (mon.0) 421 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: cluster 2024-02-19T21:57:03.802442+0000 mon.smithi044 (mon.0) 422 : cluster [INF] osd.4 [v2:172.21.15.104:6816/2972453486,v1:172.21.15.104:6817/2972453486] boot 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: cluster 2024-02-19T21:57:03.802557+0000 mon.smithi044 (mon.0) 423 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-02-19T21:57:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.802767+0000 mon.smithi044 (mon.0) 424 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.803368+0000 mon.smithi044 (mon.0) 425 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.803771+0000 mon.smithi044 (mon.0) 426 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.804191+0000 mon.smithi044 (mon.0) 427 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.804644+0000 mon.smithi044 (mon.0) 428 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.805836+0000 mon.smithi044 (mon.0) 429 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.854816+0000 mon.smithi044 (mon.0) 430 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.855817+0000 mon.smithi044 (mon.0) 431 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-19T21:57:05.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:04 smithi104 bash[21066]: audit 2024-02-19T21:57:03.856732+0000 mon.smithi044 (mon.0) 432 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:05.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: cluster 2024-02-19T21:57:02.083257+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:05.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: cluster 2024-02-19T21:57:02.083356+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:05.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.793858+0000 mon.smithi044 (mon.0) 420 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:05.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.802303+0000 mon.smithi044 (mon.0) 421 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: cluster 2024-02-19T21:57:03.802442+0000 mon.smithi044 (mon.0) 422 : cluster [INF] osd.4 [v2:172.21.15.104:6816/2972453486,v1:172.21.15.104:6817/2972453486] boot 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: cluster 2024-02-19T21:57:03.802557+0000 mon.smithi044 (mon.0) 423 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.802767+0000 mon.smithi044 (mon.0) 424 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.803368+0000 mon.smithi044 (mon.0) 425 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.803771+0000 mon.smithi044 (mon.0) 426 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.804191+0000 mon.smithi044 (mon.0) 427 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.804644+0000 mon.smithi044 (mon.0) 428 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.805836+0000 mon.smithi044 (mon.0) 429 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.854816+0000 mon.smithi044 (mon.0) 430 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.855817+0000 mon.smithi044 (mon.0) 431 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-19T21:57:05.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:04 smithi044 bash[16231]: audit 2024-02-19T21:57:03.856732+0000 mon.smithi044 (mon.0) 432 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:05.859 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: cephadm 2024-02-19T21:57:03.857702+0000 mgr.smithi044.ikbsam (mgr.14184) 63 : cephadm [INF] Deploying daemon osd.7 on smithi044 2024-02-19T21:57:05.859 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: cluster 2024-02-19T21:57:04.418638+0000 mgr.smithi044.ikbsam (mgr.14184) 64 : cluster [DBG] pgmap v61: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:04.801880+0000 mon.smithi044 (mon.0) 433 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: cluster 2024-02-19T21:57:04.801959+0000 mon.smithi044 (mon.0) 434 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:04.802123+0000 mon.smithi044 (mon.0) 435 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:04.802481+0000 mon.smithi044 (mon.0) 436 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:04.802704+0000 mon.smithi044 (mon.0) 437 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:04.803303+0000 mon.smithi044 (mon.0) 438 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:05.580143+0000 mon.smithi104 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.104:6824/939721564,v1:172.21.15.104:6825/939721564]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T21:57:05.860 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:05 smithi104 bash[21066]: audit 2024-02-19T21:57:05.582448+0000 mon.smithi044 (mon.0) 439 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: cephadm 2024-02-19T21:57:03.857702+0000 mgr.smithi044.ikbsam (mgr.14184) 63 : cephadm [INF] Deploying daemon osd.7 on smithi044 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: cluster 2024-02-19T21:57:04.418638+0000 mgr.smithi044.ikbsam (mgr.14184) 64 : cluster [DBG] pgmap v61: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:04.801880+0000 mon.smithi044 (mon.0) 433 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: cluster 2024-02-19T21:57:04.801959+0000 mon.smithi044 (mon.0) 434 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:04.802123+0000 mon.smithi044 (mon.0) 435 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:04.802481+0000 mon.smithi044 (mon.0) 436 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:04.802704+0000 mon.smithi044 (mon.0) 437 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:04.803303+0000 mon.smithi044 (mon.0) 438 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:05.580143+0000 mon.smithi104 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.104:6824/939721564,v1:172.21.15.104:6825/939721564]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T21:57:06.110 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:05 smithi044 bash[16231]: audit 2024-02-19T21:57:05.582448+0000 mon.smithi044 (mon.0) 439 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-19T21:57:07.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.862169+0000 mon.smithi104 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.104:6824/939721564,v1:172.21.15.104:6825/939721564]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.862430+0000 mon.smithi044 (mon.0) 440 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: cluster 2024-02-19T21:57:05.862585+0000 mon.smithi044 (mon.0) 441 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.862841+0000 mon.smithi044 (mon.0) 442 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.863654+0000 mon.smithi044 (mon.0) 443 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.864101+0000 mon.smithi044 (mon.0) 444 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.864774+0000 mon.smithi044 (mon.0) 445 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:05.865405+0000 mon.smithi044 (mon.0) 446 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: audit 2024-02-19T21:57:06.314259+0000 mon.smithi044 (mon.0) 447 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-19T21:57:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:06 smithi104 bash[21066]: cluster 2024-02-19T21:57:06.419105+0000 mgr.smithi044.ikbsam (mgr.14184) 65 : cluster [DBG] pgmap v64: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.862169+0000 mon.smithi104 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.104:6824/939721564,v1:172.21.15.104:6825/939721564]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.862430+0000 mon.smithi044 (mon.0) 440 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: cluster 2024-02-19T21:57:05.862585+0000 mon.smithi044 (mon.0) 441 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.862841+0000 mon.smithi044 (mon.0) 442 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.863654+0000 mon.smithi044 (mon.0) 443 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.864101+0000 mon.smithi044 (mon.0) 444 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.864774+0000 mon.smithi044 (mon.0) 445 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:05.865405+0000 mon.smithi044 (mon.0) 446 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]: dispatch 2024-02-19T21:57:07.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: audit 2024-02-19T21:57:06.314259+0000 mon.smithi044 (mon.0) 447 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-19T21:57:07.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:06 smithi044 bash[16231]: cluster 2024-02-19T21:57:06.419105+0000 mgr.smithi044.ikbsam (mgr.14184) 65 : cluster [DBG] pgmap v64: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-19T21:57:07.595 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:57:08.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.867266+0000 mon.smithi044 (mon.0) 448 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.867447+0000 mon.smithi044 (mon.0) 449 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: cluster 2024-02-19T21:57:06.867549+0000 mon.smithi044 (mon.0) 450 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.868255+0000 mon.smithi044 (mon.0) 451 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.868817+0000 mon.smithi044 (mon.0) 452 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.869236+0000 mon.smithi044 (mon.0) 453 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.869794+0000 mon.smithi044 (mon.0) 454 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.870138+0000 mon.smithi044 (mon.0) 455 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:06.878167+0000 mon.smithi044 (mon.0) 456 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:07 smithi104 bash[21066]: audit 2024-02-19T21:57:07.596123+0000 mon.smithi044 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.44:0/1103685889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:08.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.867266+0000 mon.smithi044 (mon.0) 448 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi104", "root=default"]}]': finished 2024-02-19T21:57:08.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.867447+0000 mon.smithi044 (mon.0) 449 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-19T21:57:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: cluster 2024-02-19T21:57:06.867549+0000 mon.smithi044 (mon.0) 450 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2024-02-19T21:57:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.868255+0000 mon.smithi044 (mon.0) 451 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.868817+0000 mon.smithi044 (mon.0) 452 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.869236+0000 mon.smithi044 (mon.0) 453 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.869794+0000 mon.smithi044 (mon.0) 454 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.870138+0000 mon.smithi044 (mon.0) 455 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:08.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:06.878167+0000 mon.smithi044 (mon.0) 456 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:08.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:07 smithi044 bash[16231]: audit 2024-02-19T21:57:07.596123+0000 mon.smithi044 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.44:0/1103685889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:08.777 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":28,"num_osds":8,"num_up_osds":4,"osd_up_since":1708379823,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:06.614549+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:06.614654+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:07.870490+0000 mon.smithi044 (mon.0) 458 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:07.870714+0000 mon.smithi044 (mon.0) 459 : cluster [INF] osd.6 [v2:172.21.15.104:6824/939721564,v1:172.21.15.104:6825/939721564] boot 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:07.870967+0000 mon.smithi044 (mon.0) 460 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:07.871371+0000 mon.smithi044 (mon.0) 461 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:07.872579+0000 mon.smithi044 (mon.0) 462 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:07.878385+0000 mon.smithi044 (mon.0) 463 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:07.879287+0000 mon.smithi044 (mon.0) 464 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:07.880244+0000 mon.smithi044 (mon.0) 465 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:08.400996+0000 mon.smithi044 (mon.0) 466 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:09.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:08.419645+0000 mgr.smithi044.ikbsam (mgr.14184) 66 : cluster [DBG] pgmap v67: 1 pgs: 1 creating+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T21:57:09.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:08.871100+0000 mon.smithi044 (mon.0) 467 : cluster [INF] osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957] boot 2024-02-19T21:57:09.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: cluster 2024-02-19T21:57:08.871145+0000 mon.smithi044 (mon.0) 468 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-02-19T21:57:09.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:08.871292+0000 mon.smithi044 (mon.0) 469 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:09.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:08.871687+0000 mon.smithi044 (mon.0) 470 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:09.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:08 smithi044 bash[16231]: audit 2024-02-19T21:57:08.871988+0000 mon.smithi044 (mon.0) 471 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:09.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:06.614549+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:06.614654+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:07.870490+0000 mon.smithi044 (mon.0) 458 : audit [INF] from='osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:07.870714+0000 mon.smithi044 (mon.0) 459 : cluster [INF] osd.6 [v2:172.21.15.104:6824/939721564,v1:172.21.15.104:6825/939721564] boot 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:07.870967+0000 mon.smithi044 (mon.0) 460 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:07.871371+0000 mon.smithi044 (mon.0) 461 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:07.872579+0000 mon.smithi044 (mon.0) 462 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:07.878385+0000 mon.smithi044 (mon.0) 463 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:07.879287+0000 mon.smithi044 (mon.0) 464 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:07.880244+0000 mon.smithi044 (mon.0) 465 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:08.400996+0000 mon.smithi044 (mon.0) 466 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:08.419645+0000 mgr.smithi044.ikbsam (mgr.14184) 66 : cluster [DBG] pgmap v67: 1 pgs: 1 creating+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-19T21:57:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:08.871100+0000 mon.smithi044 (mon.0) 467 : cluster [INF] osd.3 [v2:172.21.15.44:6810/3247063957,v1:172.21.15.44:6811/3247063957] boot 2024-02-19T21:57:09.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: cluster 2024-02-19T21:57:08.871145+0000 mon.smithi044 (mon.0) 468 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-02-19T21:57:09.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:08.871292+0000 mon.smithi044 (mon.0) 469 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-19T21:57:09.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:08.871687+0000 mon.smithi044 (mon.0) 470 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:09.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:08 smithi104 bash[21066]: audit 2024-02-19T21:57:08.871988+0000 mon.smithi044 (mon.0) 471 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:09.778 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:57:10.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:09 smithi044 bash[16231]: cluster 2024-02-19T21:57:07.345423+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:10.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:09 smithi044 bash[16231]: cluster 2024-02-19T21:57:07.345491+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:10.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:09 smithi044 bash[16231]: cluster 2024-02-19T21:57:09.871554+0000 mon.smithi044 (mon.0) 472 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-02-19T21:57:10.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:09 smithi044 bash[16231]: audit 2024-02-19T21:57:09.871813+0000 mon.smithi044 (mon.0) 473 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:10.147 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:09 smithi044 bash[16231]: audit 2024-02-19T21:57:09.872664+0000 mon.smithi044 (mon.0) 474 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:10.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:09 smithi104 bash[21066]: cluster 2024-02-19T21:57:07.345423+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:10.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:09 smithi104 bash[21066]: cluster 2024-02-19T21:57:07.345491+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:10.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:09 smithi104 bash[21066]: cluster 2024-02-19T21:57:09.871554+0000 mon.smithi044 (mon.0) 472 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-02-19T21:57:10.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:09 smithi104 bash[21066]: audit 2024-02-19T21:57:09.871813+0000 mon.smithi044 (mon.0) 473 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:10.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:09 smithi104 bash[21066]: audit 2024-02-19T21:57:09.872664+0000 mon.smithi044 (mon.0) 474 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:11.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:10 smithi044 bash[16231]: cluster 2024-02-19T21:57:10.420216+0000 mgr.smithi044.ikbsam (mgr.14184) 67 : cluster [DBG] pgmap v70: 1 pgs: 1 creating+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:11.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:10 smithi044 bash[16231]: cluster 2024-02-19T21:57:10.874285+0000 mon.smithi044 (mon.0) 475 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-19T21:57:11.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:10 smithi044 bash[16231]: audit 2024-02-19T21:57:10.874612+0000 mon.smithi044 (mon.0) 476 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:11.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:10 smithi044 bash[16231]: audit 2024-02-19T21:57:10.875165+0000 mon.smithi044 (mon.0) 477 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:11.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:10 smithi104 bash[21066]: cluster 2024-02-19T21:57:10.420216+0000 mgr.smithi044.ikbsam (mgr.14184) 67 : cluster [DBG] pgmap v70: 1 pgs: 1 creating+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:11.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:10 smithi104 bash[21066]: cluster 2024-02-19T21:57:10.874285+0000 mon.smithi044 (mon.0) 475 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-19T21:57:11.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:10 smithi104 bash[21066]: audit 2024-02-19T21:57:10.874612+0000 mon.smithi044 (mon.0) 476 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:11.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:10 smithi104 bash[21066]: audit 2024-02-19T21:57:10.875165+0000 mon.smithi044 (mon.0) 477 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:12.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:11 smithi044 bash[16231]: audit 2024-02-19T21:57:10.907058+0000 mon.smithi044 (mon.0) 478 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:12.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:11 smithi104 bash[21066]: audit 2024-02-19T21:57:10.907058+0000 mon.smithi044 (mon.0) 478 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:13.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:12 smithi104 bash[21066]: cluster 2024-02-19T21:57:12.421109+0000 mgr.smithi044.ikbsam (mgr.14184) 68 : cluster [DBG] pgmap v72: 1 pgs: 1 creating+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:13.180 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:12 smithi044 bash[16231]: cluster 2024-02-19T21:57:12.421109+0000 mgr.smithi044.ikbsam (mgr.14184) 68 : cluster [DBG] pgmap v72: 1 pgs: 1 creating+peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:13.641 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:57:14.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:13 smithi104 bash[21066]: audit 2024-02-19T21:57:13.140772+0000 mon.smithi044 (mon.0) 479 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-19T21:57:14.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:13 smithi104 bash[21066]: audit 2024-02-19T21:57:13.642408+0000 mon.smithi044 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.44:0/2150619278' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:14.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:13 smithi044 bash[16231]: audit 2024-02-19T21:57:13.140772+0000 mon.smithi044 (mon.0) 479 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-19T21:57:14.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:13 smithi044 bash[16231]: audit 2024-02-19T21:57:13.642408+0000 mon.smithi044 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.44:0/2150619278' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:14.557 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":32,"num_osds":8,"num_up_osds":6,"osd_up_since":1708379828,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:57:15.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:14 smithi104 bash[21066]: audit 2024-02-19T21:57:13.929847+0000 mon.smithi044 (mon.0) 481 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-19T21:57:15.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:14 smithi104 bash[21066]: cluster 2024-02-19T21:57:13.929923+0000 mon.smithi044 (mon.0) 482 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-19T21:57:15.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:14 smithi104 bash[21066]: audit 2024-02-19T21:57:13.930096+0000 mon.smithi044 (mon.0) 483 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:15.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:14 smithi104 bash[21066]: audit 2024-02-19T21:57:13.930433+0000 mon.smithi044 (mon.0) 484 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:15.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:14 smithi104 bash[21066]: audit 2024-02-19T21:57:13.930732+0000 mon.smithi044 (mon.0) 485 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:15.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:14 smithi104 bash[21066]: cluster 2024-02-19T21:57:14.421661+0000 mgr.smithi044.ikbsam (mgr.14184) 69 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:15.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:14 smithi044 bash[16231]: audit 2024-02-19T21:57:13.929847+0000 mon.smithi044 (mon.0) 481 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-19T21:57:15.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:14 smithi044 bash[16231]: cluster 2024-02-19T21:57:13.929923+0000 mon.smithi044 (mon.0) 482 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-19T21:57:15.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:14 smithi044 bash[16231]: audit 2024-02-19T21:57:13.930096+0000 mon.smithi044 (mon.0) 483 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:15.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:14 smithi044 bash[16231]: audit 2024-02-19T21:57:13.930433+0000 mon.smithi044 (mon.0) 484 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:15.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:14 smithi044 bash[16231]: audit 2024-02-19T21:57:13.930732+0000 mon.smithi044 (mon.0) 485 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:15.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:14 smithi044 bash[16231]: cluster 2024-02-19T21:57:14.421661+0000 mgr.smithi044.ikbsam (mgr.14184) 69 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:15.558 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:57:16.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:15 smithi104 bash[21066]: audit 2024-02-19T21:57:14.932313+0000 mon.smithi044 (mon.0) 486 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:16.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:15 smithi104 bash[21066]: cluster 2024-02-19T21:57:14.932477+0000 mon.smithi044 (mon.0) 487 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-19T21:57:16.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:15 smithi104 bash[21066]: audit 2024-02-19T21:57:14.933565+0000 mon.smithi044 (mon.0) 488 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:16.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:15 smithi104 bash[21066]: audit 2024-02-19T21:57:14.934594+0000 mon.smithi044 (mon.0) 489 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:16.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:15 smithi104 bash[21066]: audit 2024-02-19T21:57:14.941698+0000 mon.smithi044 (mon.0) 490 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:16.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:15 smithi044 bash[16231]: audit 2024-02-19T21:57:14.932313+0000 mon.smithi044 (mon.0) 486 : audit [INF] from='osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:16.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:15 smithi044 bash[16231]: cluster 2024-02-19T21:57:14.932477+0000 mon.smithi044 (mon.0) 487 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-19T21:57:16.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:15 smithi044 bash[16231]: audit 2024-02-19T21:57:14.933565+0000 mon.smithi044 (mon.0) 488 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:16.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:15 smithi044 bash[16231]: audit 2024-02-19T21:57:14.934594+0000 mon.smithi044 (mon.0) 489 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:16.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:15 smithi044 bash[16231]: audit 2024-02-19T21:57:14.941698+0000 mon.smithi044 (mon.0) 490 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:17.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: cluster 2024-02-19T21:57:14.175083+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:17.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: cluster 2024-02-19T21:57:14.175182+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:17.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: audit 2024-02-19T21:57:15.946226+0000 mon.smithi044 (mon.0) 491 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:17.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: cluster 2024-02-19T21:57:15.952879+0000 mon.smithi044 (mon.0) 492 : cluster [INF] osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939] boot 2024-02-19T21:57:17.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: cluster 2024-02-19T21:57:15.952953+0000 mon.smithi044 (mon.0) 493 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-02-19T21:57:17.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: audit 2024-02-19T21:57:15.953278+0000 mon.smithi044 (mon.0) 494 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:17.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: audit 2024-02-19T21:57:15.953563+0000 mon.smithi044 (mon.0) 495 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:17.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:16 smithi044 bash[16231]: cluster 2024-02-19T21:57:16.422235+0000 mgr.smithi044.ikbsam (mgr.14184) 70 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:17.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: cluster 2024-02-19T21:57:14.175083+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:17.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: cluster 2024-02-19T21:57:14.175182+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:17.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: audit 2024-02-19T21:57:15.946226+0000 mon.smithi044 (mon.0) 491 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:17.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: cluster 2024-02-19T21:57:15.952879+0000 mon.smithi044 (mon.0) 492 : cluster [INF] osd.5 [v2:172.21.15.44:6818/330799939,v1:172.21.15.44:6819/330799939] boot 2024-02-19T21:57:17.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: cluster 2024-02-19T21:57:15.952953+0000 mon.smithi044 (mon.0) 493 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-02-19T21:57:17.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: audit 2024-02-19T21:57:15.953278+0000 mon.smithi044 (mon.0) 494 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-19T21:57:17.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: audit 2024-02-19T21:57:15.953563+0000 mon.smithi044 (mon.0) 495 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:17.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:16 smithi104 bash[21066]: cluster 2024-02-19T21:57:16.422235+0000 mgr.smithi044.ikbsam (mgr.14184) 70 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-19T21:57:18.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:17 smithi104 bash[21066]: cluster 2024-02-19T21:57:16.960137+0000 mon.smithi044 (mon.0) 496 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-19T21:57:18.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:17 smithi104 bash[21066]: audit 2024-02-19T21:57:16.960288+0000 mon.smithi044 (mon.0) 497 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:18.384 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:17 smithi044 bash[16231]: cluster 2024-02-19T21:57:16.960137+0000 mon.smithi044 (mon.0) 496 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-19T21:57:18.385 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:17 smithi044 bash[16231]: audit 2024-02-19T21:57:16.960288+0000 mon.smithi044 (mon.0) 497 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:19.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:18 smithi104 bash[21066]: cluster 2024-02-19T21:57:18.422813+0000 mgr.smithi044.ikbsam (mgr.14184) 71 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T21:57:19.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:18 smithi104 bash[21066]: audit 2024-02-19T21:57:18.692279+0000 mon.smithi044 (mon.0) 498 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-19T21:57:19.430 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:18 smithi044 bash[16231]: cluster 2024-02-19T21:57:18.422813+0000 mgr.smithi044.ikbsam (mgr.14184) 71 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T21:57:19.430 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:18 smithi044 bash[16231]: audit 2024-02-19T21:57:18.692279+0000 mon.smithi044 (mon.0) 498 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-19T21:57:20.108 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:57:20.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:19 smithi104 bash[21066]: audit 2024-02-19T21:57:18.973359+0000 mon.smithi044 (mon.0) 499 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-19T21:57:20.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:19 smithi104 bash[21066]: cluster 2024-02-19T21:57:18.973498+0000 mon.smithi044 (mon.0) 500 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-19T21:57:20.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:19 smithi104 bash[21066]: audit 2024-02-19T21:57:18.973772+0000 mon.smithi044 (mon.0) 501 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:20.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:19 smithi104 bash[21066]: audit 2024-02-19T21:57:18.974214+0000 mon.smithi044 (mon.0) 502 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:20.401 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:19 smithi044 bash[16231]: audit 2024-02-19T21:57:18.973359+0000 mon.smithi044 (mon.0) 499 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-19T21:57:20.401 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:19 smithi044 bash[16231]: cluster 2024-02-19T21:57:18.973498+0000 mon.smithi044 (mon.0) 500 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-19T21:57:20.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:19 smithi044 bash[16231]: audit 2024-02-19T21:57:18.973772+0000 mon.smithi044 (mon.0) 501 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:20.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:19 smithi044 bash[16231]: audit 2024-02-19T21:57:18.974214+0000 mon.smithi044 (mon.0) 502 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]: dispatch 2024-02-19T21:57:20.927 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1708379835,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:57:21.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:20 smithi104 bash[21066]: audit 2024-02-19T21:57:19.975228+0000 mon.smithi044 (mon.0) 503 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:21.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:20 smithi104 bash[21066]: cluster 2024-02-19T21:57:19.975326+0000 mon.smithi044 (mon.0) 504 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-19T21:57:21.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:20 smithi104 bash[21066]: audit 2024-02-19T21:57:19.975892+0000 mon.smithi044 (mon.0) 505 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:21.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:20 smithi104 bash[21066]: audit 2024-02-19T21:57:19.986331+0000 mon.smithi044 (mon.0) 506 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:21.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:20 smithi104 bash[21066]: audit 2024-02-19T21:57:20.109158+0000 mon.smithi044 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.44:0/2405546620' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:21.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:20 smithi104 bash[21066]: cluster 2024-02-19T21:57:20.423340+0000 mgr.smithi044.ikbsam (mgr.14184) 72 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T21:57:21.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:20 smithi044 bash[16231]: audit 2024-02-19T21:57:19.975228+0000 mon.smithi044 (mon.0) 503 : audit [INF] from='osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi044", "root=default"]}]': finished 2024-02-19T21:57:21.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:20 smithi044 bash[16231]: cluster 2024-02-19T21:57:19.975326+0000 mon.smithi044 (mon.0) 504 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-19T21:57:21.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:20 smithi044 bash[16231]: audit 2024-02-19T21:57:19.975892+0000 mon.smithi044 (mon.0) 505 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:21.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:20 smithi044 bash[16231]: audit 2024-02-19T21:57:19.986331+0000 mon.smithi044 (mon.0) 506 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:21.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:20 smithi044 bash[16231]: audit 2024-02-19T21:57:20.109158+0000 mon.smithi044 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.44:0/2405546620' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:21.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:20 smithi044 bash[16231]: cluster 2024-02-19T21:57:20.423340+0000 mgr.smithi044.ikbsam (mgr.14184) 72 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-19T21:57:21.928 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd stat -f json 2024-02-19T21:57:22.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:22 smithi104 bash[21066]: cluster 2024-02-19T21:57:19.729715+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:22.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:22 smithi104 bash[21066]: cluster 2024-02-19T21:57:19.729809+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:22.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:22 smithi104 bash[21066]: audit 2024-02-19T21:57:20.981280+0000 mon.smithi044 (mon.0) 508 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:22.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:22 smithi104 bash[21066]: cluster 2024-02-19T21:57:20.988788+0000 mon.smithi044 (mon.0) 509 : cluster [INF] osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478] boot 2024-02-19T21:57:22.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:22 smithi104 bash[21066]: cluster 2024-02-19T21:57:20.988850+0000 mon.smithi044 (mon.0) 510 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-02-19T21:57:22.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:22 smithi104 bash[21066]: audit 2024-02-19T21:57:20.989377+0000 mon.smithi044 (mon.0) 511 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:22.401 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:22 smithi044 bash[16231]: cluster 2024-02-19T21:57:19.729715+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-19T21:57:22.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:22 smithi044 bash[16231]: cluster 2024-02-19T21:57:19.729809+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-19T21:57:22.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:22 smithi044 bash[16231]: audit 2024-02-19T21:57:20.981280+0000 mon.smithi044 (mon.0) 508 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:22.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:22 smithi044 bash[16231]: cluster 2024-02-19T21:57:20.988788+0000 mon.smithi044 (mon.0) 509 : cluster [INF] osd.7 [v2:172.21.15.44:6826/3785437478,v1:172.21.15.44:6827/3785437478] boot 2024-02-19T21:57:22.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:22 smithi044 bash[16231]: cluster 2024-02-19T21:57:20.988850+0000 mon.smithi044 (mon.0) 510 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-02-19T21:57:22.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:22 smithi044 bash[16231]: audit 2024-02-19T21:57:20.989377+0000 mon.smithi044 (mon.0) 511 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-19T21:57:23.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: cluster 2024-02-19T21:57:21.998887+0000 mon.smithi044 (mon.0) 512 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-19T21:57:23.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: audit 2024-02-19T21:57:22.178884+0000 mon.smithi044 (mon.0) 513 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:23.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: cephadm 2024-02-19T21:57:22.180349+0000 mgr.smithi044.ikbsam (mgr.14184) 73 : cephadm [INF] Reconfiguring mon.smithi044 (unknown last config time)... 2024-02-19T21:57:23.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: audit 2024-02-19T21:57:22.180788+0000 mon.smithi044 (mon.0) 514 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T21:57:23.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: audit 2024-02-19T21:57:22.182033+0000 mon.smithi044 (mon.0) 515 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T21:57:23.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: audit 2024-02-19T21:57:22.183133+0000 mon.smithi044 (mon.0) 516 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:23.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: cephadm 2024-02-19T21:57:22.184162+0000 mgr.smithi044.ikbsam (mgr.14184) 74 : cephadm [INF] Reconfiguring daemon mon.smithi044 on smithi044 2024-02-19T21:57:23.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:23 smithi104 bash[21066]: cluster 2024-02-19T21:57:22.423911+0000 mgr.smithi044.ikbsam (mgr.14184) 75 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:23.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: cluster 2024-02-19T21:57:21.998887+0000 mon.smithi044 (mon.0) 512 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-19T21:57:23.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: audit 2024-02-19T21:57:22.178884+0000 mon.smithi044 (mon.0) 513 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:23.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: cephadm 2024-02-19T21:57:22.180349+0000 mgr.smithi044.ikbsam (mgr.14184) 73 : cephadm [INF] Reconfiguring mon.smithi044 (unknown last config time)... 2024-02-19T21:57:23.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: audit 2024-02-19T21:57:22.180788+0000 mon.smithi044 (mon.0) 514 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T21:57:23.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: audit 2024-02-19T21:57:22.182033+0000 mon.smithi044 (mon.0) 515 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T21:57:23.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: audit 2024-02-19T21:57:22.183133+0000 mon.smithi044 (mon.0) 516 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:23.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: cephadm 2024-02-19T21:57:22.184162+0000 mgr.smithi044.ikbsam (mgr.14184) 74 : cephadm [INF] Reconfiguring daemon mon.smithi044 on smithi044 2024-02-19T21:57:23.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:23 smithi044 bash[16231]: cluster 2024-02-19T21:57:22.423911+0000 mgr.smithi044.ikbsam (mgr.14184) 75 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:24.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:24 smithi104 bash[21066]: cluster 2024-02-19T21:57:23.009245+0000 mon.smithi044 (mon.0) 517 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-19T21:57:24.401 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:24 smithi044 bash[16231]: cluster 2024-02-19T21:57:23.009245+0000 mon.smithi044 (mon.0) 517 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-19T21:57:26.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: cluster 2024-02-19T21:57:24.424523+0000 mgr.smithi044.ikbsam (mgr.14184) 76 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:26.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: audit 2024-02-19T21:57:24.718935+0000 mon.smithi044 (mon.0) 518 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:26.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: cephadm 2024-02-19T21:57:24.720692+0000 mgr.smithi044.ikbsam (mgr.14184) 77 : cephadm [INF] Reconfiguring mgr.smithi044.ikbsam (unknown last config time)... 2024-02-19T21:57:26.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: audit 2024-02-19T21:57:24.721276+0000 mon.smithi044 (mon.0) 519 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi044.ikbsam", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T21:57:26.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: audit 2024-02-19T21:57:24.722574+0000 mon.smithi044 (mon.0) 520 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T21:57:26.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: audit 2024-02-19T21:57:24.725651+0000 mon.smithi044 (mon.0) 521 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:26.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:25 smithi044 bash[16231]: cephadm 2024-02-19T21:57:24.726767+0000 mgr.smithi044.ikbsam (mgr.14184) 78 : cephadm [INF] Reconfiguring daemon mgr.smithi044.ikbsam on smithi044 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: cluster 2024-02-19T21:57:24.424523+0000 mgr.smithi044.ikbsam (mgr.14184) 76 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: audit 2024-02-19T21:57:24.718935+0000 mon.smithi044 (mon.0) 518 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: cephadm 2024-02-19T21:57:24.720692+0000 mgr.smithi044.ikbsam (mgr.14184) 77 : cephadm [INF] Reconfiguring mgr.smithi044.ikbsam (unknown last config time)... 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: audit 2024-02-19T21:57:24.721276+0000 mon.smithi044 (mon.0) 519 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi044.ikbsam", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: audit 2024-02-19T21:57:24.722574+0000 mon.smithi044 (mon.0) 520 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: audit 2024-02-19T21:57:24.725651+0000 mon.smithi044 (mon.0) 521 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:26.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:25 smithi104 bash[21066]: cephadm 2024-02-19T21:57:24.726767+0000 mgr.smithi044.ikbsam (mgr.14184) 78 : cephadm [INF] Reconfiguring daemon mgr.smithi044.ikbsam on smithi044 2024-02-19T21:57:26.130 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:57:26.966 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":41,"num_osds":8,"num_up_osds":8,"osd_up_since":1708379840,"num_in_osds":8,"osd_in_since":1708379791,"num_remapped_pgs":0} 2024-02-19T21:57:26.967 INFO:tasks.cephadm:Setting up client nodes... 2024-02-19T21:57:26.967 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-19T21:57:26.975 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:26 smithi044 bash[16231]: audit 2024-02-19T21:57:26.130739+0000 mon.smithi044 (mon.0) 522 : audit [DBG] from='client.? 172.21.15.44:0/2488628483' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:27.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:26 smithi104 bash[21066]: audit 2024-02-19T21:57:26.130739+0000 mon.smithi044 (mon.0) 522 : audit [DBG] from='client.? 172.21.15.44:0/2488628483' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-19T21:57:28.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:27 smithi104 bash[21066]: cluster 2024-02-19T21:57:26.425194+0000 mgr.smithi044.ikbsam (mgr.14184) 79 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:28.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:27 smithi104 bash[21066]: audit 2024-02-19T21:57:26.964628+0000 mon.smithi044 (mon.0) 523 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:28.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:27 smithi044 bash[16231]: cluster 2024-02-19T21:57:26.425194+0000 mgr.smithi044.ikbsam (mgr.14184) 79 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:28.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:27 smithi044 bash[16231]: audit 2024-02-19T21:57:26.964628+0000 mon.smithi044 (mon.0) 523 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:28.834 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:28 smithi044 bash[16231]: cephadm 2024-02-19T21:57:26.966171+0000 mgr.smithi044.ikbsam (mgr.14184) 80 : cephadm [INF] Reconfiguring alertmanager.smithi044 (dependencies changed)... 2024-02-19T21:57:28.834 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:28 smithi044 bash[16231]: cephadm 2024-02-19T21:57:26.974396+0000 mgr.smithi044.ikbsam (mgr.14184) 81 : cephadm [INF] Reconfiguring daemon alertmanager.smithi044 on smithi044 2024-02-19T21:57:29.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:28 smithi104 bash[21066]: cephadm 2024-02-19T21:57:26.966171+0000 mgr.smithi044.ikbsam (mgr.14184) 80 : cephadm [INF] Reconfiguring alertmanager.smithi044 (dependencies changed)... 2024-02-19T21:57:29.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:28 smithi104 bash[21066]: cephadm 2024-02-19T21:57:26.974396+0000 mgr.smithi044.ikbsam (mgr.14184) 81 : cephadm [INF] Reconfiguring daemon alertmanager.smithi044 on smithi044 2024-02-19T21:57:30.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:29 smithi104 bash[21066]: cluster 2024-02-19T21:57:28.425791+0000 mgr.smithi044.ikbsam (mgr.14184) 82 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:30.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:29 smithi044 bash[16231]: cluster 2024-02-19T21:57:28.425791+0000 mgr.smithi044.ikbsam (mgr.14184) 82 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:31.238 INFO:teuthology.orchestra.run.smithi044.stdout:[client.0] 2024-02-19T21:57:31.238 INFO:teuthology.orchestra.run.smithi044.stdout: key = AQDLztNlrrXgDRAA/CUwQtxAxB4k/7pviw2dHQ== 2024-02-19T21:57:31.839 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:31 smithi044 bash[16231]: cluster 2024-02-19T21:57:30.426288+0000 mgr.smithi044.ikbsam (mgr.14184) 83 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:31.839 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:31 smithi044 bash[16231]: audit 2024-02-19T21:57:31.232654+0000 mon.smithi044 (mon.0) 524 : audit [INF] from='client.? 172.21.15.44:0/3479296303' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T21:57:31.839 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:31 smithi044 bash[16231]: audit 2024-02-19T21:57:31.239274+0000 mon.smithi044 (mon.0) 525 : audit [INF] from='client.? 172.21.15.44:0/3479296303' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-19T21:57:32.018 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T21:57:32.018 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-02-19T21:57:32.018 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-02-19T21:57:32.086 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-19T21:57:32.097 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:31 smithi104 bash[21066]: cluster 2024-02-19T21:57:30.426288+0000 mgr.smithi044.ikbsam (mgr.14184) 83 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:32.098 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:31 smithi104 bash[21066]: audit 2024-02-19T21:57:31.232654+0000 mon.smithi044 (mon.0) 524 : audit [INF] from='client.? 172.21.15.44:0/3479296303' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T21:57:32.098 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:31 smithi104 bash[21066]: audit 2024-02-19T21:57:31.239274+0000 mon.smithi044 (mon.0) 525 : audit [INF] from='client.? 172.21.15.44:0/3479296303' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-19T21:57:34.019 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:33 smithi044 bash[16231]: cluster 2024-02-19T21:57:32.426893+0000 mgr.smithi044.ikbsam (mgr.14184) 84 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:34.020 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:33 smithi044 bash[16231]: audit 2024-02-19T21:57:32.678478+0000 mon.smithi044 (mon.0) 526 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:34.020 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:33 smithi044 bash[16231]: cephadm 2024-02-19T21:57:32.679523+0000 mgr.smithi044.ikbsam (mgr.14184) 85 : cephadm [INF] Reconfiguring crash.smithi044 (monmap changed)... 2024-02-19T21:57:34.020 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:33 smithi044 bash[16231]: audit 2024-02-19T21:57:32.680029+0000 mon.smithi044 (mon.0) 527 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi044", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T21:57:34.020 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:33 smithi044 bash[16231]: audit 2024-02-19T21:57:32.681644+0000 mon.smithi044 (mon.0) 528 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:34.020 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:33 smithi044 bash[16231]: cephadm 2024-02-19T21:57:32.682922+0000 mgr.smithi044.ikbsam (mgr.14184) 86 : cephadm [INF] Reconfiguring daemon crash.smithi044 on smithi044 2024-02-19T21:57:34.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:33 smithi104 bash[21066]: cluster 2024-02-19T21:57:32.426893+0000 mgr.smithi044.ikbsam (mgr.14184) 84 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:34.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:33 smithi104 bash[21066]: audit 2024-02-19T21:57:32.678478+0000 mon.smithi044 (mon.0) 526 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:34.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:33 smithi104 bash[21066]: cephadm 2024-02-19T21:57:32.679523+0000 mgr.smithi044.ikbsam (mgr.14184) 85 : cephadm [INF] Reconfiguring crash.smithi044 (monmap changed)... 2024-02-19T21:57:34.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:33 smithi104 bash[21066]: audit 2024-02-19T21:57:32.680029+0000 mon.smithi044 (mon.0) 527 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi044", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T21:57:34.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:33 smithi104 bash[21066]: audit 2024-02-19T21:57:32.681644+0000 mon.smithi044 (mon.0) 528 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:34.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:33 smithi104 bash[21066]: cephadm 2024-02-19T21:57:32.682922+0000 mgr.smithi044.ikbsam (mgr.14184) 86 : cephadm [INF] Reconfiguring daemon crash.smithi044 on smithi044 2024-02-19T21:57:35.270 INFO:teuthology.orchestra.run.smithi104.stdout:[client.1] 2024-02-19T21:57:35.270 INFO:teuthology.orchestra.run.smithi104.stdout: key = AQDPztNlhpPMDxAAvl1v9H/PXyIEPNU+lZ6jQg== 2024-02-19T21:57:35.877 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T21:57:35.877 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-02-19T21:57:35.877 DEBUG:teuthology.orchestra.run.smithi104:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-02-19T21:57:35.940 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:35 smithi104 bash[21066]: cluster 2024-02-19T21:57:34.427451+0000 mgr.smithi044.ikbsam (mgr.14184) 87 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:35.940 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:35 smithi104 bash[21066]: audit 2024-02-19T21:57:34.957336+0000 mon.smithi044 (mon.0) 529 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:35.940 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:35 smithi104 bash[21066]: audit 2024-02-19T21:57:35.262672+0000 mon.smithi104 (mon.1) 18 : audit [INF] from='client.? 172.21.15.104:0/1563101172' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T21:57:35.940 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:35 smithi104 bash[21066]: audit 2024-02-19T21:57:35.264527+0000 mon.smithi044 (mon.0) 530 : 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-02-19T21:57:35.940 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:35 smithi104 bash[21066]: audit 2024-02-19T21:57:35.270245+0000 mon.smithi044 (mon.0) 531 : 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-02-19T21:57:35.943 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd dump --format=json 2024-02-19T21:57:35.955 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:35 smithi044 bash[16231]: cluster 2024-02-19T21:57:34.427451+0000 mgr.smithi044.ikbsam (mgr.14184) 87 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:35.955 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:35 smithi044 bash[16231]: audit 2024-02-19T21:57:34.957336+0000 mon.smithi044 (mon.0) 529 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:35.955 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:35 smithi044 bash[16231]: audit 2024-02-19T21:57:35.262672+0000 mon.smithi104 (mon.1) 18 : audit [INF] from='client.? 172.21.15.104:0/1563101172' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-19T21:57:35.955 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:35 smithi044 bash[16231]: audit 2024-02-19T21:57:35.264527+0000 mon.smithi044 (mon.0) 530 : 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-02-19T21:57:35.956 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:35 smithi044 bash[16231]: audit 2024-02-19T21:57:35.270245+0000 mon.smithi044 (mon.0) 531 : 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-02-19T21:57:37.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:36 smithi104 bash[21066]: cephadm 2024-02-19T21:57:34.958782+0000 mgr.smithi044.ikbsam (mgr.14184) 88 : cephadm [INF] Reconfiguring grafana.smithi044 (dependencies changed)... 2024-02-19T21:57:37.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:36 smithi104 bash[21066]: cephadm 2024-02-19T21:57:35.006815+0000 mgr.smithi044.ikbsam (mgr.14184) 89 : cephadm [INF] Reconfiguring daemon grafana.smithi044 on smithi044 2024-02-19T21:57:37.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:36 smithi044 bash[16231]: cephadm 2024-02-19T21:57:34.958782+0000 mgr.smithi044.ikbsam (mgr.14184) 88 : cephadm [INF] Reconfiguring grafana.smithi044 (dependencies changed)... 2024-02-19T21:57:37.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:36 smithi044 bash[16231]: cephadm 2024-02-19T21:57:35.006815+0000 mgr.smithi044.ikbsam (mgr.14184) 89 : cephadm [INF] Reconfiguring daemon grafana.smithi044 on smithi044 2024-02-19T21:57:38.011 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:37 smithi044 bash[16231]: cluster 2024-02-19T21:57:36.427924+0000 mgr.smithi044.ikbsam (mgr.14184) 90 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:38.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:37 smithi104 bash[21066]: cluster 2024-02-19T21:57:36.427924+0000 mgr.smithi044.ikbsam (mgr.14184) 90 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:39.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:39 smithi044 bash[16231]: cluster 2024-02-19T21:57:38.428423+0000 mgr.smithi044.ikbsam (mgr.14184) 91 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:39.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:39 smithi044 bash[16231]: audit 2024-02-19T21:57:39.584713+0000 mon.smithi044 (mon.0) 532 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:39.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:39 smithi044 bash[16231]: audit 2024-02-19T21:57:39.586879+0000 mon.smithi044 (mon.0) 533 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi104", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T21:57:39.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:39 smithi044 bash[16231]: audit 2024-02-19T21:57:39.588656+0000 mon.smithi044 (mon.0) 534 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:40.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:39 smithi104 bash[21066]: cluster 2024-02-19T21:57:38.428423+0000 mgr.smithi044.ikbsam (mgr.14184) 91 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:40.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:39 smithi104 bash[21066]: audit 2024-02-19T21:57:39.584713+0000 mon.smithi044 (mon.0) 532 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:40.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:39 smithi104 bash[21066]: audit 2024-02-19T21:57:39.586879+0000 mon.smithi044 (mon.0) 533 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi104", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-19T21:57:40.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:39 smithi104 bash[21066]: audit 2024-02-19T21:57:39.588656+0000 mon.smithi044 (mon.0) 534 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:40.790 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:57:40.824 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:40 smithi044 bash[16231]: cephadm 2024-02-19T21:57:39.586423+0000 mgr.smithi044.ikbsam (mgr.14184) 92 : cephadm [INF] Reconfiguring crash.smithi104 (monmap changed)... 2024-02-19T21:57:40.824 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:40 smithi044 bash[16231]: cephadm 2024-02-19T21:57:39.589611+0000 mgr.smithi044.ikbsam (mgr.14184) 93 : cephadm [INF] Reconfiguring daemon crash.smithi104 on smithi104 2024-02-19T21:57:40.888 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:40 smithi104 bash[21066]: cephadm 2024-02-19T21:57:39.586423+0000 mgr.smithi044.ikbsam (mgr.14184) 92 : cephadm [INF] Reconfiguring crash.smithi104 (monmap changed)... 2024-02-19T21:57:40.888 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:40 smithi104 bash[21066]: cephadm 2024-02-19T21:57:39.589611+0000 mgr.smithi044.ikbsam (mgr.14184) 93 : cephadm [INF] Reconfiguring daemon crash.smithi104 on smithi104 2024-02-19T21:57:42.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:41 smithi104 bash[21066]: cluster 2024-02-19T21:57:40.428843+0000 mgr.smithi044.ikbsam (mgr.14184) 94 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:42.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:41 smithi104 bash[21066]: audit 2024-02-19T21:57:41.446813+0000 mon.smithi044 (mon.0) 535 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:42.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:41 smithi104 bash[21066]: audit 2024-02-19T21:57:41.449264+0000 mon.smithi044 (mon.0) 536 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi104.cxzjji", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T21:57:42.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:41 smithi104 bash[21066]: audit 2024-02-19T21:57:41.451350+0000 mon.smithi044 (mon.0) 537 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T21:57:42.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:41 smithi104 bash[21066]: audit 2024-02-19T21:57:41.452987+0000 mon.smithi044 (mon.0) 538 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:42.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:41 smithi044 bash[16231]: cluster 2024-02-19T21:57:40.428843+0000 mgr.smithi044.ikbsam (mgr.14184) 94 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:42.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:41 smithi044 bash[16231]: audit 2024-02-19T21:57:41.446813+0000 mon.smithi044 (mon.0) 535 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:42.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:41 smithi044 bash[16231]: audit 2024-02-19T21:57:41.449264+0000 mon.smithi044 (mon.0) 536 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi104.cxzjji", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-19T21:57:42.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:41 smithi044 bash[16231]: audit 2024-02-19T21:57:41.451350+0000 mon.smithi044 (mon.0) 537 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-19T21:57:42.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:41 smithi044 bash[16231]: audit 2024-02-19T21:57:41.452987+0000 mon.smithi044 (mon.0) 538 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:42.733 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:42 smithi104 bash[21066]: cephadm 2024-02-19T21:57:41.448520+0000 mgr.smithi044.ikbsam (mgr.14184) 95 : cephadm [INF] Reconfiguring mgr.smithi104.cxzjji (monmap changed)... 2024-02-19T21:57:42.733 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:42 smithi104 bash[21066]: cephadm 2024-02-19T21:57:41.454580+0000 mgr.smithi044.ikbsam (mgr.14184) 96 : cephadm [INF] Reconfiguring daemon mgr.smithi104.cxzjji on smithi104 2024-02-19T21:57:43.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:42 smithi044 bash[16231]: cephadm 2024-02-19T21:57:41.448520+0000 mgr.smithi044.ikbsam (mgr.14184) 95 : cephadm [INF] Reconfiguring mgr.smithi104.cxzjji (monmap changed)... 2024-02-19T21:57:43.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:42 smithi044 bash[16231]: cephadm 2024-02-19T21:57:41.454580+0000 mgr.smithi044.ikbsam (mgr.14184) 96 : cephadm [INF] Reconfiguring daemon mgr.smithi104.cxzjji on smithi104 2024-02-19T21:57:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:43 smithi044 bash[16231]: cluster 2024-02-19T21:57:42.429484+0000 mgr.smithi044.ikbsam (mgr.14184) 97 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:43 smithi044 bash[16231]: audit 2024-02-19T21:57:43.271223+0000 mon.smithi044 (mon.0) 539 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:43 smithi044 bash[16231]: audit 2024-02-19T21:57:43.273137+0000 mon.smithi044 (mon.0) 540 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T21:57:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:43 smithi044 bash[16231]: audit 2024-02-19T21:57:43.274526+0000 mon.smithi044 (mon.0) 541 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T21:57:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:43 smithi044 bash[16231]: audit 2024-02-19T21:57:43.276053+0000 mon.smithi044 (mon.0) 542 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:43.947 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:57:43.947 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":41,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","created":"2024-02-19T21:53:20.519649+0000","modified":"2024-02-19T21:57:23.001948+0000","last_up_change":"2024-02-19T21:57:20.979834+0000","last_in_change":"2024-02-19T21:56:31.257669+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-02-19T21:57:03.245890+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":"27","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":"25416c71-bfa5-40bb-9343-8e1911d0b263","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6800","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6801","nonce":3939089873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6802","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6803","nonce":3939089873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6806","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6807","nonce":3939089873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6804","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6805","nonce":3939089873}]},"public_addr":"172.21.15.104:6801/3939089873","cluster_addr":"172.21.15.104:6803/3939089873","heartbeat_back_addr":"172.21.15.104:6807/3939089873","heartbeat_front_addr":"172.21.15.104:6805/3939089873","state":["exists","up"]},{"osd":1,"uuid":"f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6802","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6803","nonce":290339498}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6804","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6805","nonce":290339498}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6808","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6809","nonce":290339498}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6806","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6807","nonce":290339498}]},"public_addr":"172.21.15.44:6803/290339498","cluster_addr":"172.21.15.44:6805/290339498","heartbeat_back_addr":"172.21.15.44:6809/290339498","heartbeat_front_addr":"172.21.15.44:6807/290339498","state":["exists","up"]},{"osd":2,"uuid":"b037789a-d0b9-40ce-9201-9d872393499a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6808","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6809","nonce":2143280496}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6810","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6811","nonce":2143280496}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6814","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6815","nonce":2143280496}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6812","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6813","nonce":2143280496}]},"public_addr":"172.21.15.104:6809/2143280496","cluster_addr":"172.21.15.104:6811/2143280496","heartbeat_back_addr":"172.21.15.104:6815/2143280496","heartbeat_front_addr":"172.21.15.104:6813/2143280496","state":["exists","up"]},{"osd":3,"uuid":"2785c239-1220-4b0a-93ac-f99d1f09aa48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6810","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6811","nonce":3247063957}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6812","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6813","nonce":3247063957}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6816","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6817","nonce":3247063957}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6814","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6815","nonce":3247063957}]},"public_addr":"172.21.15.44:6811/3247063957","cluster_addr":"172.21.15.44:6813/3247063957","heartbeat_back_addr":"172.21.15.44:6817/3247063957","heartbeat_front_addr":"172.21.15.44:6815/3247063957","state":["exists","up"]},{"osd":4,"uuid":"e45e0c79-2ead-48e4-a276-10264694775d","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.104:6816","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6817","nonce":2972453486}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6818","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6819","nonce":2972453486}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6822","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6823","nonce":2972453486}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6820","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6821","nonce":2972453486}]},"public_addr":"172.21.15.104:6817/2972453486","cluster_addr":"172.21.15.104:6819/2972453486","heartbeat_back_addr":"172.21.15.104:6823/2972453486","heartbeat_front_addr":"172.21.15.104:6821/2972453486","state":["exists","up"]},{"osd":5,"uuid":"8d56aa6f-1490-45bf-b89e-df7ab72e09a4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6818","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6819","nonce":330799939}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6820","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6821","nonce":330799939}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6824","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6825","nonce":330799939}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6822","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6823","nonce":330799939}]},"public_addr":"172.21.15.44:6819/330799939","cluster_addr":"172.21.15.44:6821/330799939","heartbeat_back_addr":"172.21.15.44:6825/330799939","heartbeat_front_addr":"172.21.15.44:6823/330799939","state":["exists","up"]},{"osd":6,"uuid":"acc899b2-b093-44ae-955a-6b0c0763b975","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.104:6824","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6825","nonce":939721564}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6826","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6827","nonce":939721564}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6830","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6831","nonce":939721564}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6828","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6829","nonce":939721564}]},"public_addr":"172.21.15.104:6825/939721564","cluster_addr":"172.21.15.104:6827/939721564","heartbeat_back_addr":"172.21.15.104:6831/939721564","heartbeat_front_addr":"172.21.15.104:6829/939721564","state":["exists","up"]},{"osd":7,"uuid":"79bd1346-4a8c-48a0-97f9-403bd3717a3e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6826","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6827","nonce":3785437478}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6828","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6829","nonce":3785437478}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6832","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6833","nonce":3785437478}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6830","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6831","nonce":3785437478}]},"public_addr":"172.21.15.44:6827/3785437478","cluster_addr":"172.21.15.44:6829/3785437478","heartbeat_back_addr":"172.21.15.44:6833/3785437478","heartbeat_front_addr":"172.21.15.44:6831/3785437478","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-02-19T21:56:52.470236+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-02-19T21:57:01.177946+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-02-19T21:56:57.283753+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-02-19T21:57:07.345495+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-02-19T21:57:02.083362+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-02-19T21:57:14.175189+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-02-19T21:57:06.614660+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-02-19T21:57:19.729815+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.44:6800/130543077":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/1506491574":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/159377280":"2024-02-20T21:55:28.391885+0000","172.21.15.44:6801/1054054896":"2024-02-20T21:54:30.575138+0000","172.21.15.44:6800/1054054896":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/2008716523":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/638617967":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/721749504":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6801/130543077":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/3901056193":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6801/1193705698":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6800/1193705698":"2024-02-20T21:53:48.883194+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-02-19T21:57:44.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:43 smithi104 bash[21066]: cluster 2024-02-19T21:57:42.429484+0000 mgr.smithi044.ikbsam (mgr.14184) 97 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:44.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:43 smithi104 bash[21066]: audit 2024-02-19T21:57:43.271223+0000 mon.smithi044 (mon.0) 539 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:44.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:43 smithi104 bash[21066]: audit 2024-02-19T21:57:43.273137+0000 mon.smithi044 (mon.0) 540 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-19T21:57:44.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:43 smithi104 bash[21066]: audit 2024-02-19T21:57:43.274526+0000 mon.smithi044 (mon.0) 541 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-19T21:57:44.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:43 smithi104 bash[21066]: audit 2024-02-19T21:57:43.276053+0000 mon.smithi044 (mon.0) 542 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:57:44.637 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-02-19T21:57:03.245890+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': '27', '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-02-19T21:57:44.637 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-02-19T21:57:44.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:44 smithi104 bash[21066]: cephadm 2024-02-19T21:57:43.272540+0000 mgr.smithi044.ikbsam (mgr.14184) 98 : cephadm [INF] Reconfiguring mon.smithi104 (monmap changed)... 2024-02-19T21:57:44.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:44 smithi104 bash[21066]: cephadm 2024-02-19T21:57:43.277309+0000 mgr.smithi044.ikbsam (mgr.14184) 99 : cephadm [INF] Reconfiguring daemon mon.smithi104 on smithi104 2024-02-19T21:57:44.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:44 smithi104 bash[21066]: audit 2024-02-19T21:57:43.945801+0000 mon.smithi044 (mon.0) 543 : audit [DBG] from='client.? 172.21.15.44:0/2814787325' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T21:57:44.901 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:44 smithi044 bash[16231]: cephadm 2024-02-19T21:57:43.272540+0000 mgr.smithi044.ikbsam (mgr.14184) 98 : cephadm [INF] Reconfiguring mon.smithi104 (monmap changed)... 2024-02-19T21:57:44.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:44 smithi044 bash[16231]: cephadm 2024-02-19T21:57:43.277309+0000 mgr.smithi044.ikbsam (mgr.14184) 99 : cephadm [INF] Reconfiguring daemon mon.smithi104 on smithi104 2024-02-19T21:57:44.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:44 smithi044 bash[16231]: audit 2024-02-19T21:57:43.945801+0000 mon.smithi044 (mon.0) 543 : audit [DBG] from='client.? 172.21.15.44:0/2814787325' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: cluster 2024-02-19T21:57:44.430040+0000 mgr.smithi044.ikbsam (mgr.14184) 100 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.085011+0000 mon.smithi044 (mon.0) 544 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.093677+0000 mon.smithi044 (mon.0) 545 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.096893+0000 mon.smithi044 (mon.0) 546 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi044.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.107810+0000 mon.smithi044 (mon.0) 547 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.118511+0000 mon.smithi044 (mon.0) 548 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.131040+0000 mon.smithi044 (mon.0) 549 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi044.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T21:57:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.142761+0000 mon.smithi044 (mon.0) 550 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.152293+0000 mon.smithi044 (mon.0) 551 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T21:57:46.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.160057+0000 mon.smithi044 (mon.0) 552 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi104.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T21:57:46.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.171002+0000 mon.smithi044 (mon.0) 553 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:45 smithi104 bash[21066]: audit 2024-02-19T21:57:45.178083+0000 mon.smithi044 (mon.0) 554 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: cluster 2024-02-19T21:57:44.430040+0000 mgr.smithi044.ikbsam (mgr.14184) 100 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.085011+0000 mon.smithi044 (mon.0) 544 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.093677+0000 mon.smithi044 (mon.0) 545 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.096893+0000 mon.smithi044 (mon.0) 546 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi044.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.107810+0000 mon.smithi044 (mon.0) 547 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.118511+0000 mon.smithi044 (mon.0) 548 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.131040+0000 mon.smithi044 (mon.0) 549 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi044.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T21:57:46.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.142761+0000 mon.smithi044 (mon.0) 550 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.152293+0000 mon.smithi044 (mon.0) 551 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T21:57:46.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.160057+0000 mon.smithi044 (mon.0) 552 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi104.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T21:57:46.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.171002+0000 mon.smithi044 (mon.0) 553 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:46.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:45 smithi044 bash[16231]: audit 2024-02-19T21:57:45.178083+0000 mon.smithi044 (mon.0) 554 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:57:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:46 smithi104 bash[21066]: audit 2024-02-19T21:57:45.094635+0000 mgr.smithi044.ikbsam (mgr.14184) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T21:57:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:46 smithi104 bash[21066]: audit 2024-02-19T21:57:45.097790+0000 mgr.smithi044.ikbsam (mgr.14184) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi044.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T21:57:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:46 smithi104 bash[21066]: audit 2024-02-19T21:57:45.119250+0000 mgr.smithi044.ikbsam (mgr.14184) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T21:57:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:46 smithi104 bash[21066]: audit 2024-02-19T21:57:45.132139+0000 mgr.smithi044.ikbsam (mgr.14184) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi044.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T21:57:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:46 smithi104 bash[21066]: audit 2024-02-19T21:57:45.153134+0000 mgr.smithi044.ikbsam (mgr.14184) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T21:57:47.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:46 smithi104 bash[21066]: audit 2024-02-19T21:57:45.160886+0000 mgr.smithi044.ikbsam (mgr.14184) 106 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi104.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T21:57:47.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:46 smithi044 bash[16231]: audit 2024-02-19T21:57:45.094635+0000 mgr.smithi044.ikbsam (mgr.14184) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-19T21:57:47.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:46 smithi044 bash[16231]: audit 2024-02-19T21:57:45.097790+0000 mgr.smithi044.ikbsam (mgr.14184) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi044.front.sepia.ceph.com:9093"}]: dispatch 2024-02-19T21:57:47.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:46 smithi044 bash[16231]: audit 2024-02-19T21:57:45.119250+0000 mgr.smithi044.ikbsam (mgr.14184) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-19T21:57:47.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:46 smithi044 bash[16231]: audit 2024-02-19T21:57:45.132139+0000 mgr.smithi044.ikbsam (mgr.14184) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi044.front.sepia.ceph.com:3000"}]: dispatch 2024-02-19T21:57:47.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:46 smithi044 bash[16231]: audit 2024-02-19T21:57:45.153134+0000 mgr.smithi044.ikbsam (mgr.14184) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-19T21:57:47.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:46 smithi044 bash[16231]: audit 2024-02-19T21:57:45.160886+0000 mgr.smithi044.ikbsam (mgr.14184) 106 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi104.front.sepia.ceph.com:9095"}]: dispatch 2024-02-19T21:57:48.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:47 smithi104 bash[21066]: cluster 2024-02-19T21:57:46.430429+0000 mgr.smithi044.ikbsam (mgr.14184) 107 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:48.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:47 smithi044 bash[16231]: cluster 2024-02-19T21:57:46.430429+0000 mgr.smithi044.ikbsam (mgr.14184) 107 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:49.546 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:57:50.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:49 smithi104 bash[21066]: cluster 2024-02-19T21:57:48.431005+0000 mgr.smithi044.ikbsam (mgr.14184) 108 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:50.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:49 smithi044 bash[16231]: cluster 2024-02-19T21:57:48.431005+0000 mgr.smithi044.ikbsam (mgr.14184) 108 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:52.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:51 smithi104 bash[21066]: cluster 2024-02-19T21:57:50.431439+0000 mgr.smithi044.ikbsam (mgr.14184) 109 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:52.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:51 smithi104 bash[21066]: audit 2024-02-19T21:57:50.939615+0000 mon.smithi044 (mon.0) 555 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:52.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:51 smithi104 bash[21066]: audit 2024-02-19T21:57:50.979986+0000 mon.smithi044 (mon.0) 556 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:52.138 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:51 smithi044 bash[16231]: cluster 2024-02-19T21:57:50.431439+0000 mgr.smithi044.ikbsam (mgr.14184) 109 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:52.138 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:51 smithi044 bash[16231]: audit 2024-02-19T21:57:50.939615+0000 mon.smithi044 (mon.0) 555 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:52.138 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:51 smithi044 bash[16231]: audit 2024-02-19T21:57:50.979986+0000 mon.smithi044 (mon.0) 556 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:57:52.586 INFO:teuthology.orchestra.run.smithi044.stdout:pg_num: 1 2024-02-19T21:57:52.901 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:52 smithi044 bash[16231]: audit 2024-02-19T21:57:52.587102+0000 mon.smithi044 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.44:0/299576359' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-19T21:57:53.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:52 smithi104 bash[21066]: audit 2024-02-19T21:57:52.587102+0000 mon.smithi044 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.44:0/299576359' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-19T21:57:53.282 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-02-19T21:57:53.282 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-02-19T21:57:53.282 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph mgr dump --format=json 2024-02-19T21:57:54.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:53 smithi104 bash[21066]: cluster 2024-02-19T21:57:52.431915+0000 mgr.smithi044.ikbsam (mgr.14184) 110 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:54.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:53 smithi044 bash[16231]: cluster 2024-02-19T21:57:52.431915+0000 mgr.smithi044.ikbsam (mgr.14184) 110 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:56.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:55 smithi104 bash[21066]: cluster 2024-02-19T21:57:54.432459+0000 mgr.smithi044.ikbsam (mgr.14184) 111 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:56.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:55 smithi044 bash[16231]: cluster 2024-02-19T21:57:54.432459+0000 mgr.smithi044.ikbsam (mgr.14184) 111 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:58.095 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:57:58.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:57 smithi104 bash[21066]: cluster 2024-02-19T21:57:56.433136+0000 mgr.smithi044.ikbsam (mgr.14184) 112 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:58.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:57 smithi044 bash[16231]: cluster 2024-02-19T21:57:56.433136+0000 mgr.smithi044.ikbsam (mgr.14184) 112 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:57:59.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:57:59 smithi044 bash[16231]: cluster 2024-02-19T21:57:58.433684+0000 mgr.smithi044.ikbsam (mgr.14184) 113 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:00.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:57:59 smithi104 bash[21066]: cluster 2024-02-19T21:57:58.433684+0000 mgr.smithi044.ikbsam (mgr.14184) 113 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:01.665 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: cluster 2024-02-19T21:58:00.434306+0000 mgr.smithi044.ikbsam (mgr.14184) 114 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:00.993872+0000 mon.smithi044 (mon.0) 558 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:01.276821+0000 mon.smithi044 (mon.0) 559 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:01.279664+0000 mon.smithi044 (mon.0) 560 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:01.283666+0000 mon.smithi044 (mon.0) 561 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:01.285506+0000 mon.smithi044 (mon.0) 562 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:01.291877+0000 mon.smithi044 (mon.0) 563 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:02.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:01 smithi104 bash[21066]: audit 2024-02-19T21:58:01.657325+0000 mon.smithi044 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.44:0/2943762781' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: cluster 2024-02-19T21:58:00.434306+0000 mgr.smithi044.ikbsam (mgr.14184) 114 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:00.993872+0000 mon.smithi044 (mon.0) 558 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:01.276821+0000 mon.smithi044 (mon.0) 559 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:01.279664+0000 mon.smithi044 (mon.0) 560 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:01.283666+0000 mon.smithi044 (mon.0) 561 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:01.285506+0000 mon.smithi044 (mon.0) 562 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:01.291877+0000 mon.smithi044 (mon.0) 563 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:02.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:01 smithi044 bash[16231]: audit 2024-02-19T21:58:01.657325+0000 mon.smithi044 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.44:0/2943762781' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-19T21:58:02.353 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":18,"active_gid":14184,"active_name":"smithi044.ikbsam","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6800","nonce":2109611155},{"type":"v1","addr":"172.21.15.44:6801","nonce":2109611155}]},"active_addr":"172.21.15.44:6801/2109611155","active_change":"2024-02-19T21:55:28.391985+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14198,"name":"smithi104.cxzjji","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.44:8443/","prometheus":"http://172.21.15.44: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":5,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.44:0","nonce":933615490}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.44:0","nonce":2079349926}]}]} 2024-02-19T21:58:02.357 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-02-19T21:58:02.357 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-02-19T21:58:02.358 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd dump --format=json 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: cephadm 2024-02-19T21:58:00.982116+0000 mgr.smithi044.ikbsam (mgr.14184) 115 : cephadm [INF] Detected new or changed devices on smithi104 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: cephadm 2024-02-19T21:58:01.286419+0000 mgr.smithi044.ikbsam (mgr.14184) 116 : cephadm [INF] Adjusting osd_memory_target on smithi104 to 3785M 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.129890+0000 mon.smithi044 (mon.0) 565 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.448435+0000 mon.smithi044 (mon.0) 566 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.451134+0000 mon.smithi044 (mon.0) 567 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.452497+0000 mon.smithi044 (mon.0) 568 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.453610+0000 mon.smithi044 (mon.0) 569 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.454711+0000 mon.smithi044 (mon.0) 570 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.461811+0000 mon.smithi044 (mon.0) 571 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.464532+0000 mon.smithi044 (mon.0) 572 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.465714+0000 mon.smithi044 (mon.0) 573 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.472721+0000 mon.smithi044 (mon.0) 574 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.480432+0000 mon.smithi044 (mon.0) 575 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.488314+0000 mon.smithi044 (mon.0) 576 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.490080+0000 mon.smithi044 (mon.0) 577 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.490663+0000 mon.smithi044 (mon.0) 578 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:02 smithi104 bash[21066]: audit 2024-02-19T21:58:02.491682+0000 mon.smithi044 (mon.0) 579 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:03.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: cephadm 2024-02-19T21:58:00.982116+0000 mgr.smithi044.ikbsam (mgr.14184) 115 : cephadm [INF] Detected new or changed devices on smithi104 2024-02-19T21:58:03.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: cephadm 2024-02-19T21:58:01.286419+0000 mgr.smithi044.ikbsam (mgr.14184) 116 : cephadm [INF] Adjusting osd_memory_target on smithi104 to 3785M 2024-02-19T21:58:03.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.129890+0000 mon.smithi044 (mon.0) 565 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.448435+0000 mon.smithi044 (mon.0) 566 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.451134+0000 mon.smithi044 (mon.0) 567 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.452497+0000 mon.smithi044 (mon.0) 568 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.453610+0000 mon.smithi044 (mon.0) 569 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.454711+0000 mon.smithi044 (mon.0) 570 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.461811+0000 mon.smithi044 (mon.0) 571 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.464532+0000 mon.smithi044 (mon.0) 572 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.465714+0000 mon.smithi044 (mon.0) 573 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.472721+0000 mon.smithi044 (mon.0) 574 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.480432+0000 mon.smithi044 (mon.0) 575 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.488314+0000 mon.smithi044 (mon.0) 576 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.490080+0000 mon.smithi044 (mon.0) 577 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.490663+0000 mon.smithi044 (mon.0) 578 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:03.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:02 smithi044 bash[16231]: audit 2024-02-19T21:58:02.491682+0000 mon.smithi044 (mon.0) 579 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:04.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:03 smithi104 bash[21066]: cephadm 2024-02-19T21:58:02.120757+0000 mgr.smithi044.ikbsam (mgr.14184) 117 : cephadm [INF] Detected new or changed devices on smithi044 2024-02-19T21:58:04.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:03 smithi104 bash[21066]: cluster 2024-02-19T21:58:02.434823+0000 mgr.smithi044.ikbsam (mgr.14184) 118 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:04.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:03 smithi104 bash[21066]: cephadm 2024-02-19T21:58:02.455597+0000 mgr.smithi044.ikbsam (mgr.14184) 119 : cephadm [INF] Adjusting osd_memory_target on smithi044 to 3530M 2024-02-19T21:58:04.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:03 smithi044 bash[16231]: cephadm 2024-02-19T21:58:02.120757+0000 mgr.smithi044.ikbsam (mgr.14184) 117 : cephadm [INF] Detected new or changed devices on smithi044 2024-02-19T21:58:04.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:03 smithi044 bash[16231]: cluster 2024-02-19T21:58:02.434823+0000 mgr.smithi044.ikbsam (mgr.14184) 118 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:04.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:03 smithi044 bash[16231]: cephadm 2024-02-19T21:58:02.455597+0000 mgr.smithi044.ikbsam (mgr.14184) 119 : cephadm [INF] Adjusting osd_memory_target on smithi044 to 3530M 2024-02-19T21:58:06.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:05 smithi104 bash[21066]: cluster 2024-02-19T21:58:04.435415+0000 mgr.smithi044.ikbsam (mgr.14184) 120 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:06.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:05 smithi044 bash[16231]: cluster 2024-02-19T21:58:04.435415+0000 mgr.smithi044.ikbsam (mgr.14184) 120 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:07.213 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:58:08.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:07 smithi104 bash[21066]: cluster 2024-02-19T21:58:06.436062+0000 mgr.smithi044.ikbsam (mgr.14184) 121 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:08.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:07 smithi044 bash[16231]: cluster 2024-02-19T21:58:06.436062+0000 mgr.smithi044.ikbsam (mgr.14184) 121 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:10.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:09 smithi104 bash[21066]: cluster 2024-02-19T21:58:08.436695+0000 mgr.smithi044.ikbsam (mgr.14184) 122 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:10.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:09 smithi044 bash[16231]: cluster 2024-02-19T21:58:08.436695+0000 mgr.smithi044.ikbsam (mgr.14184) 122 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:11.651 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:58:11.652 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":41,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","created":"2024-02-19T21:53:20.519649+0000","modified":"2024-02-19T21:57:23.001948+0000","last_up_change":"2024-02-19T21:57:20.979834+0000","last_in_change":"2024-02-19T21:56:31.257669+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-02-19T21:57:03.245890+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":"27","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":"25416c71-bfa5-40bb-9343-8e1911d0b263","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6800","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6801","nonce":3939089873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6802","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6803","nonce":3939089873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6806","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6807","nonce":3939089873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6804","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6805","nonce":3939089873}]},"public_addr":"172.21.15.104:6801/3939089873","cluster_addr":"172.21.15.104:6803/3939089873","heartbeat_back_addr":"172.21.15.104:6807/3939089873","heartbeat_front_addr":"172.21.15.104:6805/3939089873","state":["exists","up"]},{"osd":1,"uuid":"f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6802","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6803","nonce":290339498}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6804","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6805","nonce":290339498}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6808","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6809","nonce":290339498}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6806","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6807","nonce":290339498}]},"public_addr":"172.21.15.44:6803/290339498","cluster_addr":"172.21.15.44:6805/290339498","heartbeat_back_addr":"172.21.15.44:6809/290339498","heartbeat_front_addr":"172.21.15.44:6807/290339498","state":["exists","up"]},{"osd":2,"uuid":"b037789a-d0b9-40ce-9201-9d872393499a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6808","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6809","nonce":2143280496}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6810","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6811","nonce":2143280496}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6814","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6815","nonce":2143280496}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6812","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6813","nonce":2143280496}]},"public_addr":"172.21.15.104:6809/2143280496","cluster_addr":"172.21.15.104:6811/2143280496","heartbeat_back_addr":"172.21.15.104:6815/2143280496","heartbeat_front_addr":"172.21.15.104:6813/2143280496","state":["exists","up"]},{"osd":3,"uuid":"2785c239-1220-4b0a-93ac-f99d1f09aa48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6810","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6811","nonce":3247063957}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6812","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6813","nonce":3247063957}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6816","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6817","nonce":3247063957}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6814","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6815","nonce":3247063957}]},"public_addr":"172.21.15.44:6811/3247063957","cluster_addr":"172.21.15.44:6813/3247063957","heartbeat_back_addr":"172.21.15.44:6817/3247063957","heartbeat_front_addr":"172.21.15.44:6815/3247063957","state":["exists","up"]},{"osd":4,"uuid":"e45e0c79-2ead-48e4-a276-10264694775d","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.104:6816","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6817","nonce":2972453486}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6818","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6819","nonce":2972453486}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6822","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6823","nonce":2972453486}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6820","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6821","nonce":2972453486}]},"public_addr":"172.21.15.104:6817/2972453486","cluster_addr":"172.21.15.104:6819/2972453486","heartbeat_back_addr":"172.21.15.104:6823/2972453486","heartbeat_front_addr":"172.21.15.104:6821/2972453486","state":["exists","up"]},{"osd":5,"uuid":"8d56aa6f-1490-45bf-b89e-df7ab72e09a4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6818","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6819","nonce":330799939}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6820","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6821","nonce":330799939}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6824","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6825","nonce":330799939}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6822","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6823","nonce":330799939}]},"public_addr":"172.21.15.44:6819/330799939","cluster_addr":"172.21.15.44:6821/330799939","heartbeat_back_addr":"172.21.15.44:6825/330799939","heartbeat_front_addr":"172.21.15.44:6823/330799939","state":["exists","up"]},{"osd":6,"uuid":"acc899b2-b093-44ae-955a-6b0c0763b975","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.104:6824","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6825","nonce":939721564}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6826","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6827","nonce":939721564}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6830","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6831","nonce":939721564}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6828","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6829","nonce":939721564}]},"public_addr":"172.21.15.104:6825/939721564","cluster_addr":"172.21.15.104:6827/939721564","heartbeat_back_addr":"172.21.15.104:6831/939721564","heartbeat_front_addr":"172.21.15.104:6829/939721564","state":["exists","up"]},{"osd":7,"uuid":"79bd1346-4a8c-48a0-97f9-403bd3717a3e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6826","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6827","nonce":3785437478}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6828","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6829","nonce":3785437478}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6832","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6833","nonce":3785437478}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6830","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6831","nonce":3785437478}]},"public_addr":"172.21.15.44:6827/3785437478","cluster_addr":"172.21.15.44:6829/3785437478","heartbeat_back_addr":"172.21.15.44:6833/3785437478","heartbeat_front_addr":"172.21.15.44:6831/3785437478","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-02-19T21:56:52.470236+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-02-19T21:57:01.177946+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-02-19T21:56:57.283753+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-02-19T21:57:07.345495+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-02-19T21:57:02.083362+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-02-19T21:57:14.175189+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-02-19T21:57:06.614660+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-02-19T21:57:19.729815+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.44:6800/130543077":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/1506491574":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/159377280":"2024-02-20T21:55:28.391885+0000","172.21.15.44:6801/1054054896":"2024-02-20T21:54:30.575138+0000","172.21.15.44:6800/1054054896":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/2008716523":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/638617967":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/721749504":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6801/130543077":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/3901056193":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6801/1193705698":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6800/1193705698":"2024-02-20T21:53:48.883194+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-02-19T21:58:12.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:11 smithi104 bash[21066]: cluster 2024-02-19T21:58:10.437385+0000 mgr.smithi044.ikbsam (mgr.14184) 123 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:12.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:11 smithi104 bash[21066]: audit 2024-02-19T21:58:11.651518+0000 mon.smithi044 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.44:0/964285575' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T21:58:12.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:11 smithi044 bash[16231]: cluster 2024-02-19T21:58:10.437385+0000 mgr.smithi044.ikbsam (mgr.14184) 123 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:12.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:11 smithi044 bash[16231]: audit 2024-02-19T21:58:11.651518+0000 mon.smithi044 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.44:0/964285575' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T21:58:12.379 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-02-19T21:58:12.379 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd dump --format=json 2024-02-19T21:58:14.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:13 smithi104 bash[21066]: cluster 2024-02-19T21:58:12.437993+0000 mgr.smithi044.ikbsam (mgr.14184) 124 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:14.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:13 smithi044 bash[16231]: cluster 2024-02-19T21:58:12.437993+0000 mgr.smithi044.ikbsam (mgr.14184) 124 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:16.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:15 smithi104 bash[21066]: cluster 2024-02-19T21:58:14.438582+0000 mgr.smithi044.ikbsam (mgr.14184) 125 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:16.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:15 smithi044 bash[16231]: cluster 2024-02-19T21:58:14.438582+0000 mgr.smithi044.ikbsam (mgr.14184) 125 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:17.224 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:58:18.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:17 smithi104 bash[21066]: cluster 2024-02-19T21:58:16.439189+0000 mgr.smithi044.ikbsam (mgr.14184) 126 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:18.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:17 smithi044 bash[16231]: cluster 2024-02-19T21:58:16.439189+0000 mgr.smithi044.ikbsam (mgr.14184) 126 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:19.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:18 smithi104 bash[21066]: cluster 2024-02-19T21:58:18.439703+0000 mgr.smithi044.ikbsam (mgr.14184) 127 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:19.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:18 smithi044 bash[16231]: cluster 2024-02-19T21:58:18.439703+0000 mgr.smithi044.ikbsam (mgr.14184) 127 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:21.236 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T21:58:21.236 INFO:teuthology.orchestra.run.smithi044.stdout:{"epoch":41,"fsid":"3594d200-cf71-11ee-95bb-87774f69a715","created":"2024-02-19T21:53:20.519649+0000","modified":"2024-02-19T21:57:23.001948+0000","last_up_change":"2024-02-19T21:57:20.979834+0000","last_in_change":"2024-02-19T21:56:31.257669+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-02-19T21:57:03.245890+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":"27","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":"25416c71-bfa5-40bb-9343-8e1911d0b263","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6800","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6801","nonce":3939089873}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6802","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6803","nonce":3939089873}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6806","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6807","nonce":3939089873}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6804","nonce":3939089873},{"type":"v1","addr":"172.21.15.104:6805","nonce":3939089873}]},"public_addr":"172.21.15.104:6801/3939089873","cluster_addr":"172.21.15.104:6803/3939089873","heartbeat_back_addr":"172.21.15.104:6807/3939089873","heartbeat_front_addr":"172.21.15.104:6805/3939089873","state":["exists","up"]},{"osd":1,"uuid":"f9ea39d9-c6f7-4e1b-9825-9c1dbaf96ef8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6802","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6803","nonce":290339498}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6804","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6805","nonce":290339498}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6808","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6809","nonce":290339498}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6806","nonce":290339498},{"type":"v1","addr":"172.21.15.44:6807","nonce":290339498}]},"public_addr":"172.21.15.44:6803/290339498","cluster_addr":"172.21.15.44:6805/290339498","heartbeat_back_addr":"172.21.15.44:6809/290339498","heartbeat_front_addr":"172.21.15.44:6807/290339498","state":["exists","up"]},{"osd":2,"uuid":"b037789a-d0b9-40ce-9201-9d872393499a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6808","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6809","nonce":2143280496}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6810","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6811","nonce":2143280496}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6814","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6815","nonce":2143280496}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6812","nonce":2143280496},{"type":"v1","addr":"172.21.15.104:6813","nonce":2143280496}]},"public_addr":"172.21.15.104:6809/2143280496","cluster_addr":"172.21.15.104:6811/2143280496","heartbeat_back_addr":"172.21.15.104:6815/2143280496","heartbeat_front_addr":"172.21.15.104:6813/2143280496","state":["exists","up"]},{"osd":3,"uuid":"2785c239-1220-4b0a-93ac-f99d1f09aa48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6810","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6811","nonce":3247063957}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6812","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6813","nonce":3247063957}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6816","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6817","nonce":3247063957}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6814","nonce":3247063957},{"type":"v1","addr":"172.21.15.44:6815","nonce":3247063957}]},"public_addr":"172.21.15.44:6811/3247063957","cluster_addr":"172.21.15.44:6813/3247063957","heartbeat_back_addr":"172.21.15.44:6817/3247063957","heartbeat_front_addr":"172.21.15.44:6815/3247063957","state":["exists","up"]},{"osd":4,"uuid":"e45e0c79-2ead-48e4-a276-10264694775d","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.104:6816","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6817","nonce":2972453486}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6818","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6819","nonce":2972453486}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6822","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6823","nonce":2972453486}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6820","nonce":2972453486},{"type":"v1","addr":"172.21.15.104:6821","nonce":2972453486}]},"public_addr":"172.21.15.104:6817/2972453486","cluster_addr":"172.21.15.104:6819/2972453486","heartbeat_back_addr":"172.21.15.104:6823/2972453486","heartbeat_front_addr":"172.21.15.104:6821/2972453486","state":["exists","up"]},{"osd":5,"uuid":"8d56aa6f-1490-45bf-b89e-df7ab72e09a4","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6818","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6819","nonce":330799939}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6820","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6821","nonce":330799939}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6824","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6825","nonce":330799939}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6822","nonce":330799939},{"type":"v1","addr":"172.21.15.44:6823","nonce":330799939}]},"public_addr":"172.21.15.44:6819/330799939","cluster_addr":"172.21.15.44:6821/330799939","heartbeat_back_addr":"172.21.15.44:6825/330799939","heartbeat_front_addr":"172.21.15.44:6823/330799939","state":["exists","up"]},{"osd":6,"uuid":"acc899b2-b093-44ae-955a-6b0c0763b975","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.104:6824","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6825","nonce":939721564}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6826","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6827","nonce":939721564}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6830","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6831","nonce":939721564}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.104:6828","nonce":939721564},{"type":"v1","addr":"172.21.15.104:6829","nonce":939721564}]},"public_addr":"172.21.15.104:6825/939721564","cluster_addr":"172.21.15.104:6827/939721564","heartbeat_back_addr":"172.21.15.104:6831/939721564","heartbeat_front_addr":"172.21.15.104:6829/939721564","state":["exists","up"]},{"osd":7,"uuid":"79bd1346-4a8c-48a0-97f9-403bd3717a3e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6826","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6827","nonce":3785437478}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6828","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6829","nonce":3785437478}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6832","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6833","nonce":3785437478}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.44:6830","nonce":3785437478},{"type":"v1","addr":"172.21.15.44:6831","nonce":3785437478}]},"public_addr":"172.21.15.44:6827/3785437478","cluster_addr":"172.21.15.44:6829/3785437478","heartbeat_back_addr":"172.21.15.44:6833/3785437478","heartbeat_front_addr":"172.21.15.44:6831/3785437478","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-02-19T21:56:52.470236+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-02-19T21:57:01.177946+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-02-19T21:56:57.283753+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-02-19T21:57:07.345495+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-02-19T21:57:02.083362+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-02-19T21:57:14.175189+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-02-19T21:57:06.614660+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-02-19T21:57:19.729815+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.44:6800/130543077":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/1506491574":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/159377280":"2024-02-20T21:55:28.391885+0000","172.21.15.44:6801/1054054896":"2024-02-20T21:54:30.575138+0000","172.21.15.44:6800/1054054896":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/2008716523":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/638617967":"2024-02-20T21:54:30.575138+0000","172.21.15.44:0/721749504":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6801/130543077":"2024-02-20T21:55:28.391885+0000","172.21.15.44:0/3901056193":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6801/1193705698":"2024-02-20T21:53:48.883194+0000","172.21.15.44:6800/1193705698":"2024-02-20T21:53:48.883194+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-02-19T21:58:21.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:21 smithi044 bash[16231]: cluster 2024-02-19T21:58:20.440314+0000 mgr.smithi044.ikbsam (mgr.14184) 128 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:21.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:21 smithi044 bash[16231]: audit 2024-02-19T21:58:21.235579+0000 mon.smithi044 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.44:0/1905624586' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T21:58:21.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:21 smithi104 bash[21066]: cluster 2024-02-19T21:58:20.440314+0000 mgr.smithi044.ikbsam (mgr.14184) 128 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:21.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:21 smithi104 bash[21066]: audit 2024-02-19T21:58:21.235579+0000 mon.smithi044 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.44:0/1905624586' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-19T21:58:22.198 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-02-19T21:58:23.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:23 smithi104 bash[21066]: cluster 2024-02-19T21:58:22.440888+0000 mgr.smithi044.ikbsam (mgr.14184) 129 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:23.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:23 smithi044 bash[16231]: cluster 2024-02-19T21:58:22.440888+0000 mgr.smithi044.ikbsam (mgr.14184) 129 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:25.761 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:25 smithi104 bash[21066]: cluster 2024-02-19T21:58:24.441456+0000 mgr.smithi044.ikbsam (mgr.14184) 130 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:25.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:25 smithi044 bash[16231]: cluster 2024-02-19T21:58:24.441456+0000 mgr.smithi044.ikbsam (mgr.14184) 130 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:27.043 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:58:27.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:27 smithi104 bash[21066]: cluster 2024-02-19T21:58:26.442087+0000 mgr.smithi044.ikbsam (mgr.14184) 131 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:27.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:27 smithi044 bash[16231]: cluster 2024-02-19T21:58:26.442087+0000 mgr.smithi044.ikbsam (mgr.14184) 131 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:29.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:29 smithi104 bash[21066]: audit 2024-02-19T21:58:28.179151+0000 mon.smithi044 (mon.0) 582 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:29.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:29 smithi104 bash[21066]: cluster 2024-02-19T21:58:28.442521+0000 mgr.smithi044.ikbsam (mgr.14184) 132 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:29.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:29 smithi044 bash[16231]: audit 2024-02-19T21:58:28.179151+0000 mon.smithi044 (mon.0) 582 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:29.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:29 smithi044 bash[16231]: cluster 2024-02-19T21:58:28.442521+0000 mgr.smithi044.ikbsam (mgr.14184) 132 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:31.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:31 smithi104 bash[21066]: cluster 2024-02-19T21:58:30.443093+0000 mgr.smithi044.ikbsam (mgr.14184) 133 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:31 smithi044 bash[16231]: cluster 2024-02-19T21:58:30.443093+0000 mgr.smithi044.ikbsam (mgr.14184) 133 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:32.034 INFO:teuthology.orchestra.run.smithi044.stdout:68719476759 2024-02-19T21:58:32.035 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-02-19T21:58:33.623 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:33 smithi104 bash[21066]: audit 2024-02-19T21:58:32.232762+0000 mon.smithi044 (mon.0) 583 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:33.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:33 smithi104 bash[21066]: audit 2024-02-19T21:58:32.235511+0000 mon.smithi044 (mon.0) 584 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:58:33.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:33 smithi104 bash[21066]: cluster 2024-02-19T21:58:32.443689+0000 mgr.smithi044.ikbsam (mgr.14184) 134 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:33.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:33 smithi044 bash[16231]: audit 2024-02-19T21:58:32.232762+0000 mon.smithi044 (mon.0) 583 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:33.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:33 smithi044 bash[16231]: audit 2024-02-19T21:58:32.235511+0000 mon.smithi044 (mon.0) 584 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:58:33.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:33 smithi044 bash[16231]: cluster 2024-02-19T21:58:32.443689+0000 mgr.smithi044.ikbsam (mgr.14184) 134 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:35.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:35 smithi104 bash[21066]: cluster 2024-02-19T21:58:34.444327+0000 mgr.smithi044.ikbsam (mgr.14184) 135 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:35.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:35 smithi044 bash[16231]: cluster 2024-02-19T21:58:34.444327+0000 mgr.smithi044.ikbsam (mgr.14184) 135 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:36.888 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:58:37.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:37 smithi104 bash[21066]: cluster 2024-02-19T21:58:36.445115+0000 mgr.smithi044.ikbsam (mgr.14184) 136 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:37.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:37 smithi044 bash[16231]: cluster 2024-02-19T21:58:36.445115+0000 mgr.smithi044.ikbsam (mgr.14184) 136 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: audit 2024-02-19T21:58:38.084881+0000 mon.smithi044 (mon.0) 585 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: audit 2024-02-19T21:58:38.236386+0000 mon.smithi044 (mon.0) 586 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: audit 2024-02-19T21:58:38.237948+0000 mon.smithi044 (mon.0) 587 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: audit 2024-02-19T21:58:38.239123+0000 mon.smithi044 (mon.0) 588 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: audit 2024-02-19T21:58:38.245276+0000 mon.smithi044 (mon.0) 589 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: audit 2024-02-19T21:58:38.251632+0000 mon.smithi044 (mon.0) 590 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:58:39.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:39 smithi104 bash[21066]: cluster 2024-02-19T21:58:38.445825+0000 mgr.smithi044.ikbsam (mgr.14184) 137 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:39.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: audit 2024-02-19T21:58:38.084881+0000 mon.smithi044 (mon.0) 585 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:39.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: audit 2024-02-19T21:58:38.236386+0000 mon.smithi044 (mon.0) 586 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:39.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: audit 2024-02-19T21:58:38.237948+0000 mon.smithi044 (mon.0) 587 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:58:39.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: audit 2024-02-19T21:58:38.239123+0000 mon.smithi044 (mon.0) 588 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:58:39.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: audit 2024-02-19T21:58:38.245276+0000 mon.smithi044 (mon.0) 589 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:58:39.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: audit 2024-02-19T21:58:38.251632+0000 mon.smithi044 (mon.0) 590 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:58:39.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:39 smithi044 bash[16231]: cluster 2024-02-19T21:58:38.445825+0000 mgr.smithi044.ikbsam (mgr.14184) 137 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:40.696 INFO:teuthology.orchestra.run.smithi044.stdout:103079215125 2024-02-19T21:58:40.697 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-02-19T21:58:41.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:41 smithi104 bash[21066]: cluster 2024-02-19T21:58:40.446476+0000 mgr.smithi044.ikbsam (mgr.14184) 138 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:41.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:41 smithi044 bash[16231]: cluster 2024-02-19T21:58:40.446476+0000 mgr.smithi044.ikbsam (mgr.14184) 138 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:43.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:43 smithi104 bash[21066]: cluster 2024-02-19T21:58:42.447097+0000 mgr.smithi044.ikbsam (mgr.14184) 139 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:43.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:43 smithi044 bash[16231]: cluster 2024-02-19T21:58:42.447097+0000 mgr.smithi044.ikbsam (mgr.14184) 139 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:45.535 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:58:45.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:45 smithi104 bash[21066]: cluster 2024-02-19T21:58:44.447685+0000 mgr.smithi044.ikbsam (mgr.14184) 140 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:45.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:45 smithi044 bash[16231]: cluster 2024-02-19T21:58:44.447685+0000 mgr.smithi044.ikbsam (mgr.14184) 140 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:47.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:47 smithi104 bash[21066]: cluster 2024-02-19T21:58:46.448217+0000 mgr.smithi044.ikbsam (mgr.14184) 141 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:47.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:47 smithi044 bash[16231]: cluster 2024-02-19T21:58:46.448217+0000 mgr.smithi044.ikbsam (mgr.14184) 141 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:48.999 INFO:teuthology.orchestra.run.smithi044.stdout:85899345945 2024-02-19T21:58:48.999 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-02-19T21:58:49.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:49 smithi104 bash[21066]: cluster 2024-02-19T21:58:48.448811+0000 mgr.smithi044.ikbsam (mgr.14184) 142 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:49 smithi044 bash[16231]: cluster 2024-02-19T21:58:48.448811+0000 mgr.smithi044.ikbsam (mgr.14184) 142 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:51.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:51 smithi104 bash[21066]: cluster 2024-02-19T21:58:50.449462+0000 mgr.smithi044.ikbsam (mgr.14184) 143 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:51.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:51 smithi044 bash[16231]: cluster 2024-02-19T21:58:50.449462+0000 mgr.smithi044.ikbsam (mgr.14184) 143 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:53.856 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:58:53.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:53 smithi104 bash[21066]: cluster 2024-02-19T21:58:52.450090+0000 mgr.smithi044.ikbsam (mgr.14184) 144 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:53.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:53 smithi044 bash[16231]: cluster 2024-02-19T21:58:52.450090+0000 mgr.smithi044.ikbsam (mgr.14184) 144 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:55.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:55 smithi104 bash[21066]: cluster 2024-02-19T21:58:54.450734+0000 mgr.smithi044.ikbsam (mgr.14184) 145 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:55.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:55 smithi044 bash[16231]: cluster 2024-02-19T21:58:54.450734+0000 mgr.smithi044.ikbsam (mgr.14184) 145 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:57.465 INFO:teuthology.orchestra.run.smithi044.stdout:128849018904 2024-02-19T21:58:57.465 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-02-19T21:58:57.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:57 smithi104 bash[21066]: cluster 2024-02-19T21:58:56.451328+0000 mgr.smithi044.ikbsam (mgr.14184) 146 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:57.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:57 smithi044 bash[16231]: cluster 2024-02-19T21:58:56.451328+0000 mgr.smithi044.ikbsam (mgr.14184) 146 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:59.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:58:59 smithi104 bash[21066]: cluster 2024-02-19T21:58:58.451977+0000 mgr.smithi044.ikbsam (mgr.14184) 147 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:58:59.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:58:59 smithi044 bash[16231]: cluster 2024-02-19T21:58:58.451977+0000 mgr.smithi044.ikbsam (mgr.14184) 147 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:01.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:01 smithi104 bash[21066]: cluster 2024-02-19T21:59:00.452649+0000 mgr.smithi044.ikbsam (mgr.14184) 148 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:01 smithi044 bash[16231]: cluster 2024-02-19T21:59:00.452649+0000 mgr.smithi044.ikbsam (mgr.14184) 148 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:02.313 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:03.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:03 smithi104 bash[21066]: cluster 2024-02-19T21:59:02.453332+0000 mgr.smithi044.ikbsam (mgr.14184) 149 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:03.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:03 smithi044 bash[16231]: cluster 2024-02-19T21:59:02.453332+0000 mgr.smithi044.ikbsam (mgr.14184) 149 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:05.712 INFO:teuthology.orchestra.run.smithi044.stdout:107374182428 2024-02-19T21:59:05.712 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-02-19T21:59:05.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:05 smithi104 bash[21066]: cluster 2024-02-19T21:59:04.453927+0000 mgr.smithi044.ikbsam (mgr.14184) 150 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:05.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:05 smithi044 bash[16231]: cluster 2024-02-19T21:59:04.453927+0000 mgr.smithi044.ikbsam (mgr.14184) 150 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:07.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:07 smithi104 bash[21066]: cluster 2024-02-19T21:59:06.454525+0000 mgr.smithi044.ikbsam (mgr.14184) 151 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:07.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:07 smithi044 bash[16231]: cluster 2024-02-19T21:59:06.454525+0000 mgr.smithi044.ikbsam (mgr.14184) 151 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:09.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:09 smithi104 bash[21066]: cluster 2024-02-19T21:59:08.455129+0000 mgr.smithi044.ikbsam (mgr.14184) 152 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:09.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:09 smithi044 bash[16231]: cluster 2024-02-19T21:59:08.455129+0000 mgr.smithi044.ikbsam (mgr.14184) 152 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:10.551 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:11.791 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:11 smithi044 bash[16231]: cluster 2024-02-19T21:59:10.455732+0000 mgr.smithi044.ikbsam (mgr.14184) 153 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:11.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:11 smithi104 bash[21066]: cluster 2024-02-19T21:59:10.455732+0000 mgr.smithi044.ikbsam (mgr.14184) 153 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:13.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:13 smithi104 bash[21066]: cluster 2024-02-19T21:59:12.456354+0000 mgr.smithi044.ikbsam (mgr.14184) 154 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:13.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:13 smithi044 bash[16231]: cluster 2024-02-19T21:59:12.456354+0000 mgr.smithi044.ikbsam (mgr.14184) 154 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:14.041 INFO:teuthology.orchestra.run.smithi044.stdout:150323855387 2024-02-19T21:59:14.042 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-02-19T21:59:15.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:15 smithi104 bash[21066]: cluster 2024-02-19T21:59:14.456942+0000 mgr.smithi044.ikbsam (mgr.14184) 155 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:15.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:15 smithi044 bash[16231]: cluster 2024-02-19T21:59:14.456942+0000 mgr.smithi044.ikbsam (mgr.14184) 155 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:17.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:17 smithi104 bash[21066]: cluster 2024-02-19T21:59:16.457596+0000 mgr.smithi044.ikbsam (mgr.14184) 156 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:17.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:17 smithi044 bash[16231]: cluster 2024-02-19T21:59:16.457596+0000 mgr.smithi044.ikbsam (mgr.14184) 156 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:18.892 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:19.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:19 smithi104 bash[21066]: cluster 2024-02-19T21:59:18.458192+0000 mgr.smithi044.ikbsam (mgr.14184) 157 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:19.896 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:19 smithi044 bash[16231]: cluster 2024-02-19T21:59:18.458192+0000 mgr.smithi044.ikbsam (mgr.14184) 157 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:21.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:21 smithi044 bash[16231]: cluster 2024-02-19T21:59:20.458820+0000 mgr.smithi044.ikbsam (mgr.14184) 158 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:21.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:21 smithi104 bash[21066]: cluster 2024-02-19T21:59:20.458820+0000 mgr.smithi044.ikbsam (mgr.14184) 158 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:22.283 INFO:teuthology.orchestra.run.smithi044.stdout:124554051612 2024-02-19T21:59:22.283 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-02-19T21:59:23.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:23 smithi104 bash[21066]: cluster 2024-02-19T21:59:22.459488+0000 mgr.smithi044.ikbsam (mgr.14184) 159 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:23.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:23 smithi044 bash[16231]: cluster 2024-02-19T21:59:22.459488+0000 mgr.smithi044.ikbsam (mgr.14184) 159 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:25.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:25 smithi104 bash[21066]: cluster 2024-02-19T21:59:24.460120+0000 mgr.smithi044.ikbsam (mgr.14184) 160 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:25.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:25 smithi044 bash[16231]: cluster 2024-02-19T21:59:24.460120+0000 mgr.smithi044.ikbsam (mgr.14184) 160 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:27.130 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:27.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:27 smithi104 bash[21066]: cluster 2024-02-19T21:59:26.460724+0000 mgr.smithi044.ikbsam (mgr.14184) 161 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:27.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:27 smithi044 bash[16231]: cluster 2024-02-19T21:59:26.460724+0000 mgr.smithi044.ikbsam (mgr.14184) 161 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:29.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:29 smithi104 bash[21066]: cluster 2024-02-19T21:59:28.461390+0000 mgr.smithi044.ikbsam (mgr.14184) 162 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:29.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:29 smithi044 bash[16231]: cluster 2024-02-19T21:59:28.461390+0000 mgr.smithi044.ikbsam (mgr.14184) 162 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:30.735 INFO:teuthology.orchestra.run.smithi044.stdout:167503724572 2024-02-19T21:59:30.735 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-02-19T21:59:31.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:31 smithi044 bash[16231]: cluster 2024-02-19T21:59:30.461980+0000 mgr.smithi044.ikbsam (mgr.14184) 163 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:32.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:31 smithi104 bash[21066]: cluster 2024-02-19T21:59:30.461980+0000 mgr.smithi044.ikbsam (mgr.14184) 163 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:33.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:33 smithi044 bash[16231]: cluster 2024-02-19T21:59:32.462676+0000 mgr.smithi044.ikbsam (mgr.14184) 164 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:34.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:33 smithi104 bash[21066]: cluster 2024-02-19T21:59:32.462676+0000 mgr.smithi044.ikbsam (mgr.14184) 164 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:35.572 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:35.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:35 smithi044 bash[16231]: cluster 2024-02-19T21:59:34.463323+0000 mgr.smithi044.ikbsam (mgr.14184) 165 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:36.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:35 smithi104 bash[21066]: cluster 2024-02-19T21:59:34.463323+0000 mgr.smithi044.ikbsam (mgr.14184) 165 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:37.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:37 smithi044 bash[16231]: cluster 2024-02-19T21:59:36.463885+0000 mgr.smithi044.ikbsam (mgr.14184) 166 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:38.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:37 smithi104 bash[21066]: cluster 2024-02-19T21:59:36.463885+0000 mgr.smithi044.ikbsam (mgr.14184) 166 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:38.705 INFO:teuthology.orchestra.run.smithi044.stdout:68719476772 2024-02-19T21:59:38.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:38 smithi044 bash[16231]: audit 2024-02-19T21:59:38.261550+0000 mon.smithi044 (mon.0) 591 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:59:39.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:38 smithi104 bash[21066]: audit 2024-02-19T21:59:38.261550+0000 mon.smithi044 (mon.0) 591 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T21:59:39.338 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476759 got 68719476772 for osd.0 2024-02-19T21:59:39.338 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-02-19T21:59:40.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:39 smithi104 bash[21066]: cluster 2024-02-19T21:59:38.464587+0000 mgr.smithi044.ikbsam (mgr.14184) 167 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:40.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:39 smithi104 bash[21066]: audit 2024-02-19T21:59:38.705672+0000 mon.smithi044 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.44:0/3987726418' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-19T21:59:40.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:39 smithi044 bash[16231]: cluster 2024-02-19T21:59:38.464587+0000 mgr.smithi044.ikbsam (mgr.14184) 167 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:40.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:39 smithi044 bash[16231]: audit 2024-02-19T21:59:38.705672+0000 mon.smithi044 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.44:0/3987726418' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-19T21:59:42.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:41 smithi104 bash[21066]: cluster 2024-02-19T21:59:40.465238+0000 mgr.smithi044.ikbsam (mgr.14184) 168 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:42.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:41 smithi044 bash[16231]: cluster 2024-02-19T21:59:40.465238+0000 mgr.smithi044.ikbsam (mgr.14184) 168 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:44.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:43 smithi104 bash[21066]: cluster 2024-02-19T21:59:42.465905+0000 mgr.smithi044.ikbsam (mgr.14184) 169 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:44.142 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:44.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:43 smithi044 bash[16231]: cluster 2024-02-19T21:59:42.465905+0000 mgr.smithi044.ikbsam (mgr.14184) 169 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:45.373 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: audit 2024-02-19T21:59:44.080266+0000 mon.smithi044 (mon.0) 593 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:59:45.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: audit 2024-02-19T21:59:44.312617+0000 mon.smithi044 (mon.0) 594 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:59:45.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: cluster 2024-02-19T21:59:44.466526+0000 mgr.smithi044.ikbsam (mgr.14184) 170 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:45.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: audit 2024-02-19T21:59:44.612512+0000 mon.smithi044 (mon.0) 595 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:59:45.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: audit 2024-02-19T21:59:44.614103+0000 mon.smithi044 (mon.0) 596 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:59:45.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: audit 2024-02-19T21:59:44.625109+0000 mon.smithi044 (mon.0) 597 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:59:45.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:45 smithi104 bash[21066]: audit 2024-02-19T21:59:44.636593+0000 mon.smithi044 (mon.0) 598 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:59:45.402 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: audit 2024-02-19T21:59:44.080266+0000 mon.smithi044 (mon.0) 593 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:59:45.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: audit 2024-02-19T21:59:44.312617+0000 mon.smithi044 (mon.0) 594 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:59:45.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: cluster 2024-02-19T21:59:44.466526+0000 mgr.smithi044.ikbsam (mgr.14184) 170 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:45.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: audit 2024-02-19T21:59:44.612512+0000 mon.smithi044 (mon.0) 595 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T21:59:45.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: audit 2024-02-19T21:59:44.614103+0000 mon.smithi044 (mon.0) 596 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T21:59:45.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: audit 2024-02-19T21:59:44.625109+0000 mon.smithi044 (mon.0) 597 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T21:59:45.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:45 smithi044 bash[16231]: audit 2024-02-19T21:59:44.636593+0000 mon.smithi044 (mon.0) 598 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T21:59:47.238 INFO:teuthology.orchestra.run.smithi044.stdout:103079215138 2024-02-19T21:59:47.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:47 smithi044 bash[16231]: cluster 2024-02-19T21:59:46.467156+0000 mgr.smithi044.ikbsam (mgr.14184) 171 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:47.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:47 smithi044 bash[16231]: audit 2024-02-19T21:59:47.238599+0000 mon.smithi044 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.44:0/1311745269' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-19T21:59:47.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:47 smithi104 bash[21066]: cluster 2024-02-19T21:59:46.467156+0000 mgr.smithi044.ikbsam (mgr.14184) 171 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:47.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:47 smithi104 bash[21066]: audit 2024-02-19T21:59:47.238599+0000 mon.smithi044 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.44:0/1311745269' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-19T21:59:47.959 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215125 got 103079215138 for osd.1 2024-02-19T21:59:47.960 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-02-19T21:59:49.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:49 smithi104 bash[21066]: cluster 2024-02-19T21:59:48.467753+0000 mgr.smithi044.ikbsam (mgr.14184) 172 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:49.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:49 smithi044 bash[16231]: cluster 2024-02-19T21:59:48.467753+0000 mgr.smithi044.ikbsam (mgr.14184) 172 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:51.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:51 smithi104 bash[21066]: cluster 2024-02-19T21:59:50.468387+0000 mgr.smithi044.ikbsam (mgr.14184) 173 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:51.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:51 smithi044 bash[16231]: cluster 2024-02-19T21:59:50.468387+0000 mgr.smithi044.ikbsam (mgr.14184) 173 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:52.806 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T21:59:53.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:53 smithi104 bash[21066]: cluster 2024-02-19T21:59:52.469072+0000 mgr.smithi044.ikbsam (mgr.14184) 174 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:53.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:53 smithi044 bash[16231]: cluster 2024-02-19T21:59:52.469072+0000 mgr.smithi044.ikbsam (mgr.14184) 174 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:55.708 INFO:teuthology.orchestra.run.smithi044.stdout:85899345958 2024-02-19T21:59:55.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:55 smithi104 bash[21066]: cluster 2024-02-19T21:59:54.469648+0000 mgr.smithi044.ikbsam (mgr.14184) 175 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:55.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:55 smithi044 bash[16231]: cluster 2024-02-19T21:59:54.469648+0000 mgr.smithi044.ikbsam (mgr.14184) 175 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:56.359 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345945 got 85899345958 for osd.2 2024-02-19T21:59:56.359 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-02-19T21:59:56.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:56 smithi044 bash[16231]: audit 2024-02-19T21:59:55.707743+0000 mon.smithi044 (mon.0) 600 : audit [DBG] from='client.? 172.21.15.44:0/1533330488' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-19T21:59:56.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:56 smithi104 bash[21066]: audit 2024-02-19T21:59:55.707743+0000 mon.smithi044 (mon.0) 600 : audit [DBG] from='client.? 172.21.15.44:0/1533330488' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-19T21:59:57.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:57 smithi104 bash[21066]: cluster 2024-02-19T21:59:56.470240+0000 mgr.smithi044.ikbsam (mgr.14184) 176 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:57.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:57 smithi044 bash[16231]: cluster 2024-02-19T21:59:56.470240+0000 mgr.smithi044.ikbsam (mgr.14184) 176 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:59.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 21:59:59 smithi104 bash[21066]: cluster 2024-02-19T21:59:58.470833+0000 mgr.smithi044.ikbsam (mgr.14184) 177 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T21:59:59.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 21:59:59 smithi044 bash[16231]: cluster 2024-02-19T21:59:58.470833+0000 mgr.smithi044.ikbsam (mgr.14184) 177 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:00.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:00 smithi104 bash[21066]: cluster 2024-02-19T22:00:00.000148+0000 mon.smithi044 (mon.0) 601 : cluster [INF] overall HEALTH_OK 2024-02-19T22:00:00.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:00 smithi044 bash[16231]: cluster 2024-02-19T22:00:00.000148+0000 mon.smithi044 (mon.0) 601 : cluster [INF] overall HEALTH_OK 2024-02-19T22:00:01.208 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:01.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:01 smithi104 bash[21066]: cluster 2024-02-19T22:00:00.471373+0000 mgr.smithi044.ikbsam (mgr.14184) 178 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:01.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:01 smithi044 bash[16231]: cluster 2024-02-19T22:00:00.471373+0000 mgr.smithi044.ikbsam (mgr.14184) 178 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:03.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:03 smithi104 bash[21066]: cluster 2024-02-19T22:00:02.472001+0000 mgr.smithi044.ikbsam (mgr.14184) 179 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:03.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:03 smithi044 bash[16231]: cluster 2024-02-19T22:00:02.472001+0000 mgr.smithi044.ikbsam (mgr.14184) 179 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:04.360 INFO:teuthology.orchestra.run.smithi044.stdout:128849018917 2024-02-19T22:00:04.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:04 smithi104 bash[21066]: audit 2024-02-19T22:00:04.360461+0000 mon.smithi044 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.44:0/919433948' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-19T22:00:04.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:04 smithi044 bash[16231]: audit 2024-02-19T22:00:04.360461+0000 mon.smithi044 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.44:0/919433948' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-19T22:00:04.956 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018904 got 128849018917 for osd.3 2024-02-19T22:00:04.956 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-02-19T22:00:05.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:05 smithi104 bash[21066]: cluster 2024-02-19T22:00:04.472621+0000 mgr.smithi044.ikbsam (mgr.14184) 180 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:05.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:05 smithi044 bash[16231]: cluster 2024-02-19T22:00:04.472621+0000 mgr.smithi044.ikbsam (mgr.14184) 180 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:07.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:07 smithi104 bash[21066]: cluster 2024-02-19T22:00:06.473270+0000 mgr.smithi044.ikbsam (mgr.14184) 181 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:07.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:07 smithi044 bash[16231]: cluster 2024-02-19T22:00:06.473270+0000 mgr.smithi044.ikbsam (mgr.14184) 181 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:09.812 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:09.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:09 smithi104 bash[21066]: cluster 2024-02-19T22:00:08.473885+0000 mgr.smithi044.ikbsam (mgr.14184) 182 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:09.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:09 smithi044 bash[16231]: cluster 2024-02-19T22:00:08.473885+0000 mgr.smithi044.ikbsam (mgr.14184) 182 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:11.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:11 smithi104 bash[21066]: cluster 2024-02-19T22:00:10.474581+0000 mgr.smithi044.ikbsam (mgr.14184) 183 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:11.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:11 smithi044 bash[16231]: cluster 2024-02-19T22:00:10.474581+0000 mgr.smithi044.ikbsam (mgr.14184) 183 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:12.857 INFO:teuthology.orchestra.run.smithi044.stdout:107374182441 2024-02-19T22:00:13.476 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182428 got 107374182441 for osd.4 2024-02-19T22:00:13.477 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-02-19T22:00:13.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:13 smithi104 bash[21066]: cluster 2024-02-19T22:00:12.475158+0000 mgr.smithi044.ikbsam (mgr.14184) 184 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:13.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:13 smithi104 bash[21066]: audit 2024-02-19T22:00:12.857017+0000 mon.smithi044 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.44:0/69181' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-19T22:00:13.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:13 smithi044 bash[16231]: cluster 2024-02-19T22:00:12.475158+0000 mgr.smithi044.ikbsam (mgr.14184) 184 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:13.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:13 smithi044 bash[16231]: audit 2024-02-19T22:00:12.857017+0000 mon.smithi044 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.44:0/69181' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-19T22:00:15.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:15 smithi104 bash[21066]: cluster 2024-02-19T22:00:14.475728+0000 mgr.smithi044.ikbsam (mgr.14184) 185 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:15.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:15 smithi044 bash[16231]: cluster 2024-02-19T22:00:14.475728+0000 mgr.smithi044.ikbsam (mgr.14184) 185 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:17.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:17 smithi104 bash[21066]: cluster 2024-02-19T22:00:16.476340+0000 mgr.smithi044.ikbsam (mgr.14184) 186 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:17.902 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:17 smithi044 bash[16231]: cluster 2024-02-19T22:00:16.476340+0000 mgr.smithi044.ikbsam (mgr.14184) 186 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:18.325 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:19.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:19 smithi044 bash[16231]: cluster 2024-02-19T22:00:18.476957+0000 mgr.smithi044.ikbsam (mgr.14184) 187 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:20.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:19 smithi104 bash[21066]: cluster 2024-02-19T22:00:18.476957+0000 mgr.smithi044.ikbsam (mgr.14184) 187 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:21.402 INFO:teuthology.orchestra.run.smithi044.stdout:150323855400 2024-02-19T22:00:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:21 smithi044 bash[16231]: cluster 2024-02-19T22:00:20.477599+0000 mgr.smithi044.ikbsam (mgr.14184) 188 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:21.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:21 smithi044 bash[16231]: audit 2024-02-19T22:00:21.401525+0000 mon.smithi044 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.44:0/1807078394' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-19T22:00:22.086 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855387 got 150323855400 for osd.5 2024-02-19T22:00:22.086 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-02-19T22:00:22.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:21 smithi104 bash[21066]: cluster 2024-02-19T22:00:20.477599+0000 mgr.smithi044.ikbsam (mgr.14184) 188 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:22.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:21 smithi104 bash[21066]: audit 2024-02-19T22:00:21.401525+0000 mon.smithi044 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.44:0/1807078394' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-19T22:00:23.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:23 smithi044 bash[16231]: cluster 2024-02-19T22:00:22.478189+0000 mgr.smithi044.ikbsam (mgr.14184) 189 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:24.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:23 smithi104 bash[21066]: cluster 2024-02-19T22:00:22.478189+0000 mgr.smithi044.ikbsam (mgr.14184) 189 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:25.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:25 smithi044 bash[16231]: cluster 2024-02-19T22:00:24.478772+0000 mgr.smithi044.ikbsam (mgr.14184) 190 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:26.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:25 smithi104 bash[21066]: cluster 2024-02-19T22:00:24.478772+0000 mgr.smithi044.ikbsam (mgr.14184) 190 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:26.936 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:27.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:27 smithi044 bash[16231]: cluster 2024-02-19T22:00:26.479357+0000 mgr.smithi044.ikbsam (mgr.14184) 191 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:28.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:27 smithi104 bash[21066]: cluster 2024-02-19T22:00:26.479357+0000 mgr.smithi044.ikbsam (mgr.14184) 191 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:29.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:29 smithi044 bash[16231]: cluster 2024-02-19T22:00:28.479907+0000 mgr.smithi044.ikbsam (mgr.14184) 192 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:30.031 INFO:teuthology.orchestra.run.smithi044.stdout:124554051626 2024-02-19T22:00:30.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:29 smithi104 bash[21066]: cluster 2024-02-19T22:00:28.479907+0000 mgr.smithi044.ikbsam (mgr.14184) 192 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:30.681 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051612 got 124554051626 for osd.6 2024-02-19T22:00:30.681 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-02-19T22:00:31.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:30 smithi104 bash[21066]: audit 2024-02-19T22:00:30.031500+0000 mon.smithi044 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.44:0/3488310726' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-19T22:00:31.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:30 smithi044 bash[16231]: audit 2024-02-19T22:00:30.031500+0000 mon.smithi044 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.44:0/3488310726' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-19T22:00:32.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:31 smithi104 bash[21066]: cluster 2024-02-19T22:00:30.480469+0000 mgr.smithi044.ikbsam (mgr.14184) 193 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:32.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:31 smithi044 bash[16231]: cluster 2024-02-19T22:00:30.480469+0000 mgr.smithi044.ikbsam (mgr.14184) 193 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:34.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:33 smithi104 bash[21066]: cluster 2024-02-19T22:00:32.481111+0000 mgr.smithi044.ikbsam (mgr.14184) 194 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:34.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:33 smithi044 bash[16231]: cluster 2024-02-19T22:00:32.481111+0000 mgr.smithi044.ikbsam (mgr.14184) 194 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:35.525 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:36.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:35 smithi104 bash[21066]: cluster 2024-02-19T22:00:34.481778+0000 mgr.smithi044.ikbsam (mgr.14184) 195 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:36.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:35 smithi044 bash[16231]: cluster 2024-02-19T22:00:34.481778+0000 mgr.smithi044.ikbsam (mgr.14184) 195 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:38.049 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:37 smithi044 bash[16231]: cluster 2024-02-19T22:00:36.482477+0000 mgr.smithi044.ikbsam (mgr.14184) 196 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:38.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:37 smithi104 bash[21066]: cluster 2024-02-19T22:00:36.482477+0000 mgr.smithi044.ikbsam (mgr.14184) 196 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:38.499 INFO:teuthology.orchestra.run.smithi044.stdout:167503724585 2024-02-19T22:00:38.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:38 smithi044 bash[16231]: audit 2024-02-19T22:00:38.498928+0000 mon.smithi044 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.44:0/3912790982' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-19T22:00:39.108 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724572 got 167503724585 for osd.7 2024-02-19T22:00:39.108 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-02-19T22:00:39.109 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph pg dump --format=json 2024-02-19T22:00:39.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:38 smithi104 bash[21066]: audit 2024-02-19T22:00:38.498928+0000 mon.smithi044 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.44:0/3912790982' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-19T22:00:40.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:39 smithi104 bash[21066]: cluster 2024-02-19T22:00:38.482930+0000 mgr.smithi044.ikbsam (mgr.14184) 197 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:40.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:39 smithi044 bash[16231]: cluster 2024-02-19T22:00:38.482930+0000 mgr.smithi044.ikbsam (mgr.14184) 197 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:42.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:41 smithi104 bash[21066]: cluster 2024-02-19T22:00:40.483525+0000 mgr.smithi044.ikbsam (mgr.14184) 198 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:42.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:41 smithi044 bash[16231]: cluster 2024-02-19T22:00:40.483525+0000 mgr.smithi044.ikbsam (mgr.14184) 198 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:43.948 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:44.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:43 smithi104 bash[21066]: cluster 2024-02-19T22:00:42.484181+0000 mgr.smithi044.ikbsam (mgr.14184) 199 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:44.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:43 smithi044 bash[16231]: cluster 2024-02-19T22:00:42.484181+0000 mgr.smithi044.ikbsam (mgr.14184) 199 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:44.997 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:44 smithi044 bash[16231]: audit 2024-02-19T22:00:44.646973+0000 mon.smithi044 (mon.0) 607 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:00:45.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:44 smithi104 bash[21066]: audit 2024-02-19T22:00:44.646973+0000 mon.smithi044 (mon.0) 607 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:00:46.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:45 smithi104 bash[21066]: cluster 2024-02-19T22:00:44.484941+0000 mgr.smithi044.ikbsam (mgr.14184) 200 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:46.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:45 smithi044 bash[16231]: cluster 2024-02-19T22:00:44.484941+0000 mgr.smithi044.ikbsam (mgr.14184) 200 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:47.050 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:00:47.053 INFO:teuthology.orchestra.run.smithi044.stderr:dumped all 2024-02-19T22:00:47.638 INFO:teuthology.orchestra.run.smithi044.stdout:{"pg_ready":true,"pg_map":{"version":188,"stamp":"2024-02-19T22:00:46.485272+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":2379964,"kb_used_data":3196,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548484,"statfs":{"total":767926730752,"available":765489647616,"internally_reserved":0,"allocated":3272704,"data_stored":1267989,"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":41,"state":"active+clean","last_fresh":"2024-02-19T21:57:23.408477+0000","last_change":"2024-02-19T21:57:23.408477+0000","last_active":"2024-02-19T21:57:23.408477+0000","last_peered":"2024-02-19T21:57:23.408477+0000","last_clean":"2024-02-19T21:57:23.408477+0000","last_became_active":"2024-02-19T21:57:23.408056+0000","last_became_peered":"2024-02-19T21:57:23.408056+0000","last_unstale":"2024-02-19T21:57:23.408477+0000","last_undegraded":"2024-02-19T21:57:23.408477+0000","last_fullsized":"2024-02-19T21:57:23.408477+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-19T21:57:03.784862+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-19T21:57:03.784862+0000","last_clean_scrub_stamp":"2024-02-19T21:57:03.784862+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":39,"seq":167503724587,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.83699999999999997,"5min":0.84499999999999997,"15min":0.85499999999999998},"min":{"1min":0.69299999999999995,"5min":0.495,"15min":0.495},"max":{"1min":1.105,"5min":1.244,"15min":1.244},"last":0.80400000000000005},{"interface":"front","average":{"1min":0.96999999999999997,"5min":0.93300000000000005,"15min":0.92900000000000005},"min":{"1min":0.628,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.181,"5min":1.3069999999999999,"15min":1.3069999999999999},"last":1.103}]},{"osd":1,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.80300000000000005,"5min":0.81699999999999995,"15min":0.81299999999999994},"min":{"1min":0.61799999999999999,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":1.2529999999999999,"5min":1.2749999999999999,"15min":1.2749999999999999},"last":0.61399999999999999},{"interface":"front","average":{"1min":1.0680000000000001,"5min":0.91100000000000003,"15min":0.88100000000000001},"min":{"1min":0.66800000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":3.9580000000000002,"5min":3.9580000000000002,"15min":3.9580000000000002},"last":1.0109999999999999}]},{"osd":2,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.93200000000000005,"5min":0.92600000000000005,"15min":0.92500000000000004},"min":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"max":{"1min":1.196,"5min":1.397,"15min":1.397},"last":0.65000000000000002},{"interface":"front","average":{"1min":0.97699999999999998,"5min":0.96499999999999997,"15min":0.96399999999999997},"min":{"1min":0.75,"5min":0.52100000000000002,"15min":0.52100000000000002},"max":{"1min":1.1970000000000001,"5min":1.3480000000000001,"15min":1.3480000000000001},"last":0.95199999999999996}]},{"osd":3,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.93200000000000005,"5min":0.95699999999999996,"15min":0.95499999999999996},"min":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"max":{"1min":1.339,"5min":1.448,"15min":1.448},"last":1.2050000000000001},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.93899999999999995,"15min":0.93100000000000005},"min":{"1min":0.495,"5min":0.495,"15min":0.495},"max":{"1min":1.2490000000000001,"5min":1.7110000000000001,"15min":1.7110000000000001},"last":0.75}]},{"osd":4,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.103,"5min":1.0509999999999999,"15min":1.0349999999999999},"min":{"1min":0.75600000000000001,"5min":0.747,"15min":0.747},"max":{"1min":1.2889999999999999,"5min":1.625,"15min":1.625},"last":0.83399999999999996},{"interface":"front","average":{"1min":1.103,"5min":1.1080000000000001,"15min":1.1120000000000001},"min":{"1min":0.80900000000000005,"5min":0.74199999999999999,"15min":0.74199999999999999},"max":{"1min":1.343,"5min":1.5620000000000001,"15min":1.5620000000000001},"last":1.0720000000000001}]},{"osd":5,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.0669999999999999,"5min":1.1200000000000001,"15min":1.1279999999999999},"min":{"1min":0.70399999999999996,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.494,"5min":1.7669999999999999,"15min":1.7669999999999999},"last":0.71999999999999997},{"interface":"front","average":{"1min":1.159,"5min":1.1359999999999999,"15min":1.1200000000000001},"min":{"1min":0.79400000000000004,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.4750000000000001,"5min":1.796,"15min":1.796},"last":1.2969999999999999}]},{"osd":6,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.278,"5min":1.238,"15min":1.2230000000000001},"min":{"1min":0.88700000000000001,"5min":0.85999999999999999,"15min":0.85999999999999999},"max":{"1min":1.76,"5min":1.859,"15min":1.859},"last":1.2549999999999999},{"interface":"front","average":{"1min":1.337,"5min":1.258,"15min":1.2569999999999999},"min":{"1min":0.96099999999999997,"5min":0.80400000000000005,"15min":0.80400000000000005},"max":{"1min":1.7430000000000001,"5min":1.9139999999999999,"15min":1.9139999999999999},"last":0.91000000000000003}]}]},{"osd":5,"up_from":35,"seq":150323855405,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.94699999999999995,"5min":0.82699999999999996,"15min":0.81299999999999994},"min":{"1min":0.64000000000000001,"5min":0.55600000000000005,"15min":0.55600000000000005},"max":{"1min":1.228,"5min":1.228,"15min":1.228},"last":0.78800000000000003},{"interface":"front","average":{"1min":0.90300000000000002,"5min":0.85999999999999999,"15min":0.85199999999999998},"min":{"1min":0.67600000000000005,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.248,"5min":1.248,"15min":1.248},"last":0.64000000000000001}]},{"osd":1,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.79700000000000004,"5min":0.74399999999999999,"15min":0.72599999999999998},"min":{"1min":0.63900000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.0309999999999999,"5min":1.304,"15min":1.304},"last":0.89300000000000002},{"interface":"front","average":{"1min":0.86299999999999999,"5min":0.91400000000000003,"15min":0.95999999999999996},"min":{"1min":0.64600000000000002,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":1.1859999999999999,"5min":2.887,"15min":2.887},"last":0.50700000000000001}]},{"osd":2,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.98999999999999999,"5min":0.98899999999999999,"15min":0.98999999999999999},"min":{"1min":0.78100000000000003,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.2010000000000001,"5min":1.6839999999999999,"15min":1.6839999999999999},"last":0.73899999999999999},{"interface":"front","average":{"1min":0.92600000000000005,"5min":0.96299999999999997,"15min":0.97099999999999997},"min":{"1min":0.67800000000000005,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.4350000000000001,"5min":1.4350000000000001,"15min":1.4350000000000001},"last":0.93500000000000005}]},{"osd":3,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.99199999999999999,"5min":0.89500000000000002,"15min":0.88300000000000001},"min":{"1min":0.66000000000000003,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.3149999999999999,"5min":1.339,"15min":1.339},"last":0.71699999999999997},{"interface":"front","average":{"1min":1.0549999999999999,"5min":0.95999999999999996,"15min":0.94199999999999995},"min":{"1min":0.75,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":1.5700000000000001,"5min":2.2650000000000001,"15min":2.2650000000000001},"last":1.0129999999999999}]},{"osd":4,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":1.0800000000000001,"5min":1.0589999999999999,"15min":1.0609999999999999},"min":{"1min":0.91500000000000004,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.2589999999999999,"5min":1.502,"15min":1.502},"last":1.0820000000000001},{"interface":"front","average":{"1min":1.131,"5min":1.0940000000000001,"15min":1.097},"min":{"1min":0.754,"5min":0.73799999999999999,"15min":0.73799999999999999},"max":{"1min":1.3879999999999999,"5min":1.7490000000000001,"15min":1.7490000000000001},"last":0.871}]},{"osd":6,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":1.1339999999999999,"5min":1.0940000000000001,"15min":1.0860000000000001},"min":{"1min":0.84999999999999998,"5min":0.63700000000000001,"15min":0.63700000000000001},"max":{"1min":1.5129999999999999,"5min":1.5129999999999999,"15min":1.5129999999999999},"last":1.004},{"interface":"front","average":{"1min":1.1679999999999999,"5min":1.1439999999999999,"15min":1.1459999999999999},"min":{"1min":0.81299999999999994,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":1.3939999999999999,"5min":1.845,"15min":1.845},"last":1.1779999999999999}]},{"osd":7,"last update":"Mon Feb 19 22:00:27 2024","interfaces":[{"interface":"back","average":{"1min":1.2150000000000001,"5min":1.1339999999999999,"15min":1.119},"min":{"1min":0.871,"5min":0.436,"15min":0.436},"max":{"1min":1.496,"5min":1.496,"15min":1.496},"last":1.131},{"interface":"front","average":{"1min":1.2669999999999999,"5min":1.1419999999999999,"15min":1.123},"min":{"1min":1.0109999999999999,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.532,"5min":1.532,"15min":1.532},"last":1.04}]}]},{"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":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:06 2024","interfaces":[{"interface":"back","average":{"1min":0.66300000000000003,"5min":0.69699999999999995,"15min":0.70799999999999996},"min":{"1min":0.53100000000000003,"5min":0.40000000000000002,"15min":0.40000000000000002},"max":{"1min":0.97999999999999998,"5min":1.143,"15min":1.143},"last":0.95399999999999996},{"interface":"front","average":{"1min":0.75900000000000001,"5min":0.72699999999999998,"15min":0.72699999999999998},"min":{"1min":0.55500000000000005,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":1.2010000000000001,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":0.68300000000000005}]},{"osd":1,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.85099999999999998,"5min":0.92700000000000005,"15min":0.95299999999999996},"min":{"1min":0.65400000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.073,"5min":1.359,"15min":1.359},"last":1.0329999999999999},{"interface":"front","average":{"1min":0.90800000000000003,"5min":0.89400000000000002,"15min":0.90200000000000002},"min":{"1min":0.70599999999999996,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.282,"5min":1.464,"15min":1.464},"last":0.74399999999999999}]},{"osd":3,"last update":"Mon Feb 19 22:00:15 2024","interfaces":[{"interface":"back","average":{"1min":1.1639999999999999,"5min":0.98899999999999999,"15min":0.95599999999999996},"min":{"1min":0.73899999999999999,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":3.718,"5min":3.718,"15min":3.718},"last":0.71799999999999997},{"interface":"front","average":{"1min":1.1830000000000001,"5min":1.0780000000000001,"15min":1.0649999999999999},"min":{"1min":0.78500000000000003,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":3.694,"5min":3.694,"15min":3.694},"last":1.0800000000000001}]},{"osd":4,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.88500000000000001,"5min":0.84099999999999997,"15min":0.84499999999999997},"min":{"1min":0.627,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.2490000000000001,"5min":1.371,"15min":1.371},"last":0.83499999999999996},{"interface":"front","average":{"1min":0.94999999999999996,"5min":0.96299999999999997,"15min":0.96599999999999997},"min":{"1min":0.747,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.1879999999999999,"5min":1.4570000000000001,"15min":1.4570000000000001},"last":1.232}]},{"osd":5,"last update":"Mon Feb 19 22:00:19 2024","interfaces":[{"interface":"back","average":{"1min":0.94299999999999995,"5min":0.95599999999999996,"15min":0.95899999999999996},"min":{"1min":0.72299999999999998,"5min":0.60999999999999999,"15min":0.60999999999999999},"max":{"1min":1.1120000000000001,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":1.002},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.0529999999999999,"15min":1.0569999999999999},"min":{"1min":0.83499999999999996,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.325,"5min":1.389,"15min":1.389},"last":0.98099999999999998}]},{"osd":6,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":1.1120000000000001,"5min":1.087,"15min":1.0980000000000001},"min":{"1min":0.92400000000000004,"5min":0.625,"15min":0.625},"max":{"1min":1.2689999999999999,"5min":1.5269999999999999,"15min":1.5269999999999999},"last":1.385},{"interface":"front","average":{"1min":1.107,"5min":1.0880000000000001,"15min":1.0860000000000001},"min":{"1min":0.76600000000000001,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.272,"5min":1.431,"15min":1.431},"last":0.90700000000000003}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.1919999999999999,"5min":1.1910000000000001,"15min":1.2},"min":{"1min":1.036,"5min":0.89500000000000002,"15min":0.89500000000000002},"max":{"1min":1.417,"5min":1.655,"15min":1.655},"last":1.5069999999999999},{"interface":"front","average":{"1min":1.2210000000000001,"5min":1.177,"15min":1.167},"min":{"1min":0.97299999999999998,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.6890000000000001,"5min":1.8029999999999999,"15min":1.8029999999999999},"last":1.1419999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476786,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.83099999999999996,"5min":0.88200000000000001,"15min":0.89400000000000002},"min":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.1639999999999999,"5min":1.1879999999999999,"15min":1.1879999999999999},"last":0.999},{"interface":"front","average":{"1min":0.85599999999999998,"5min":0.86399999999999999,"15min":0.85399999999999998},"min":{"1min":0.69699999999999995,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":1.236,"5min":1.236,"15min":1.236},"last":1.028}]},{"osd":2,"last update":"Mon Feb 19 22:00:08 2024","interfaces":[{"interface":"back","average":{"1min":0.78500000000000003,"5min":0.76900000000000002,"15min":0.77500000000000002},"min":{"1min":0.58299999999999996,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":1.0980000000000001,"5min":1.198,"15min":1.198},"last":0.70799999999999996},{"interface":"front","average":{"1min":0.85799999999999998,"5min":0.81399999999999995,"15min":0.81399999999999995},"min":{"1min":0.60299999999999998,"5min":0.498,"15min":0.498},"max":{"1min":1.429,"5min":1.429,"15min":1.429},"last":0.747}]},{"osd":3,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.04,"5min":0.97799999999999998,"15min":0.97799999999999998},"min":{"1min":0.79800000000000004,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.377,"5min":1.377,"15min":1.377},"last":0.88200000000000001},{"interface":"front","average":{"1min":0.96099999999999997,"5min":0.92000000000000004,"15min":0.91200000000000003},"min":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.333,"5min":1.333,"15min":1.333},"last":0.89700000000000002}]},{"osd":4,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.97099999999999997,"5min":0.92200000000000004,"15min":0.92400000000000004},"min":{"1min":0.60099999999999998,"5min":0.44800000000000001,"15min":0.44800000000000001},"max":{"1min":1.329,"5min":1.329,"15min":1.329},"last":1.089},{"interface":"front","average":{"1min":0.95399999999999996,"5min":0.88,"15min":0.85599999999999998},"min":{"1min":0.54800000000000004,"5min":0.48499999999999999,"15min":0.48499999999999999},"max":{"1min":1.423,"5min":1.423,"15min":1.423},"last":0.81999999999999995}]},{"osd":5,"last update":"Mon Feb 19 22:00:25 2024","interfaces":[{"interface":"back","average":{"1min":0.96699999999999997,"5min":0.94799999999999995,"15min":0.94599999999999995},"min":{"1min":0.70599999999999996,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":1.238,"5min":1.343,"15min":1.343},"last":1.0609999999999999},{"interface":"front","average":{"1min":1.129,"5min":1.0960000000000001,"15min":1.089},"min":{"1min":0.82199999999999995,"5min":0.752,"15min":0.752},"max":{"1min":1.4830000000000001,"5min":1.5880000000000001,"15min":1.5880000000000001},"last":1.159}]},{"osd":6,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.071,"5min":1.012,"15min":0.98799999999999999},"min":{"1min":0.751,"5min":0.52000000000000002,"15min":0.52000000000000002},"max":{"1min":1.5069999999999999,"5min":1.5069999999999999,"15min":1.5069999999999999},"last":1.1200000000000001},{"interface":"front","average":{"1min":1.133,"5min":1.077,"15min":1.069},"min":{"1min":0.95499999999999996,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.431,"5min":1.431,"15min":1.431},"last":1.2330000000000001}]},{"osd":7,"last update":"Mon Feb 19 22:00:25 2024","interfaces":[{"interface":"back","average":{"1min":1.238,"5min":1.2010000000000001,"15min":1.1950000000000001},"min":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.79,"5min":1.79,"15min":1.79},"last":1.2030000000000001},{"interface":"front","average":{"1min":1.29,"5min":1.226,"15min":1.1950000000000001},"min":{"1min":0.86199999999999999,"5min":0.72299999999999998,"15min":0.72299999999999998},"max":{"1min":1.8380000000000001,"5min":1.8380000000000001,"15min":1.8380000000000001},"last":1.268}]}]},{"osd":1,"up_from":24,"seq":103079215150,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297492,"kb_used_data":396,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443564,"statfs":{"total":95990841344,"available":95686209536,"internally_reserved":0,"allocated":405504,"data_stored":158223,"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":"Mon Feb 19 22:00:09 2024","interfaces":[{"interface":"back","average":{"1min":0.86899999999999999,"5min":0.85699999999999998,"15min":0.83799999999999997},"min":{"1min":0.65000000000000002,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.3400000000000001,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":0.61899999999999999},{"interface":"front","average":{"1min":0.86599999999999999,"5min":0.83899999999999997,"15min":0.84099999999999997},"min":{"1min":0.67600000000000005,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.288,"5min":1.4450000000000001,"15min":1.4450000000000001},"last":0.71499999999999997}]},{"osd":2,"last update":"Mon Feb 19 22:00:09 2024","interfaces":[{"interface":"back","average":{"1min":0.85099999999999998,"5min":0.871,"15min":0.86199999999999999},"min":{"1min":0.625,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":1.0209999999999999,"5min":1.337,"15min":1.337},"last":1.016},{"interface":"front","average":{"1min":1.03,"5min":0.97399999999999998,"15min":0.96199999999999997},"min":{"1min":0.67600000000000005,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.3859999999999999,"5min":1.3959999999999999,"15min":1.3959999999999999},"last":0.96999999999999997}]},{"osd":3,"last update":"Mon Feb 19 22:00:15 2024","interfaces":[{"interface":"back","average":{"1min":1.0720000000000001,"5min":0.98599999999999999,"15min":0.98499999999999999},"min":{"1min":0.63700000000000001,"5min":0.45600000000000002,"15min":0.45600000000000002},"max":{"1min":1.3109999999999999,"5min":1.5189999999999999,"15min":1.5189999999999999},"last":0.84099999999999997},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.875,"15min":0.86699999999999999},"min":{"1min":0.51900000000000002,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":1.2609999999999999,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":1.1339999999999999}]},{"osd":4,"last update":"Mon Feb 19 22:00:09 2024","interfaces":[{"interface":"back","average":{"1min":1.0760000000000001,"5min":0.97599999999999998,"15min":0.96499999999999997},"min":{"1min":0.77200000000000002,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.6519999999999999,"5min":1.6519999999999999,"15min":1.6519999999999999},"last":1.081},{"interface":"front","average":{"1min":1.0449999999999999,"5min":0.99399999999999999,"15min":0.98299999999999998},"min":{"1min":0.72599999999999998,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1930000000000001,"5min":1.708,"15min":1.708},"last":1.2290000000000001}]},{"osd":5,"last update":"Mon Feb 19 22:00:19 2024","interfaces":[{"interface":"back","average":{"1min":1.232,"5min":1.101,"15min":1.087},"min":{"1min":0.89600000000000002,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.4610000000000001,"5min":1.7450000000000001,"15min":1.7450000000000001},"last":1.0469999999999999},{"interface":"front","average":{"1min":1.1479999999999999,"5min":1.071,"15min":1.0620000000000001},"min":{"1min":0.69199999999999995,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":1.5369999999999999,"5min":1.5369999999999999,"15min":1.5369999999999999},"last":0.89300000000000002}]},{"osd":6,"last update":"Mon Feb 19 22:00:15 2024","interfaces":[{"interface":"back","average":{"1min":1.284,"5min":1.2190000000000001,"15min":1.2070000000000001},"min":{"1min":0.93400000000000005,"5min":0.748,"15min":0.748},"max":{"1min":1.54,"5min":1.903,"15min":1.903},"last":1.113},{"interface":"front","average":{"1min":1.2410000000000001,"5min":1.2010000000000001,"15min":1.1930000000000001},"min":{"1min":1.04,"5min":0.76700000000000002,"15min":0.76700000000000002},"max":{"1min":1.6060000000000001,"5min":1.804,"15min":1.804},"last":1.196}]},{"osd":7,"last update":"Mon Feb 19 22:00:24 2024","interfaces":[{"interface":"back","average":{"1min":1.284,"5min":1.228,"15min":1.22},"min":{"1min":0.82699999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.9590000000000001,"5min":1.9590000000000001,"15min":1.9590000000000001},"last":1.2729999999999999},{"interface":"front","average":{"1min":1.369,"5min":1.3,"15min":1.296},"min":{"1min":1.1060000000000001,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.665,"5min":1.794,"15min":1.794},"last":1.1759999999999999}]}]},{"osd":4,"up_from":25,"seq":107374182448,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:10 2024","interfaces":[{"interface":"back","average":{"1min":0.76600000000000001,"5min":0.78000000000000003,"15min":0.80400000000000005},"min":{"1min":0.55400000000000005,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.0860000000000001,"5min":2.7639999999999998,"15min":2.7639999999999998},"last":0.53900000000000003},{"interface":"front","average":{"1min":0.88300000000000001,"5min":0.92700000000000005,"15min":0.95499999999999996},"min":{"1min":0.66100000000000003,"5min":0.50600000000000001,"15min":0.50600000000000001},"max":{"1min":1.012,"5min":1.831,"15min":1.831},"last":0.76600000000000001}]},{"osd":1,"last update":"Mon Feb 19 22:00:10 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.95899999999999996,"15min":0.99199999999999999},"min":{"1min":0.65900000000000003,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.069,"5min":1.9019999999999999,"15min":1.9019999999999999},"last":1.119},{"interface":"front","average":{"1min":0.89200000000000002,"5min":0.94899999999999995,"15min":0.98299999999999998},"min":{"1min":0.67900000000000005,"5min":0.66500000000000004,"15min":0.66500000000000004},"max":{"1min":1.1990000000000001,"5min":2.6699999999999999,"15min":2.6699999999999999},"last":0.80000000000000004}]},{"osd":2,"last update":"Mon Feb 19 22:00:10 2024","interfaces":[{"interface":"back","average":{"1min":0.72399999999999998,"5min":0.90900000000000003,"15min":0.98299999999999998},"min":{"1min":0.58599999999999997,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":0.875,"5min":2.6930000000000001,"15min":2.6930000000000001},"last":0.84299999999999997},{"interface":"front","average":{"1min":0.81899999999999995,"5min":0.91900000000000004,"15min":0.97699999999999998},"min":{"1min":0.60799999999999998,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":1.0640000000000001,"5min":2.875,"15min":2.875},"last":1.032}]},{"osd":3,"last update":"Mon Feb 19 22:00:20 2024","interfaces":[{"interface":"back","average":{"1min":0.99399999999999999,"5min":0.996,"15min":1},"min":{"1min":0.81499999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"max":{"1min":1.1180000000000001,"5min":2.4470000000000001,"15min":2.4470000000000001},"last":0.69399999999999995},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.125,"15min":1.1499999999999999},"min":{"1min":0.95199999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.2709999999999999,"5min":2.0990000000000002,"15min":2.0990000000000002},"last":1.2509999999999999}]},{"osd":5,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":1.038,"5min":1.0600000000000001,"15min":1.0760000000000001},"min":{"1min":0.80100000000000005,"5min":0.69999999999999996,"15min":0.69999999999999996},"max":{"1min":1.341,"5min":2.7149999999999999,"15min":2.7149999999999999},"last":1.073},{"interface":"front","average":{"1min":1.0629999999999999,"5min":1.1479999999999999,"15min":1.1819999999999999},"min":{"1min":0.877,"5min":0.78200000000000003,"15min":0.78200000000000003},"max":{"1min":1.3089999999999999,"5min":2.4039999999999999,"15min":2.4039999999999999},"last":0.89400000000000002}]},{"osd":6,"last update":"Mon Feb 19 22:00:20 2024","interfaces":[{"interface":"back","average":{"1min":1.101,"5min":1.1180000000000001,"15min":1.1479999999999999},"min":{"1min":0.82699999999999996,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.306,"5min":2.343,"15min":2.343},"last":1.1990000000000001},{"interface":"front","average":{"1min":1.1519999999999999,"5min":1.151,"15min":1.1759999999999999},"min":{"1min":1.024,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.3080000000000001,"5min":2.6139999999999999,"15min":2.6139999999999999},"last":0.98899999999999999}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.21,"5min":1.2310000000000001,"15min":1.2450000000000001},"min":{"1min":0.998,"5min":0.82799999999999996,"15min":0.82799999999999996},"max":{"1min":1.716,"5min":2.4980000000000002,"15min":2.4980000000000002},"last":0.94299999999999995},{"interface":"front","average":{"1min":1.21,"5min":1.2609999999999999,"15min":1.2809999999999999},"min":{"1min":1.069,"5min":0.89900000000000002,"15min":0.89900000000000002},"max":{"1min":1.409,"5min":2.4180000000000001,"15min":2.4180000000000001},"last":1.732}]}]},{"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":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.66700000000000004,"5min":0.67200000000000004,"15min":0.66600000000000004},"min":{"1min":0.498,"5min":0.498,"15min":0.498},"max":{"1min":0.98999999999999999,"5min":1.1220000000000001,"15min":1.1220000000000001},"last":0.69999999999999996},{"interface":"front","average":{"1min":0.71999999999999997,"5min":0.75900000000000001,"15min":0.76300000000000001},"min":{"1min":0.53900000000000003,"5min":0.435,"15min":0.435},"max":{"1min":0.91000000000000003,"5min":1.1779999999999999,"15min":1.1779999999999999},"last":0.78800000000000003}]},{"osd":1,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.89500000000000002,"15min":0.89400000000000002},"min":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":1.0900000000000001,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":0.93300000000000005},{"interface":"front","average":{"1min":1.0369999999999999,"5min":1.014,"15min":1.0069999999999999},"min":{"1min":0.71399999999999997,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.21,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":1.137}]},{"osd":2,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.876,"5min":0.88100000000000001,"15min":0.877},"min":{"1min":0.61099999999999999,"5min":0.59999999999999998,"15min":0.59999999999999998},"max":{"1min":1.107,"5min":1.3360000000000001,"15min":1.3360000000000001},"last":0.84099999999999997},{"interface":"front","average":{"1min":0.86799999999999999,"5min":0.92100000000000004,"15min":0.93799999999999994},"min":{"1min":0.66000000000000003,"5min":0.58599999999999997,"15min":0.58599999999999997},"max":{"1min":1.109,"5min":1.7110000000000001,"15min":1.7110000000000001},"last":0.65000000000000002}]},{"osd":3,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":1.006,"5min":0.98399999999999999,"15min":0.97699999999999998},"min":{"1min":0.81999999999999995,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.266,"5min":1.337,"15min":1.337},"last":0.94499999999999995},{"interface":"front","average":{"1min":0.98999999999999999,"5min":1.008,"15min":1},"min":{"1min":0.75,"5min":0.64900000000000002,"15min":0.64900000000000002},"max":{"1min":1.2390000000000001,"5min":1.3899999999999999,"15min":1.3899999999999999},"last":1.1060000000000001}]},{"osd":4,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":1.0209999999999999,"5min":1.0229999999999999,"15min":1.0269999999999999},"min":{"1min":0.749,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.2869999999999999,"5min":1.577,"15min":1.577},"last":1.004},{"interface":"front","average":{"1min":1.028,"5min":1.0029999999999999,"15min":1.004},"min":{"1min":0.73999999999999999,"5min":0.624,"15min":0.624},"max":{"1min":1.401,"5min":1.556,"15min":1.556},"last":0.748}]},{"osd":5,"last update":"Mon Feb 19 22:00:24 2024","interfaces":[{"interface":"back","average":{"1min":1.113,"5min":1.1439999999999999,"15min":1.147},"min":{"1min":0.97299999999999998,"5min":0.80000000000000004,"15min":0.80000000000000004},"max":{"1min":1.393,"5min":1.7050000000000001,"15min":1.7050000000000001},"last":0.91900000000000004},{"interface":"front","average":{"1min":1.0429999999999999,"5min":1.077,"15min":1.0880000000000001},"min":{"1min":0.87,"5min":0.76400000000000001,"15min":0.76400000000000001},"max":{"1min":1.5369999999999999,"5min":1.6850000000000001,"15min":1.6850000000000001},"last":1.0349999999999999}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.194,"5min":1.181,"15min":1.1759999999999999},"min":{"1min":0.95399999999999996,"5min":0.92800000000000005,"15min":0.92800000000000005},"max":{"1min":1.7330000000000001,"5min":1.7330000000000001,"15min":1.7330000000000001},"last":1.0700000000000001},{"interface":"front","average":{"1min":1.2250000000000001,"5min":1.228,"15min":1.2250000000000001},"min":{"1min":0.92000000000000004,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.7969999999999999,"5min":1.7969999999999999,"15min":1.7969999999999999},"last":1.1659999999999999}]}]},{"osd":3,"up_from":30,"seq":128849018926,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.93300000000000005,"5min":0.92400000000000004,"15min":0.89400000000000002},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.1930000000000001,"5min":2.0009999999999999,"15min":2.0009999999999999},"last":1.2889999999999999},{"interface":"front","average":{"1min":0.84599999999999997,"5min":0.83599999999999997,"15min":0.82399999999999995},"min":{"1min":0.64000000000000001,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.0840000000000001,"5min":1.6180000000000001,"15min":1.6180000000000001},"last":1.012}]},{"osd":1,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.79400000000000004,"5min":0.80700000000000005,"15min":0.78000000000000003},"min":{"1min":0.49299999999999999,"5min":0.45600000000000002,"15min":0.45600000000000002},"max":{"1min":1.1499999999999999,"5min":2.6000000000000001,"15min":2.6000000000000001},"last":0.90400000000000003},{"interface":"front","average":{"1min":0.82999999999999996,"5min":0.83899999999999997,"15min":0.81499999999999995},"min":{"1min":0.55000000000000004,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.4590000000000001,"5min":2.488,"15min":2.488},"last":0.95399999999999996}]},{"osd":2,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.079,"5min":1.0920000000000001,"15min":1.083},"min":{"1min":0.749,"5min":0.628,"15min":0.628},"max":{"1min":1.5680000000000001,"5min":1.952,"15min":1.952},"last":1.45},{"interface":"front","average":{"1min":0.97699999999999998,"5min":1.026,"15min":1.024},"min":{"1min":0.72399999999999998,"5min":0.70399999999999996,"15min":0.70399999999999996},"max":{"1min":1.2609999999999999,"5min":2.105,"15min":2.105},"last":1.242}]},{"osd":4,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.127,"5min":1.1279999999999999,"15min":1.105},"min":{"1min":0.81100000000000005,"5min":0.76700000000000002,"15min":0.76700000000000002},"max":{"1min":1.667,"5min":2.3100000000000001,"15min":2.3100000000000001},"last":1.5569999999999999},{"interface":"front","average":{"1min":1.22,"5min":1.2330000000000001,"15min":1.2250000000000001},"min":{"1min":0.89600000000000002,"5min":0.81599999999999995,"15min":0.81599999999999995},"max":{"1min":1.8029999999999999,"5min":2.3479999999999999,"15min":2.3479999999999999},"last":1.597}]},{"osd":5,"last update":"Mon Feb 19 22:00:24 2024","interfaces":[{"interface":"back","average":{"1min":1,"5min":1.012,"15min":0.97999999999999998},"min":{"1min":0.60499999999999998,"5min":0.58599999999999997,"15min":0.58599999999999997},"max":{"1min":1.411,"5min":2.3300000000000001,"15min":2.3300000000000001},"last":1.387},{"interface":"front","average":{"1min":1.1879999999999999,"5min":1.2230000000000001,"15min":1.2030000000000001},"min":{"1min":0.58299999999999996,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.901,"5min":2.3940000000000001,"15min":2.3940000000000001},"last":1.6499999999999999}]},{"osd":6,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.075,"5min":1.073,"15min":1.0509999999999999},"min":{"1min":0.80200000000000005,"5min":0.67300000000000004,"15min":0.67300000000000004},"max":{"1min":1.766,"5min":1.766,"15min":1.766},"last":1.1830000000000001},{"interface":"front","average":{"1min":1.167,"5min":1.2090000000000001,"15min":1.1950000000000001},"min":{"1min":0.90600000000000003,"5min":0.77400000000000002,"15min":0.77400000000000002},"max":{"1min":1.5169999999999999,"5min":2.2090000000000001,"15min":2.2090000000000001},"last":1.4730000000000001}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.1699999999999999,"5min":1.1499999999999999,"15min":1.103},"min":{"1min":0.89000000000000001,"5min":0.498,"15min":0.498},"max":{"1min":1.621,"5min":2.431,"15min":2.431},"last":1.5189999999999999},{"interface":"front","average":{"1min":1.359,"5min":1.3640000000000001,"15min":1.339},"min":{"1min":0.93700000000000006,"5min":0.876,"15min":0.876},"max":{"1min":1.9830000000000001,"5min":2.5470000000000002,"15min":2.5470000000000002},"last":1.696}]}]}],"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-02-19T22:00:47.641 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph pg dump --format=json 2024-02-19T22:00:47.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:47 smithi044 bash[16231]: cluster 2024-02-19T22:00:46.485569+0000 mgr.smithi044.ikbsam (mgr.14184) 201 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:48.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:47 smithi104 bash[21066]: cluster 2024-02-19T22:00:46.485569+0000 mgr.smithi044.ikbsam (mgr.14184) 201 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:48.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:48 smithi044 bash[16231]: audit 2024-02-19T22:00:47.042180+0000 mgr.smithi044.ikbsam (mgr.14184) 202 : audit [DBG] from='client.14470 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:00:49.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:48 smithi104 bash[21066]: audit 2024-02-19T22:00:47.042180+0000 mgr.smithi044.ikbsam (mgr.14184) 202 : audit [DBG] from='client.14470 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:00:50.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:49 smithi104 bash[21066]: cluster 2024-02-19T22:00:48.486165+0000 mgr.smithi044.ikbsam (mgr.14184) 203 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:50.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:49 smithi044 bash[16231]: cluster 2024-02-19T22:00:48.486165+0000 mgr.smithi044.ikbsam (mgr.14184) 203 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:51.553 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:00:51.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:51 smithi104 bash[21066]: audit 2024-02-19T22:00:50.463340+0000 mon.smithi044 (mon.0) 608 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:00:51.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:51 smithi104 bash[21066]: cluster 2024-02-19T22:00:50.486796+0000 mgr.smithi044.ikbsam (mgr.14184) 204 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:51.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:51 smithi044 bash[16231]: audit 2024-02-19T22:00:50.463340+0000 mon.smithi044 (mon.0) 608 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:00:51.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:51 smithi044 bash[16231]: cluster 2024-02-19T22:00:50.486796+0000 mgr.smithi044.ikbsam (mgr.14184) 204 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:53.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:52 smithi104 bash[21066]: audit 2024-02-19T22:00:51.757524+0000 mon.smithi044 (mon.0) 609 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:00:53.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:52 smithi104 bash[21066]: audit 2024-02-19T22:00:52.054285+0000 mon.smithi044 (mon.0) 610 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:00:53.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:52 smithi104 bash[21066]: audit 2024-02-19T22:00:52.055616+0000 mon.smithi044 (mon.0) 611 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:00:53.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:52 smithi104 bash[21066]: audit 2024-02-19T22:00:52.062667+0000 mon.smithi044 (mon.0) 612 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:00:53.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:52 smithi104 bash[21066]: audit 2024-02-19T22:00:52.069923+0000 mon.smithi044 (mon.0) 613 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:00:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:52 smithi044 bash[16231]: audit 2024-02-19T22:00:51.757524+0000 mon.smithi044 (mon.0) 609 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:00:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:52 smithi044 bash[16231]: audit 2024-02-19T22:00:52.054285+0000 mon.smithi044 (mon.0) 610 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:00:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:52 smithi044 bash[16231]: audit 2024-02-19T22:00:52.055616+0000 mon.smithi044 (mon.0) 611 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:00:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:52 smithi044 bash[16231]: audit 2024-02-19T22:00:52.062667+0000 mon.smithi044 (mon.0) 612 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:00:53.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:52 smithi044 bash[16231]: audit 2024-02-19T22:00:52.069923+0000 mon.smithi044 (mon.0) 613 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:00:54.078 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:53 smithi044 bash[16231]: cluster 2024-02-19T22:00:52.487257+0000 mgr.smithi044.ikbsam (mgr.14184) 205 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:54.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:53 smithi104 bash[21066]: cluster 2024-02-19T22:00:52.487257+0000 mgr.smithi044.ikbsam (mgr.14184) 205 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:54.506 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:00:54.508 INFO:teuthology.orchestra.run.smithi044.stderr:dumped all 2024-02-19T22:00:55.168 INFO:teuthology.orchestra.run.smithi044.stdout:{"pg_ready":true,"pg_map":{"version":192,"stamp":"2024-02-19T22:00:54.487517+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":2379964,"kb_used_data":3196,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548484,"statfs":{"total":767926730752,"available":765489647616,"internally_reserved":0,"allocated":3272704,"data_stored":1267989,"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":41,"state":"active+clean","last_fresh":"2024-02-19T21:57:23.408477+0000","last_change":"2024-02-19T21:57:23.408477+0000","last_active":"2024-02-19T21:57:23.408477+0000","last_peered":"2024-02-19T21:57:23.408477+0000","last_clean":"2024-02-19T21:57:23.408477+0000","last_became_active":"2024-02-19T21:57:23.408056+0000","last_became_peered":"2024-02-19T21:57:23.408056+0000","last_unstale":"2024-02-19T21:57:23.408477+0000","last_undegraded":"2024-02-19T21:57:23.408477+0000","last_fullsized":"2024-02-19T21:57:23.408477+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":25,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-19T21:57:03.784862+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-19T21:57:03.784862+0000","last_clean_scrub_stamp":"2024-02-19T21:57:03.784862+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":39,"seq":167503724589,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.83699999999999997,"5min":0.84499999999999997,"15min":0.85499999999999998},"min":{"1min":0.69299999999999995,"5min":0.495,"15min":0.495},"max":{"1min":1.105,"5min":1.244,"15min":1.244},"last":1.046},{"interface":"front","average":{"1min":0.96999999999999997,"5min":0.93300000000000005,"15min":0.92900000000000005},"min":{"1min":0.628,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.181,"5min":1.3069999999999999,"15min":1.3069999999999999},"last":0.92800000000000005}]},{"osd":1,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.80300000000000005,"5min":0.81699999999999995,"15min":0.81299999999999994},"min":{"1min":0.61799999999999999,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":1.2529999999999999,"5min":1.2749999999999999,"15min":1.2749999999999999},"last":0.77400000000000002},{"interface":"front","average":{"1min":1.0680000000000001,"5min":0.91100000000000003,"15min":0.88100000000000001},"min":{"1min":0.66800000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":3.9580000000000002,"5min":3.9580000000000002,"15min":3.9580000000000002},"last":0.81399999999999995}]},{"osd":2,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.93200000000000005,"5min":0.92600000000000005,"15min":0.92500000000000004},"min":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"max":{"1min":1.196,"5min":1.397,"15min":1.397},"last":0.86199999999999999},{"interface":"front","average":{"1min":0.97699999999999998,"5min":0.96499999999999997,"15min":0.96399999999999997},"min":{"1min":0.75,"5min":0.52100000000000002,"15min":0.52100000000000002},"max":{"1min":1.1970000000000001,"5min":1.3480000000000001,"15min":1.3480000000000001},"last":1.153}]},{"osd":3,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":0.93200000000000005,"5min":0.95699999999999996,"15min":0.95499999999999996},"min":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"max":{"1min":1.339,"5min":1.448,"15min":1.448},"last":0.98499999999999999},{"interface":"front","average":{"1min":0.95099999999999996,"5min":0.93899999999999995,"15min":0.93100000000000005},"min":{"1min":0.495,"5min":0.495,"15min":0.495},"max":{"1min":1.2490000000000001,"5min":1.7110000000000001,"15min":1.7110000000000001},"last":0.94999999999999996}]},{"osd":4,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.103,"5min":1.0509999999999999,"15min":1.0349999999999999},"min":{"1min":0.75600000000000001,"5min":0.747,"15min":0.747},"max":{"1min":1.2889999999999999,"5min":1.625,"15min":1.625},"last":1.0029999999999999},{"interface":"front","average":{"1min":1.103,"5min":1.1080000000000001,"15min":1.1120000000000001},"min":{"1min":0.80900000000000005,"5min":0.74199999999999999,"15min":0.74199999999999999},"max":{"1min":1.343,"5min":1.5620000000000001,"15min":1.5620000000000001},"last":0.96899999999999997}]},{"osd":5,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.0669999999999999,"5min":1.1200000000000001,"15min":1.1279999999999999},"min":{"1min":0.70399999999999996,"5min":0.66000000000000003,"15min":0.66000000000000003},"max":{"1min":1.494,"5min":1.7669999999999999,"15min":1.7669999999999999},"last":0.88200000000000001},{"interface":"front","average":{"1min":1.159,"5min":1.1359999999999999,"15min":1.1200000000000001},"min":{"1min":0.79400000000000004,"5min":0.67600000000000005,"15min":0.67600000000000005},"max":{"1min":1.4750000000000001,"5min":1.796,"15min":1.796},"last":1.034}]},{"osd":6,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.278,"5min":1.238,"15min":1.2230000000000001},"min":{"1min":0.88700000000000001,"5min":0.85999999999999999,"15min":0.85999999999999999},"max":{"1min":1.76,"5min":1.859,"15min":1.859},"last":1.073},{"interface":"front","average":{"1min":1.337,"5min":1.258,"15min":1.2569999999999999},"min":{"1min":0.96099999999999997,"5min":0.80400000000000005,"15min":0.80400000000000005},"max":{"1min":1.7430000000000001,"5min":1.9139999999999999,"15min":1.9139999999999999},"last":1.081}]}]},{"osd":5,"up_from":35,"seq":150323855407,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.94699999999999995,"5min":0.82699999999999996,"15min":0.81299999999999994},"min":{"1min":0.64000000000000001,"5min":0.55600000000000005,"15min":0.55600000000000005},"max":{"1min":1.228,"5min":1.228,"15min":1.228},"last":0.63},{"interface":"front","average":{"1min":0.90300000000000002,"5min":0.85999999999999999,"15min":0.85199999999999998},"min":{"1min":0.67600000000000005,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.248,"5min":1.248,"15min":1.248},"last":0.71699999999999997}]},{"osd":1,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.79700000000000004,"5min":0.74399999999999999,"15min":0.72599999999999998},"min":{"1min":0.63900000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.0309999999999999,"5min":1.304,"15min":1.304},"last":0.59099999999999997},{"interface":"front","average":{"1min":0.86299999999999999,"5min":0.91400000000000003,"15min":0.95999999999999996},"min":{"1min":0.64600000000000002,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":1.1859999999999999,"5min":2.887,"15min":2.887},"last":0.78500000000000003}]},{"osd":2,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.98999999999999999,"5min":0.98899999999999999,"15min":0.98999999999999999},"min":{"1min":0.78100000000000003,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.2010000000000001,"5min":1.6839999999999999,"15min":1.6839999999999999},"last":0.85099999999999998},{"interface":"front","average":{"1min":0.92600000000000005,"5min":0.96299999999999997,"15min":0.97099999999999997},"min":{"1min":0.67800000000000005,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.4350000000000001,"5min":1.4350000000000001,"15min":1.4350000000000001},"last":0.90800000000000003}]},{"osd":3,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":0.99199999999999999,"5min":0.89500000000000002,"15min":0.88300000000000001},"min":{"1min":0.66000000000000003,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.3149999999999999,"5min":1.339,"15min":1.339},"last":0.60699999999999998},{"interface":"front","average":{"1min":1.0549999999999999,"5min":0.95999999999999996,"15min":0.94199999999999995},"min":{"1min":0.75,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":1.5700000000000001,"5min":2.2650000000000001,"15min":2.2650000000000001},"last":1.014}]},{"osd":4,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":1.0800000000000001,"5min":1.0589999999999999,"15min":1.0609999999999999},"min":{"1min":0.91500000000000004,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.2589999999999999,"5min":1.502,"15min":1.502},"last":0.86699999999999999},{"interface":"front","average":{"1min":1.131,"5min":1.0940000000000001,"15min":1.097},"min":{"1min":0.754,"5min":0.73799999999999999,"15min":0.73799999999999999},"max":{"1min":1.3879999999999999,"5min":1.7490000000000001,"15min":1.7490000000000001},"last":0.95199999999999996}]},{"osd":6,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":1.1339999999999999,"5min":1.0940000000000001,"15min":1.0860000000000001},"min":{"1min":0.84999999999999998,"5min":0.63700000000000001,"15min":0.63700000000000001},"max":{"1min":1.5129999999999999,"5min":1.5129999999999999,"15min":1.5129999999999999},"last":0.97499999999999998},{"interface":"front","average":{"1min":1.1679999999999999,"5min":1.1439999999999999,"15min":1.1459999999999999},"min":{"1min":0.81299999999999994,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":1.3939999999999999,"5min":1.845,"15min":1.845},"last":0.93000000000000005}]},{"osd":7,"last update":"Mon Feb 19 22:00:27 2024","interfaces":[{"interface":"back","average":{"1min":1.2150000000000001,"5min":1.1339999999999999,"15min":1.119},"min":{"1min":0.871,"5min":0.436,"15min":0.436},"max":{"1min":1.496,"5min":1.496,"15min":1.496},"last":1.0629999999999999},{"interface":"front","average":{"1min":1.2669999999999999,"5min":1.1419999999999999,"15min":1.123},"min":{"1min":1.0109999999999999,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.532,"5min":1.532,"15min":1.532},"last":0.89700000000000002}]}]},{"osd":2,"up_from":20,"seq":85899345970,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:06 2024","interfaces":[{"interface":"back","average":{"1min":0.66300000000000003,"5min":0.69699999999999995,"15min":0.70799999999999996},"min":{"1min":0.53100000000000003,"5min":0.40000000000000002,"15min":0.40000000000000002},"max":{"1min":0.97999999999999998,"5min":1.143,"15min":1.143},"last":1.0429999999999999},{"interface":"front","average":{"1min":0.75900000000000001,"5min":0.72699999999999998,"15min":0.72699999999999998},"min":{"1min":0.55500000000000005,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":1.2010000000000001,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":0.63500000000000001}]},{"osd":1,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.85099999999999998,"5min":0.92700000000000005,"15min":0.95299999999999996},"min":{"1min":0.65400000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.073,"5min":1.359,"15min":1.359},"last":1.2330000000000001},{"interface":"front","average":{"1min":0.90800000000000003,"5min":0.89400000000000002,"15min":0.90200000000000002},"min":{"1min":0.70599999999999996,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.282,"5min":1.464,"15min":1.464},"last":0.92500000000000004}]},{"osd":3,"last update":"Mon Feb 19 22:00:15 2024","interfaces":[{"interface":"back","average":{"1min":1.1639999999999999,"5min":0.98899999999999999,"15min":0.95599999999999996},"min":{"1min":0.73899999999999999,"5min":0.53100000000000003,"15min":0.53100000000000003},"max":{"1min":3.718,"5min":3.718,"15min":3.718},"last":1.2070000000000001},{"interface":"front","average":{"1min":1.1830000000000001,"5min":1.0780000000000001,"15min":1.0649999999999999},"min":{"1min":0.78500000000000003,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":3.694,"5min":3.694,"15min":3.694},"last":1.3080000000000001}]},{"osd":4,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.88500000000000001,"5min":0.84099999999999997,"15min":0.84499999999999997},"min":{"1min":0.627,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.2490000000000001,"5min":1.371,"15min":1.371},"last":0.90200000000000002},{"interface":"front","average":{"1min":0.94999999999999996,"5min":0.96299999999999997,"15min":0.96599999999999997},"min":{"1min":0.747,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.1879999999999999,"5min":1.4570000000000001,"15min":1.4570000000000001},"last":0.95599999999999996}]},{"osd":5,"last update":"Mon Feb 19 22:00:19 2024","interfaces":[{"interface":"back","average":{"1min":0.94299999999999995,"5min":0.95599999999999996,"15min":0.95899999999999996},"min":{"1min":0.72299999999999998,"5min":0.60999999999999999,"15min":0.60999999999999999},"max":{"1min":1.1120000000000001,"5min":1.3089999999999999,"15min":1.3089999999999999},"last":1.0209999999999999},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.0529999999999999,"15min":1.0569999999999999},"min":{"1min":0.83499999999999996,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.325,"5min":1.389,"15min":1.389},"last":1.0009999999999999}]},{"osd":6,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":1.1120000000000001,"5min":1.087,"15min":1.0980000000000001},"min":{"1min":0.92400000000000004,"5min":0.625,"15min":0.625},"max":{"1min":1.2689999999999999,"5min":1.5269999999999999,"15min":1.5269999999999999},"last":1.367},{"interface":"front","average":{"1min":1.107,"5min":1.0880000000000001,"15min":1.0860000000000001},"min":{"1min":0.76600000000000001,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.272,"5min":1.431,"15min":1.431},"last":1.2849999999999999}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.1919999999999999,"5min":1.1910000000000001,"15min":1.2},"min":{"1min":1.036,"5min":0.89500000000000002,"15min":0.89500000000000002},"max":{"1min":1.417,"5min":1.655,"15min":1.655},"last":1.421},{"interface":"front","average":{"1min":1.2210000000000001,"5min":1.177,"15min":1.167},"min":{"1min":0.97299999999999998,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.6890000000000001,"5min":1.8029999999999999,"15min":1.8029999999999999},"last":1.0700000000000001}]}]},{"osd":0,"up_from":16,"seq":68719476787,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.83099999999999996,"5min":0.88200000000000001,"15min":0.89400000000000002},"min":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.1639999999999999,"5min":1.1879999999999999,"15min":1.1879999999999999},"last":0.629},{"interface":"front","average":{"1min":0.85599999999999998,"5min":0.86399999999999999,"15min":0.85399999999999998},"min":{"1min":0.69699999999999995,"5min":0.63500000000000001,"15min":0.63500000000000001},"max":{"1min":1.236,"5min":1.236,"15min":1.236},"last":0.872}]},{"osd":2,"last update":"Mon Feb 19 22:00:08 2024","interfaces":[{"interface":"back","average":{"1min":0.78500000000000003,"5min":0.76900000000000002,"15min":0.77500000000000002},"min":{"1min":0.58299999999999996,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":1.0980000000000001,"5min":1.198,"15min":1.198},"last":0.60499999999999998},{"interface":"front","average":{"1min":0.85799999999999998,"5min":0.81399999999999995,"15min":0.81399999999999995},"min":{"1min":0.60299999999999998,"5min":0.498,"15min":0.498},"max":{"1min":1.429,"5min":1.429,"15min":1.429},"last":0.80700000000000005}]},{"osd":3,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.04,"5min":0.97799999999999998,"15min":0.97799999999999998},"min":{"1min":0.79800000000000004,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.377,"5min":1.377,"15min":1.377},"last":0.90000000000000002},{"interface":"front","average":{"1min":0.96099999999999997,"5min":0.92000000000000004,"15min":0.91200000000000003},"min":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"max":{"1min":1.333,"5min":1.333,"15min":1.333},"last":0.69399999999999995}]},{"osd":4,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.97099999999999997,"5min":0.92200000000000004,"15min":0.92400000000000004},"min":{"1min":0.60099999999999998,"5min":0.44800000000000001,"15min":0.44800000000000001},"max":{"1min":1.329,"5min":1.329,"15min":1.329},"last":0.98299999999999998},{"interface":"front","average":{"1min":0.95399999999999996,"5min":0.88,"15min":0.85599999999999998},"min":{"1min":0.54800000000000004,"5min":0.48499999999999999,"15min":0.48499999999999999},"max":{"1min":1.423,"5min":1.423,"15min":1.423},"last":0.94099999999999995}]},{"osd":5,"last update":"Mon Feb 19 22:00:25 2024","interfaces":[{"interface":"back","average":{"1min":0.96699999999999997,"5min":0.94799999999999995,"15min":0.94599999999999995},"min":{"1min":0.70599999999999996,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":1.238,"5min":1.343,"15min":1.343},"last":0.73199999999999998},{"interface":"front","average":{"1min":1.129,"5min":1.0960000000000001,"15min":1.089},"min":{"1min":0.82199999999999995,"5min":0.752,"15min":0.752},"max":{"1min":1.4830000000000001,"5min":1.5880000000000001,"15min":1.5880000000000001},"last":1.032}]},{"osd":6,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.071,"5min":1.012,"15min":0.98799999999999999},"min":{"1min":0.751,"5min":0.52000000000000002,"15min":0.52000000000000002},"max":{"1min":1.5069999999999999,"5min":1.5069999999999999,"15min":1.5069999999999999},"last":1.1990000000000001},{"interface":"front","average":{"1min":1.133,"5min":1.077,"15min":1.069},"min":{"1min":0.95499999999999996,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.431,"5min":1.431,"15min":1.431},"last":0.93200000000000005}]},{"osd":7,"last update":"Mon Feb 19 22:00:25 2024","interfaces":[{"interface":"back","average":{"1min":1.238,"5min":1.2010000000000001,"15min":1.1950000000000001},"min":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.79,"5min":1.79,"15min":1.79},"last":1.077},{"interface":"front","average":{"1min":1.29,"5min":1.226,"15min":1.1950000000000001},"min":{"1min":0.86199999999999999,"5min":0.72299999999999998,"15min":0.72299999999999998},"max":{"1min":1.8380000000000001,"5min":1.8380000000000001,"15min":1.8380000000000001},"last":1.25}]}]},{"osd":1,"up_from":24,"seq":103079215152,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297492,"kb_used_data":396,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443564,"statfs":{"total":95990841344,"available":95686209536,"internally_reserved":0,"allocated":405504,"data_stored":158223,"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":"Mon Feb 19 22:00:09 2024","interfaces":[{"interface":"back","average":{"1min":0.86899999999999999,"5min":0.85699999999999998,"15min":0.83799999999999997},"min":{"1min":0.65000000000000002,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.3400000000000001,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":0.96699999999999997},{"interface":"front","average":{"1min":0.86599999999999999,"5min":0.83899999999999997,"15min":0.84099999999999997},"min":{"1min":0.67600000000000005,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.288,"5min":1.4450000000000001,"15min":1.4450000000000001},"last":0.93000000000000005}]},{"osd":2,"last update":"Mon Feb 19 22:00:09 2024","interfaces":[{"interface":"back","average":{"1min":0.85099999999999998,"5min":0.871,"15min":0.86199999999999999},"min":{"1min":0.625,"5min":0.59899999999999998,"15min":0.59899999999999998},"max":{"1min":1.0209999999999999,"5min":1.337,"15min":1.337},"last":0.747},{"interface":"front","average":{"1min":1.03,"5min":0.97399999999999998,"15min":0.96199999999999997},"min":{"1min":0.67600000000000005,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.3859999999999999,"5min":1.3959999999999999,"15min":1.3959999999999999},"last":0.79000000000000004}]},{"osd":3,"last update":"Mon Feb 19 22:00:15 2024","interfaces":[{"interface":"back","average":{"1min":1.0720000000000001,"5min":0.98599999999999999,"15min":0.98499999999999999},"min":{"1min":0.63700000000000001,"5min":0.45600000000000002,"15min":0.45600000000000002},"max":{"1min":1.3109999999999999,"5min":1.5189999999999999,"15min":1.5189999999999999},"last":0.86599999999999999},{"interface":"front","average":{"1min":0.88900000000000001,"5min":0.875,"15min":0.86699999999999999},"min":{"1min":0.51900000000000002,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":1.2609999999999999,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.82699999999999996}]},{"osd":4,"last update":"Mon Feb 19 22:00:09 2024","interfaces":[{"interface":"back","average":{"1min":1.0760000000000001,"5min":0.97599999999999998,"15min":0.96499999999999997},"min":{"1min":0.77200000000000002,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.6519999999999999,"5min":1.6519999999999999,"15min":1.6519999999999999},"last":1.085},{"interface":"front","average":{"1min":1.0449999999999999,"5min":0.99399999999999999,"15min":0.98299999999999998},"min":{"1min":0.72599999999999998,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1930000000000001,"5min":1.708,"15min":1.708},"last":0.90500000000000003}]},{"osd":5,"last update":"Mon Feb 19 22:00:19 2024","interfaces":[{"interface":"back","average":{"1min":1.232,"5min":1.101,"15min":1.087},"min":{"1min":0.89600000000000002,"5min":0.51500000000000001,"15min":0.51500000000000001},"max":{"1min":1.4610000000000001,"5min":1.7450000000000001,"15min":1.7450000000000001},"last":1.038},{"interface":"front","average":{"1min":1.1479999999999999,"5min":1.071,"15min":1.0620000000000001},"min":{"1min":0.69199999999999995,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":1.5369999999999999,"5min":1.5369999999999999,"15min":1.5369999999999999},"last":1.0189999999999999}]},{"osd":6,"last update":"Mon Feb 19 22:00:15 2024","interfaces":[{"interface":"back","average":{"1min":1.284,"5min":1.2190000000000001,"15min":1.2070000000000001},"min":{"1min":0.93400000000000005,"5min":0.748,"15min":0.748},"max":{"1min":1.54,"5min":1.903,"15min":1.903},"last":1.411},{"interface":"front","average":{"1min":1.2410000000000001,"5min":1.2010000000000001,"15min":1.1930000000000001},"min":{"1min":1.04,"5min":0.76700000000000002,"15min":0.76700000000000002},"max":{"1min":1.6060000000000001,"5min":1.804,"15min":1.804},"last":1.1479999999999999}]},{"osd":7,"last update":"Mon Feb 19 22:00:24 2024","interfaces":[{"interface":"back","average":{"1min":1.284,"5min":1.228,"15min":1.22},"min":{"1min":0.82699999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"max":{"1min":1.9590000000000001,"5min":1.9590000000000001,"15min":1.9590000000000001},"last":1.1930000000000001},{"interface":"front","average":{"1min":1.369,"5min":1.3,"15min":1.296},"min":{"1min":1.1060000000000001,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.665,"5min":1.794,"15min":1.794},"last":1.3680000000000001}]}]},{"osd":4,"up_from":25,"seq":107374182449,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:10 2024","interfaces":[{"interface":"back","average":{"1min":0.76600000000000001,"5min":0.78000000000000003,"15min":0.80400000000000005},"min":{"1min":0.55400000000000005,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.0860000000000001,"5min":2.7639999999999998,"15min":2.7639999999999998},"last":0.81200000000000006},{"interface":"front","average":{"1min":0.88300000000000001,"5min":0.92700000000000005,"15min":0.95499999999999996},"min":{"1min":0.66100000000000003,"5min":0.50600000000000001,"15min":0.50600000000000001},"max":{"1min":1.012,"5min":1.831,"15min":1.831},"last":1.014}]},{"osd":1,"last update":"Mon Feb 19 22:00:10 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.95899999999999996,"15min":0.99199999999999999},"min":{"1min":0.65900000000000003,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.069,"5min":1.9019999999999999,"15min":1.9019999999999999},"last":0.90600000000000003},{"interface":"front","average":{"1min":0.89200000000000002,"5min":0.94899999999999995,"15min":0.98299999999999998},"min":{"1min":0.67900000000000005,"5min":0.66500000000000004,"15min":0.66500000000000004},"max":{"1min":1.1990000000000001,"5min":2.6699999999999999,"15min":2.6699999999999999},"last":0.95099999999999996}]},{"osd":2,"last update":"Mon Feb 19 22:00:10 2024","interfaces":[{"interface":"back","average":{"1min":0.72399999999999998,"5min":0.90900000000000003,"15min":0.98299999999999998},"min":{"1min":0.58599999999999997,"5min":0.55500000000000005,"15min":0.55500000000000005},"max":{"1min":0.875,"5min":2.6930000000000001,"15min":2.6930000000000001},"last":0.77500000000000002},{"interface":"front","average":{"1min":0.81899999999999995,"5min":0.91900000000000004,"15min":0.97699999999999998},"min":{"1min":0.60799999999999998,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":1.0640000000000001,"5min":2.875,"15min":2.875},"last":1.1279999999999999}]},{"osd":3,"last update":"Mon Feb 19 22:00:20 2024","interfaces":[{"interface":"back","average":{"1min":0.99399999999999999,"5min":0.996,"15min":1},"min":{"1min":0.81499999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"max":{"1min":1.1180000000000001,"5min":2.4470000000000001,"15min":2.4470000000000001},"last":1.1599999999999999},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.125,"15min":1.1499999999999999},"min":{"1min":0.95199999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"max":{"1min":1.2709999999999999,"5min":2.0990000000000002,"15min":2.0990000000000002},"last":1.222}]},{"osd":5,"last update":"Mon Feb 19 22:00:22 2024","interfaces":[{"interface":"back","average":{"1min":1.038,"5min":1.0600000000000001,"15min":1.0760000000000001},"min":{"1min":0.80100000000000005,"5min":0.69999999999999996,"15min":0.69999999999999996},"max":{"1min":1.341,"5min":2.7149999999999999,"15min":2.7149999999999999},"last":1.083},{"interface":"front","average":{"1min":1.0629999999999999,"5min":1.1479999999999999,"15min":1.1819999999999999},"min":{"1min":0.877,"5min":0.78200000000000003,"15min":0.78200000000000003},"max":{"1min":1.3089999999999999,"5min":2.4039999999999999,"15min":2.4039999999999999},"last":1.244}]},{"osd":6,"last update":"Mon Feb 19 22:00:20 2024","interfaces":[{"interface":"back","average":{"1min":1.101,"5min":1.1180000000000001,"15min":1.1479999999999999},"min":{"1min":0.82699999999999996,"5min":0.65400000000000003,"15min":0.65400000000000003},"max":{"1min":1.306,"5min":2.343,"15min":2.343},"last":1.0509999999999999},{"interface":"front","average":{"1min":1.1519999999999999,"5min":1.151,"15min":1.1759999999999999},"min":{"1min":1.024,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.3080000000000001,"5min":2.6139999999999999,"15min":2.6139999999999999},"last":1.1910000000000001}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.21,"5min":1.2310000000000001,"15min":1.2450000000000001},"min":{"1min":0.998,"5min":0.82799999999999996,"15min":0.82799999999999996},"max":{"1min":1.716,"5min":2.4980000000000002,"15min":2.4980000000000002},"last":1.325},{"interface":"front","average":{"1min":1.21,"5min":1.2609999999999999,"15min":1.2809999999999999},"min":{"1min":1.069,"5min":0.89900000000000002,"15min":0.89900000000000002},"max":{"1min":1.409,"5min":2.4180000000000001,"15min":2.4180000000000001},"last":1.3009999999999999}]}]},{"osd":6,"up_from":29,"seq":124554051631,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.66700000000000004,"5min":0.67200000000000004,"15min":0.66600000000000004},"min":{"1min":0.498,"5min":0.498,"15min":0.498},"max":{"1min":0.98999999999999999,"5min":1.1220000000000001,"15min":1.1220000000000001},"last":0.36599999999999999},{"interface":"front","average":{"1min":0.71999999999999997,"5min":0.75900000000000001,"15min":0.76300000000000001},"min":{"1min":0.53900000000000003,"5min":0.435,"15min":0.435},"max":{"1min":0.91000000000000003,"5min":1.1779999999999999,"15min":1.1779999999999999},"last":0.44500000000000001}]},{"osd":1,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.88700000000000001,"5min":0.89500000000000002,"15min":0.89400000000000002},"min":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"max":{"1min":1.0900000000000001,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":0.72599999999999998},{"interface":"front","average":{"1min":1.0369999999999999,"5min":1.014,"15min":1.0069999999999999},"min":{"1min":0.71399999999999997,"5min":0.71299999999999997,"15min":0.71299999999999997},"max":{"1min":1.21,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.71199999999999997}]},{"osd":2,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":0.876,"5min":0.88100000000000001,"15min":0.877},"min":{"1min":0.61099999999999999,"5min":0.59999999999999998,"15min":0.59999999999999998},"max":{"1min":1.107,"5min":1.3360000000000001,"15min":1.3360000000000001},"last":0.48099999999999998},{"interface":"front","average":{"1min":0.86799999999999999,"5min":0.92100000000000004,"15min":0.93799999999999994},"min":{"1min":0.66000000000000003,"5min":0.58599999999999997,"15min":0.58599999999999997},"max":{"1min":1.109,"5min":1.7110000000000001,"15min":1.7110000000000001},"last":0.63500000000000001}]},{"osd":3,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":1.006,"5min":0.98399999999999999,"15min":0.97699999999999998},"min":{"1min":0.81999999999999995,"5min":0.71999999999999997,"15min":0.71999999999999997},"max":{"1min":1.266,"5min":1.337,"15min":1.337},"last":0.79300000000000004},{"interface":"front","average":{"1min":0.98999999999999999,"5min":1.008,"15min":1},"min":{"1min":0.75,"5min":0.64900000000000002,"15min":0.64900000000000002},"max":{"1min":1.2390000000000001,"5min":1.3899999999999999,"15min":1.3899999999999999},"last":0.59499999999999997}]},{"osd":4,"last update":"Mon Feb 19 22:00:13 2024","interfaces":[{"interface":"back","average":{"1min":1.0209999999999999,"5min":1.0229999999999999,"15min":1.0269999999999999},"min":{"1min":0.749,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.2869999999999999,"5min":1.577,"15min":1.577},"last":0.49199999999999999},{"interface":"front","average":{"1min":1.028,"5min":1.0029999999999999,"15min":1.004},"min":{"1min":0.73999999999999999,"5min":0.624,"15min":0.624},"max":{"1min":1.401,"5min":1.556,"15min":1.556},"last":0.81799999999999995}]},{"osd":5,"last update":"Mon Feb 19 22:00:24 2024","interfaces":[{"interface":"back","average":{"1min":1.113,"5min":1.1439999999999999,"15min":1.147},"min":{"1min":0.97299999999999998,"5min":0.80000000000000004,"15min":0.80000000000000004},"max":{"1min":1.393,"5min":1.7050000000000001,"15min":1.7050000000000001},"last":0.95999999999999996},{"interface":"front","average":{"1min":1.0429999999999999,"5min":1.077,"15min":1.0880000000000001},"min":{"1min":0.87,"5min":0.76400000000000001,"15min":0.76400000000000001},"max":{"1min":1.5369999999999999,"5min":1.6850000000000001,"15min":1.6850000000000001},"last":0.89500000000000002}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.194,"5min":1.181,"15min":1.1759999999999999},"min":{"1min":0.95399999999999996,"5min":0.92800000000000005,"15min":0.92800000000000005},"max":{"1min":1.7330000000000001,"5min":1.7330000000000001,"15min":1.7330000000000001},"last":0.85499999999999998},{"interface":"front","average":{"1min":1.2250000000000001,"5min":1.228,"15min":1.2250000000000001},"min":{"1min":0.92000000000000004,"5min":0.76300000000000001,"15min":0.76300000000000001},"max":{"1min":1.7969999999999999,"5min":1.7969999999999999,"15min":1.7969999999999999},"last":0.878}]}]},{"osd":3,"up_from":30,"seq":128849018928,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":158538,"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":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.93300000000000005,"5min":0.92400000000000004,"15min":0.89400000000000002},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.1930000000000001,"5min":2.0009999999999999,"15min":2.0009999999999999},"last":0.73199999999999998},{"interface":"front","average":{"1min":0.84599999999999997,"5min":0.83599999999999997,"15min":0.82399999999999995},"min":{"1min":0.64000000000000001,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.0840000000000001,"5min":1.6180000000000001,"15min":1.6180000000000001},"last":0.66200000000000003}]},{"osd":1,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":0.79400000000000004,"5min":0.80700000000000005,"15min":0.78000000000000003},"min":{"1min":0.49299999999999999,"5min":0.45600000000000002,"15min":0.45600000000000002},"max":{"1min":1.1499999999999999,"5min":2.6000000000000001,"15min":2.6000000000000001},"last":0.69899999999999995},{"interface":"front","average":{"1min":0.82999999999999996,"5min":0.83899999999999997,"15min":0.81499999999999995},"min":{"1min":0.55000000000000004,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.4590000000000001,"5min":2.488,"15min":2.488},"last":0.95399999999999996}]},{"osd":2,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.079,"5min":1.0920000000000001,"15min":1.083},"min":{"1min":0.749,"5min":0.628,"15min":0.628},"max":{"1min":1.5680000000000001,"5min":1.952,"15min":1.952},"last":1.296},{"interface":"front","average":{"1min":0.97699999999999998,"5min":1.026,"15min":1.024},"min":{"1min":0.72399999999999998,"5min":0.70399999999999996,"15min":0.70399999999999996},"max":{"1min":1.2609999999999999,"5min":2.105,"15min":2.105},"last":1.103}]},{"osd":4,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.127,"5min":1.1279999999999999,"15min":1.105},"min":{"1min":0.81100000000000005,"5min":0.76700000000000002,"15min":0.76700000000000002},"max":{"1min":1.667,"5min":2.3100000000000001,"15min":2.3100000000000001},"last":1.25},{"interface":"front","average":{"1min":1.22,"5min":1.2330000000000001,"15min":1.2250000000000001},"min":{"1min":0.89600000000000002,"5min":0.81599999999999995,"15min":0.81599999999999995},"max":{"1min":1.8029999999999999,"5min":2.3479999999999999,"15min":2.3479999999999999},"last":1.1759999999999999}]},{"osd":5,"last update":"Mon Feb 19 22:00:24 2024","interfaces":[{"interface":"back","average":{"1min":1,"5min":1.012,"15min":0.97999999999999998},"min":{"1min":0.60499999999999998,"5min":0.58599999999999997,"15min":0.58599999999999997},"max":{"1min":1.411,"5min":2.3300000000000001,"15min":2.3300000000000001},"last":0.79800000000000004},{"interface":"front","average":{"1min":1.1879999999999999,"5min":1.2230000000000001,"15min":1.2030000000000001},"min":{"1min":0.58299999999999996,"5min":0.54700000000000004,"15min":0.54700000000000004},"max":{"1min":1.901,"5min":2.3940000000000001,"15min":2.3940000000000001},"last":1.071}]},{"osd":6,"last update":"Mon Feb 19 22:00:12 2024","interfaces":[{"interface":"back","average":{"1min":1.075,"5min":1.073,"15min":1.0509999999999999},"min":{"1min":0.80200000000000005,"5min":0.67300000000000004,"15min":0.67300000000000004},"max":{"1min":1.766,"5min":1.766,"15min":1.766},"last":0.878},{"interface":"front","average":{"1min":1.167,"5min":1.2090000000000001,"15min":1.1950000000000001},"min":{"1min":0.90600000000000003,"5min":0.77400000000000002,"15min":0.77400000000000002},"max":{"1min":1.5169999999999999,"5min":2.2090000000000001,"15min":2.2090000000000001},"last":0.996}]},{"osd":7,"last update":"Mon Feb 19 22:00:28 2024","interfaces":[{"interface":"back","average":{"1min":1.1699999999999999,"5min":1.1499999999999999,"15min":1.103},"min":{"1min":0.89000000000000001,"5min":0.498,"15min":0.498},"max":{"1min":1.621,"5min":2.431,"15min":2.431},"last":1.1539999999999999},{"interface":"front","average":{"1min":1.359,"5min":1.3640000000000001,"15min":1.339},"min":{"1min":0.93700000000000006,"5min":0.876,"15min":0.876},"max":{"1min":1.9830000000000001,"5min":2.5470000000000002,"15min":2.5470000000000002},"last":1.3460000000000001}]}]}],"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-02-19T22:00:55.169 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-02-19T22:00:55.169 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-02-19T22:00:55.170 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-02-19T22:00:55.170 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph health --format=json 2024-02-19T22:00:56.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:55 smithi104 bash[21066]: cluster 2024-02-19T22:00:54.487774+0000 mgr.smithi044.ikbsam (mgr.14184) 206 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:56.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:55 smithi104 bash[21066]: audit 2024-02-19T22:00:54.498492+0000 mgr.smithi044.ikbsam (mgr.14184) 207 : audit [DBG] from='client.14474 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:00:56.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:55 smithi044 bash[16231]: cluster 2024-02-19T22:00:54.487774+0000 mgr.smithi044.ikbsam (mgr.14184) 206 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:56.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:55 smithi044 bash[16231]: audit 2024-02-19T22:00:54.498492+0000 mgr.smithi044.ikbsam (mgr.14184) 207 : audit [DBG] from='client.14474 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:00:58.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:57 smithi104 bash[21066]: cluster 2024-02-19T22:00:56.488387+0000 mgr.smithi044.ikbsam (mgr.14184) 208 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:00:58.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:57 smithi044 bash[16231]: cluster 2024-02-19T22:00:56.488387+0000 mgr.smithi044.ikbsam (mgr.14184) 208 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:00.017 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring config /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/mon.smithi044/config 2024-02-19T22:01:00.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:00:59 smithi104 bash[21066]: cluster 2024-02-19T22:00:58.488872+0000 mgr.smithi044.ikbsam (mgr.14184) 209 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:00.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:00:59 smithi044 bash[16231]: cluster 2024-02-19T22:00:58.488872+0000 mgr.smithi044.ikbsam (mgr.14184) 209 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:02.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:01 smithi104 bash[21066]: cluster 2024-02-19T22:01:00.489477+0000 mgr.smithi044.ikbsam (mgr.14184) 210 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:02.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:01 smithi044 bash[16231]: cluster 2024-02-19T22:01:00.489477+0000 mgr.smithi044.ikbsam (mgr.14184) 210 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:03.123 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:01:03.798 INFO:teuthology.orchestra.run.smithi044.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-02-19T22:01:03.798 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-02-19T22:01:03.799 INFO:tasks.cephadm:Setup complete, yielding 2024-02-19T22:01:03.799 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T22:01:03.812 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:01:03.812 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch status' 2024-02-19T22:01:04.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:03 smithi104 bash[21066]: cluster 2024-02-19T22:01:02.490135+0000 mgr.smithi044.ikbsam (mgr.14184) 211 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:04.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:03 smithi104 bash[21066]: audit 2024-02-19T22:01:03.122485+0000 mon.smithi044 (mon.0) 614 : audit [DBG] from='client.? 172.21.15.44:0/706551170' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-19T22:01:04.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:03 smithi044 bash[16231]: cluster 2024-02-19T22:01:02.490135+0000 mgr.smithi044.ikbsam (mgr.14184) 211 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:04.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:03 smithi044 bash[16231]: audit 2024-02-19T22:01:03.122485+0000 mon.smithi044 (mon.0) 614 : audit [DBG] from='client.? 172.21.15.44:0/706551170' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-19T22:01:06.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:05 smithi104 bash[21066]: cluster 2024-02-19T22:01:04.490733+0000 mgr.smithi044.ikbsam (mgr.14184) 212 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:06.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:05 smithi044 bash[16231]: cluster 2024-02-19T22:01:04.490733+0000 mgr.smithi044.ikbsam (mgr.14184) 212 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:07.040 INFO:teuthology.orchestra.run.smithi044.stdout:Backend: cephadm 2024-02-19T22:01:07.041 INFO:teuthology.orchestra.run.smithi044.stdout:Available: Yes 2024-02-19T22:01:07.041 INFO:teuthology.orchestra.run.smithi044.stdout:Paused: No 2024-02-19T22:01:07.702 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch ps' 2024-02-19T22:01:08.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:07 smithi104 bash[21066]: cluster 2024-02-19T22:01:06.491328+0000 mgr.smithi044.ikbsam (mgr.14184) 213 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:08.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:07 smithi044 bash[16231]: cluster 2024-02-19T22:01:06.491328+0000 mgr.smithi044.ikbsam (mgr.14184) 213 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:09.048 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:08 smithi044 bash[16231]: audit 2024-02-19T22:01:07.039623+0000 mgr.smithi044.ikbsam (mgr.14184) 214 : audit [DBG] from='client.24353 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:09.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:08 smithi104 bash[21066]: audit 2024-02-19T22:01:07.039623+0000 mgr.smithi044.ikbsam (mgr.14184) 214 : audit [DBG] from='client.24353 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:10.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:09 smithi104 bash[21066]: cluster 2024-02-19T22:01:08.491921+0000 mgr.smithi044.ikbsam (mgr.14184) 215 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:10.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:09 smithi044 bash[16231]: cluster 2024-02-19T22:01:08.491921+0000 mgr.smithi044.ikbsam (mgr.14184) 215 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:alertmanager.smithi044 smithi044 *:9093,9094 running (3m) 19s ago 6m 14.1M - 0.23.0 ba2b418f427c 4721b50e327a 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:crash.smithi044 smithi044 running (6m) 19s ago 6m 7700k - 16.2.14-548-g81bd20d6 823b921721f5 9c937c51679e 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:crash.smithi104 smithi104 running (5m) 20s ago 5m 9635k - 16.2.14-548-g81bd20d6 823b921721f5 c691117a4e50 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:grafana.smithi044 smithi044 *:3000 running (3m) 19s ago 5m 42.4M - 8.3.5 dad864ee21e9 b0be32bfc127 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:mgr.smithi044.ikbsam smithi044 *:9283 running (7m) 19s ago 7m 429M - 16.2.14-548-g81bd20d6 823b921721f5 b3e9105b1452 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:mgr.smithi104.cxzjji smithi104 *:8443,9283 running (5m) 20s ago 5m 377M - 16.2.14-548-g81bd20d6 823b921721f5 f50e81c2d9ea 2024-02-19T22:01:10.958 INFO:teuthology.orchestra.run.smithi044.stdout:mon.smithi044 smithi044 running (7m) 19s ago 7m 62.1M 2048M 16.2.14-548-g81bd20d6 823b921721f5 6a44de2ef6ab 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:mon.smithi104 smithi104 running (5m) 20s ago 5m 59.2M 2048M 16.2.14-548-g81bd20d6 823b921721f5 ef98c454d4b7 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:node-exporter.smithi044 smithi044 *:9100 running (5m) 19s ago 5m 12.1M - 1.3.1 1dbe0e931976 4b76bc62d05b 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:node-exporter.smithi104 smithi104 *:9100 running (5m) 20s ago 5m 11.0M - 1.3.1 1dbe0e931976 cd55e003c4d6 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.0 smithi104 running (4m) 20s ago 4m 35.2M 3785M 16.2.14-548-g81bd20d6 823b921721f5 a670ed28195f 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.1 smithi044 running (4m) 19s ago 4m 34.9M 3530M 16.2.14-548-g81bd20d6 823b921721f5 aa326e25a06a 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.2 smithi104 running (4m) 20s ago 4m 33.8M 3785M 16.2.14-548-g81bd20d6 823b921721f5 0a5b090f483c 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.3 smithi044 running (4m) 19s ago 4m 35.1M 3530M 16.2.14-548-g81bd20d6 823b921721f5 40012de912da 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.4 smithi104 running (4m) 20s ago 4m 36.6M 3785M 16.2.14-548-g81bd20d6 823b921721f5 1889b935db7f 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.5 smithi044 running (4m) 19s ago 4m 33.9M 3530M 16.2.14-548-g81bd20d6 823b921721f5 94790b5780c7 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.6 smithi104 running (4m) 20s ago 4m 34.9M 3785M 16.2.14-548-g81bd20d6 823b921721f5 cb4258cb6c49 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:osd.7 smithi044 running (3m) 19s ago 4m 34.8M 3530M 16.2.14-548-g81bd20d6 823b921721f5 4404877269a3 2024-02-19T22:01:10.959 INFO:teuthology.orchestra.run.smithi044.stdout:prometheus.smithi104 smithi104 *:9095 running (5m) 20s ago 5m 56.0M - 2.33.4 514e6a882f6e 3273586be41a 2024-02-19T22:01:11.567 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch ls' 2024-02-19T22:01:11.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:11 smithi044 bash[16231]: cluster 2024-02-19T22:01:10.492549+0000 mgr.smithi044.ikbsam (mgr.14184) 216 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:12.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:11 smithi104 bash[21066]: cluster 2024-02-19T22:01:10.492549+0000 mgr.smithi044.ikbsam (mgr.14184) 216 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:12.971 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:12 smithi044 bash[16231]: audit 2024-02-19T22:01:10.935241+0000 mgr.smithi044.ikbsam (mgr.14184) 217 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:13.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:12 smithi104 bash[21066]: audit 2024-02-19T22:01:10.935241+0000 mgr.smithi044.ikbsam (mgr.14184) 217 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:14.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:13 smithi104 bash[21066]: cluster 2024-02-19T22:01:12.493154+0000 mgr.smithi044.ikbsam (mgr.14184) 218 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:14.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:13 smithi044 bash[16231]: cluster 2024-02-19T22:01:12.493154+0000 mgr.smithi044.ikbsam (mgr.14184) 218 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:15.037 INFO:teuthology.orchestra.run.smithi044.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:alertmanager ?:9093,9094 1/1 23s ago 6m count:1 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:crash 2/2 24s ago 7m * 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:grafana ?:3000 1/1 23s ago 7m count:1 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:mgr 2/2 24s ago 7m count:2 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:mon 2/2 24s ago 5m smithi044:172.21.15.44=smithi044;smithi104:172.21.15.104=smithi104;count:2 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:node-exporter ?:9100 2/2 24s ago 7m * 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:osd.all-available-devices 8 24s ago 5m * 2024-02-19T22:01:15.038 INFO:teuthology.orchestra.run.smithi044.stdout:prometheus ?:9095 1/1 24s ago 7m count:1 2024-02-19T22:01:15.713 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch host ls' 2024-02-19T22:01:16.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:15 smithi104 bash[21066]: cluster 2024-02-19T22:01:14.493717+0000 mgr.smithi044.ikbsam (mgr.14184) 219 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:16.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:15 smithi044 bash[16231]: cluster 2024-02-19T22:01:14.493717+0000 mgr.smithi044.ikbsam (mgr.14184) 219 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:17.111 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:16 smithi044 bash[16231]: audit 2024-02-19T22:01:15.026655+0000 mgr.smithi044.ikbsam (mgr.14184) 220 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:17.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:16 smithi104 bash[21066]: audit 2024-02-19T22:01:15.026655+0000 mgr.smithi044.ikbsam (mgr.14184) 220 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:18.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:17 smithi104 bash[21066]: cluster 2024-02-19T22:01:16.494315+0000 mgr.smithi044.ikbsam (mgr.14184) 221 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:18.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:17 smithi044 bash[16231]: cluster 2024-02-19T22:01:16.494315+0000 mgr.smithi044.ikbsam (mgr.14184) 221 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:19.034 INFO:teuthology.orchestra.run.smithi044.stdout:HOST ADDR LABELS STATUS 2024-02-19T22:01:19.034 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 172.21.15.44 2024-02-19T22:01:19.034 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 172.21.15.104 2024-02-19T22:01:19.034 INFO:teuthology.orchestra.run.smithi044.stdout:2 hosts in cluster 2024-02-19T22:01:19.671 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch device ls' 2024-02-19T22:01:20.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:19 smithi104 bash[21066]: cluster 2024-02-19T22:01:18.494971+0000 mgr.smithi044.ikbsam (mgr.14184) 222 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:20.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:19 smithi044 bash[16231]: cluster 2024-02-19T22:01:18.494971+0000 mgr.smithi044.ikbsam (mgr.14184) 222 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:21.081 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:20 smithi044 bash[16231]: audit 2024-02-19T22:01:19.032281+0000 mgr.smithi044.ikbsam (mgr.14184) 223 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:21.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:20 smithi104 bash[21066]: audit 2024-02-19T22:01:19.032281+0000 mgr.smithi044.ikbsam (mgr.14184) 223 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:22.123 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:21 smithi104 bash[21066]: cluster 2024-02-19T22:01:20.495705+0000 mgr.smithi044.ikbsam (mgr.14184) 224 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:22.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:21 smithi044 bash[16231]: cluster 2024-02-19T22:01:20.495705+0000 mgr.smithi044.ikbsam (mgr.14184) 224 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:23.013 INFO:teuthology.orchestra.run.smithi044.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-19T22:01:23.013 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme0n1 ssd _CVFT5331001K400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T22:01:23.013 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme1n1 ssd _a0a6db9ed447368b 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme2n1 ssd _d0bb962854c3b33d 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme3n1 ssd _62fd22bf420f3599 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme4n1 ssd _5cbfef9eef4fd8d3 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme0n1 ssd _PHFT620400NW400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme1n1 ssd _6e9e44c521194b2f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme2n1 ssd _3cfe133e337c684f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme3n1 ssd _b535039e5d834240 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.014 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme4n1 ssd _be6e0b1409f03590 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:23.373 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:23 smithi104 bash[21066]: cluster 2024-02-19T22:01:22.496355+0000 mgr.smithi044.ikbsam (mgr.14184) 225 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:23.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:23 smithi044 bash[16231]: cluster 2024-02-19T22:01:22.496355+0000 mgr.smithi044.ikbsam (mgr.14184) 225 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:23.651 INFO:teuthology.run_tasks:Running task vip... 2024-02-19T22:01:23.660 INFO:tasks.vip:Allocating static IPs for each host... 2024-02-19T22:01:23.660 INFO:tasks.vip:peername 172.21.15.44 2024-02-19T22:01:23.663 INFO:tasks.vip:172.21.15.44 in 172.21.0.0/20, pos 3883 2024-02-19T22:01:23.667 INFO:tasks.vip:smithi044.front.sepia.ceph.com static 10.0.15.44, vnet 10.0.0.0/16 2024-02-19T22:01:23.667 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-02-19T22:01:23.668 DEBUG:teuthology.orchestra.run.smithi044:> sudo ip route ls 2024-02-19T22:01:23.682 INFO:teuthology.orchestra.run.smithi044.stdout:default via 172.21.15.254 dev ens1f0 2024-02-19T22:01:23.683 INFO:teuthology.orchestra.run.smithi044.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-19T22:01:23.683 INFO:teuthology.orchestra.run.smithi044.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.44 2024-02-19T22:01:23.684 INFO:tasks.vip:Configuring 10.0.15.44 on smithi044.front.sepia.ceph.com iface ens1f0... 2024-02-19T22:01:23.684 DEBUG:teuthology.orchestra.run.smithi044:> sudo ip addr add 10.0.15.44/16 dev ens1f0 2024-02-19T22:01:23.739 INFO:tasks.vip:peername 172.21.15.104 2024-02-19T22:01:23.741 INFO:tasks.vip:172.21.15.104 in 172.21.0.0/20, pos 3943 2024-02-19T22:01:23.745 INFO:tasks.vip:smithi104.front.sepia.ceph.com static 10.0.15.104, vnet 10.0.0.0/16 2024-02-19T22:01:23.745 DEBUG:teuthology.orchestra.run.smithi104:> sudo ip route ls 2024-02-19T22:01:23.760 INFO:teuthology.orchestra.run.smithi104.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-19T22:01:23.760 INFO:teuthology.orchestra.run.smithi104.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.104 metric 100 2024-02-19T22:01:23.761 INFO:teuthology.orchestra.run.smithi104.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-19T22:01:23.761 INFO:teuthology.orchestra.run.smithi104.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.104 2024-02-19T22:01:23.761 INFO:teuthology.orchestra.run.smithi104.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.104 metric 100 2024-02-19T22:01:23.762 INFO:tasks.vip:Configuring 10.0.15.104 on smithi104.front.sepia.ceph.com iface enp3s0f1... 2024-02-19T22:01:23.762 DEBUG:teuthology.orchestra.run.smithi104:> sudo ip addr add 10.0.15.104/16 dev enp3s0f1 2024-02-19T22:01:23.817 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T22:01:23.826 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:01:23.826 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-02-19T22:01:24.373 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:24 smithi104 bash[21066]: audit 2024-02-19T22:01:23.009476+0000 mgr.smithi044.ikbsam (mgr.14184) 226 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:24.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:24 smithi044 bash[16231]: audit 2024-02-19T22:01:23.009476+0000 mgr.smithi044.ikbsam (mgr.14184) 226 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:25.212 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:25 smithi044 bash[16231]: cluster 2024-02-19T22:01:24.496920+0000 mgr.smithi044.ikbsam (mgr.14184) 227 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:25.373 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:25 smithi104 bash[21066]: cluster 2024-02-19T22:01:24.496920+0000 mgr.smithi044.ikbsam (mgr.14184) 227 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:27.120 INFO:teuthology.orchestra.run.smithi044.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme0n1 ssd _CVFT5331001K400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme1n1 ssd _a0a6db9ed447368b 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme2n1 ssd _d0bb962854c3b33d 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme3n1 ssd _62fd22bf420f3599 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi044 /dev/nvme4n1 ssd _5cbfef9eef4fd8d3 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme0n1 ssd _PHFT620400NW400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme1n1 ssd _6e9e44c521194b2f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme2n1 ssd _3cfe133e337c684f 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme3n1 ssd _b535039e5d834240 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.121 INFO:teuthology.orchestra.run.smithi044.stdout:smithi104 /dev/nvme4n1 ssd _be6e0b1409f03590 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-19T22:01:27.838 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:27 smithi044 bash[16231]: cluster 2024-02-19T22:01:26.497614+0000 mgr.smithi044.ikbsam (mgr.14184) 228 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:27.839 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:27 smithi044 bash[16231]: audit 2024-02-19T22:01:27.131071+0000 mon.smithi044 (mon.0) 615 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:01:27.839 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-19T22:01:27.850 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:01:27.850 DEBUG:teuthology.orchestra.run.smithi044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-19T22:01:27.862 INFO:teuthology.orchestra.run.smithi044.stderr:+ systemctl stop nfs-server 2024-02-19T22:01:27.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:27 smithi104 bash[21066]: cluster 2024-02-19T22:01:26.497614+0000 mgr.smithi044.ikbsam (mgr.14184) 228 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:27.873 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:27 smithi104 bash[21066]: audit 2024-02-19T22:01:27.131071+0000 mon.smithi044 (mon.0) 615 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:01:27.885 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi104.front.sepia.ceph.com 2024-02-19T22:01:27.885 DEBUG:teuthology.orchestra.run.smithi104:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-19T22:01:27.894 INFO:teuthology.orchestra.run.smithi104.stderr:+ systemctl stop nfs-server 2024-02-19T22:01:27.917 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T22:01:27.925 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:01:27.926 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-02-19T22:01:28.887 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:28 smithi104 bash[21066]: audit 2024-02-19T22:01:27.110951+0000 mgr.smithi044.ikbsam (mgr.14184) 229 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:28.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:28 smithi044 bash[16231]: audit 2024-02-19T22:01:27.110951+0000 mgr.smithi044.ikbsam (mgr.14184) 229 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:29.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:29 smithi104 bash[21066]: cluster 2024-02-19T22:01:28.498173+0000 mgr.smithi044.ikbsam (mgr.14184) 230 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:29.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:29 smithi044 bash[16231]: cluster 2024-02-19T22:01:28.498173+0000 mgr.smithi044.ikbsam (mgr.14184) 230 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:31.452 INFO:teuthology.orchestra.run.smithi044.stdout:Scheduled rgw.foorgw update... 2024-02-19T22:01:31.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:31 smithi104 bash[21066]: cluster 2024-02-19T22:01:30.498804+0000 mgr.smithi044.ikbsam (mgr.14184) 231 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:31.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:31 smithi104 bash[21066]: audit 2024-02-19T22:01:31.449906+0000 mon.smithi044 (mon.0) 616 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:31 smithi044 bash[16231]: cluster 2024-02-19T22:01:30.498804+0000 mgr.smithi044.ikbsam (mgr.14184) 231 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:31.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:31 smithi044 bash[16231]: audit 2024-02-19T22:01:31.449906+0000 mon.smithi044 (mon.0) 616 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:32.127 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.44/16' 2024-02-19T22:01:32.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:32 smithi104 bash[21066]: audit 2024-02-19T22:01:31.438853+0000 mgr.smithi044.ikbsam (mgr.14184) 232 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:32.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:32 smithi104 bash[21066]: cephadm 2024-02-19T22:01:31.442032+0000 mgr.smithi044.ikbsam (mgr.14184) 233 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T22:01:32.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:32 smithi044 bash[16231]: audit 2024-02-19T22:01:31.438853+0000 mgr.smithi044.ikbsam (mgr.14184) 232 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:32.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:32 smithi044 bash[16231]: cephadm 2024-02-19T22:01:31.442032+0000 mgr.smithi044.ikbsam (mgr.14184) 233 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T22:01:33.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:33 smithi104 bash[21066]: cluster 2024-02-19T22:01:32.499382+0000 mgr.smithi044.ikbsam (mgr.14184) 234 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:33.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:33 smithi104 bash[21066]: audit 2024-02-19T22:01:32.959112+0000 mon.smithi044 (mon.0) 617 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:33.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:33 smithi044 bash[16231]: cluster 2024-02-19T22:01:32.499382+0000 mgr.smithi044.ikbsam (mgr.14184) 234 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:33.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:33 smithi044 bash[16231]: audit 2024-02-19T22:01:32.959112+0000 mon.smithi044 (mon.0) 617 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:35.025 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:34 smithi044 bash[16231]: audit 2024-02-19T22:01:33.703522+0000 mon.smithi044 (mon.0) 618 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:35.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:34 smithi104 bash[21066]: audit 2024-02-19T22:01:33.703522+0000 mon.smithi044 (mon.0) 618 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:36.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:35 smithi044 bash[16231]: cluster 2024-02-19T22:01:34.499953+0000 mgr.smithi044.ikbsam (mgr.14184) 235 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:36.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:35 smithi104 bash[21066]: cluster 2024-02-19T22:01:34.499953+0000 mgr.smithi044.ikbsam (mgr.14184) 235 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:37.016 INFO:teuthology.orchestra.run.smithi044.stdout:NFS Cluster Created Successfully 2024-02-19T22:01:37.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:36 smithi044 bash[16231]: audit 2024-02-19T22:01:35.418020+0000 mgr.smithi044.ikbsam (mgr.14184) 236 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.44/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:37.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:36 smithi044 bash[16231]: audit 2024-02-19T22:01:35.421314+0000 mon.smithi044 (mon.0) 619 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-19T22:01:37.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:36 smithi044 bash[16231]: audit 2024-02-19T22:01:35.931891+0000 mon.smithi044 (mon.0) 620 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-19T22:01:37.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:36 smithi044 bash[16231]: cluster 2024-02-19T22:01:35.932000+0000 mon.smithi044 (mon.0) 621 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-19T22:01:37.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:36 smithi044 bash[16231]: audit 2024-02-19T22:01:35.934208+0000 mon.smithi044 (mon.0) 622 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-19T22:01:37.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:36 smithi044 bash[16231]: cluster 2024-02-19T22:01:36.500654+0000 mgr.smithi044.ikbsam (mgr.14184) 237 : cluster [DBG] pgmap v214: 33 pgs: 32 unknown, 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:37.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:36 smithi104 bash[21066]: audit 2024-02-19T22:01:35.418020+0000 mgr.smithi044.ikbsam (mgr.14184) 236 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.44/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:01:37.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:36 smithi104 bash[21066]: audit 2024-02-19T22:01:35.421314+0000 mon.smithi044 (mon.0) 619 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-19T22:01:37.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:36 smithi104 bash[21066]: audit 2024-02-19T22:01:35.931891+0000 mon.smithi044 (mon.0) 620 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-19T22:01:37.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:36 smithi104 bash[21066]: cluster 2024-02-19T22:01:35.932000+0000 mon.smithi044 (mon.0) 621 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-19T22:01:37.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:36 smithi104 bash[21066]: audit 2024-02-19T22:01:35.934208+0000 mon.smithi044 (mon.0) 622 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-19T22:01:37.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:36 smithi104 bash[21066]: cluster 2024-02-19T22:01:36.500654+0000 mgr.smithi044.ikbsam (mgr.14184) 237 : cluster [DBG] pgmap v214: 33 pgs: 32 unknown, 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:37.694 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-19T22:01:37.704 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:01:37.704 DEBUG:teuthology.orchestra.run.smithi044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-02-19T22:01:37.719 INFO:teuthology.orchestra.run.smithi044.stderr:+ dnf install -y python3-boto3 2024-02-19T22:01:37.719 INFO:teuthology.orchestra.run.smithi044.stderr:bash: dnf: command not found 2024-02-19T22:01:37.719 INFO:teuthology.orchestra.run.smithi044.stderr:+ apt install -y python3-boto3 2024-02-19T22:01:37.726 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T22:01:37.726 INFO:teuthology.orchestra.run.smithi044.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-02-19T22:01:37.726 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T22:01:37.797 INFO:teuthology.orchestra.run.smithi044.stdout:Reading package lists... 2024-02-19T22:01:38.121 INFO:teuthology.orchestra.run.smithi044.stdout:Building dependency tree... 2024-02-19T22:01:38.121 INFO:teuthology.orchestra.run.smithi044.stdout:Reading state information... 2024-02-19T22:01:38.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:37 smithi044 bash[16231]: audit 2024-02-19T22:01:36.944737+0000 mon.smithi044 (mon.0) 623 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-19T22:01:38.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:37 smithi044 bash[16231]: cluster 2024-02-19T22:01:36.945380+0000 mon.smithi044 (mon.0) 624 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-19T22:01:38.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:37 smithi044 bash[16231]: cephadm 2024-02-19T22:01:37.004236+0000 mgr.smithi044.ikbsam (mgr.14184) 238 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-19T22:01:38.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:37 smithi044 bash[16231]: audit 2024-02-19T22:01:37.009308+0000 mon.smithi044 (mon.0) 625 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:38.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:37 smithi044 bash[16231]: cephadm 2024-02-19T22:01:37.011087+0000 mgr.smithi044.ikbsam (mgr.14184) 239 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-19T22:01:38.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:37 smithi044 bash[16231]: audit 2024-02-19T22:01:37.015435+0000 mon.smithi044 (mon.0) 626 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:38.350 INFO:teuthology.orchestra.run.smithi044.stdout:The following packages were automatically installed and are no longer required: 2024-02-19T22:01:38.350 INFO:teuthology.orchestra.run.smithi044.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-02-19T22:01:38.350 INFO:teuthology.orchestra.run.smithi044.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-02-19T22:01:38.351 INFO:teuthology.orchestra.run.smithi044.stdout: linux-modules-extra-4.15.0-194-generic 2024-02-19T22:01:38.351 INFO:teuthology.orchestra.run.smithi044.stdout:Use 'sudo apt autoremove' to remove them. 2024-02-19T22:01:38.351 INFO:teuthology.orchestra.run.smithi044.stdout:The following additional packages will be installed: 2024-02-19T22:01:38.352 INFO:teuthology.orchestra.run.smithi044.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-dateutil 2024-02-19T22:01:38.353 INFO:teuthology.orchestra.run.smithi044.stdout: python3-docutils python3-jmespath python3-olefile python3-pil 2024-02-19T22:01:38.353 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pygments python3-roman python3-s3transfer sgml-base xml-core 2024-02-19T22:01:38.355 INFO:teuthology.orchestra.run.smithi044.stdout:Suggested packages: 2024-02-19T22:01:38.355 INFO:teuthology.orchestra.run.smithi044.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-02-19T22:01:38.355 INFO:teuthology.orchestra.run.smithi044.stdout: texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg 2024-02-19T22:01:38.355 INFO:teuthology.orchestra.run.smithi044.stdout: sgml-base-doc debhelper 2024-02-19T22:01:38.373 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:37 smithi104 bash[21066]: audit 2024-02-19T22:01:36.944737+0000 mon.smithi044 (mon.0) 623 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-19T22:01:38.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:37 smithi104 bash[21066]: cluster 2024-02-19T22:01:36.945380+0000 mon.smithi044 (mon.0) 624 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-19T22:01:38.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:37 smithi104 bash[21066]: cephadm 2024-02-19T22:01:37.004236+0000 mgr.smithi044.ikbsam (mgr.14184) 238 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-19T22:01:38.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:37 smithi104 bash[21066]: audit 2024-02-19T22:01:37.009308+0000 mon.smithi044 (mon.0) 625 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:38.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:37 smithi104 bash[21066]: cephadm 2024-02-19T22:01:37.011087+0000 mgr.smithi044.ikbsam (mgr.14184) 239 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-19T22:01:38.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:37 smithi104 bash[21066]: audit 2024-02-19T22:01:37.015435+0000 mon.smithi044 (mon.0) 626 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:38.396 INFO:teuthology.orchestra.run.smithi044.stdout:The following NEW packages will be installed: 2024-02-19T22:01:38.398 INFO:teuthology.orchestra.run.smithi044.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-02-19T22:01:38.398 INFO:teuthology.orchestra.run.smithi044.stdout: python3-dateutil python3-docutils python3-jmespath python3-olefile 2024-02-19T22:01:38.398 INFO:teuthology.orchestra.run.smithi044.stdout: python3-pil python3-pygments python3-roman python3-s3transfer sgml-base 2024-02-19T22:01:38.398 INFO:teuthology.orchestra.run.smithi044.stdout: xml-core 2024-02-19T22:01:38.475 INFO:teuthology.orchestra.run.smithi044.stdout:0 upgraded, 15 newly installed, 0 to remove and 146 not upgraded. 2024-02-19T22:01:38.476 INFO:teuthology.orchestra.run.smithi044.stdout:Need to get 4,955 kB of archives. 2024-02-19T22:01:38.476 INFO:teuthology.orchestra.run.smithi044.stdout:After this operation, 55.1 MB of additional disk space will be used. 2024-02-19T22:01:38.476 INFO:teuthology.orchestra.run.smithi044.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] 2024-02-19T22:01:38.542 INFO:teuthology.orchestra.run.smithi044.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] 2024-02-19T22:01:38.616 INFO:teuthology.orchestra.run.smithi044.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] 2024-02-19T22:01:38.687 INFO:teuthology.orchestra.run.smithi044.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] 2024-02-19T22:01:38.691 INFO:teuthology.orchestra.run.smithi044.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] 2024-02-19T22:01:38.693 INFO:teuthology.orchestra.run.smithi044.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] 2024-02-19T22:01:38.702 INFO:teuthology.orchestra.run.smithi044.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] 2024-02-19T22:01:38.704 INFO:teuthology.orchestra.run.smithi044.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] 2024-02-19T22:01:38.737 INFO:teuthology.orchestra.run.smithi044.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-jmespath all 0.9.3-1ubuntu1.1 [18.8 kB] 2024-02-19T22:01:38.738 INFO:teuthology.orchestra.run.smithi044.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-02-19T22:01:38.805 INFO:teuthology.orchestra.run.smithi044.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-02-19T22:01:38.805 INFO:teuthology.orchestra.run.smithi044.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python3-boto3 all 1.4.2-1 [61.8 kB] 2024-02-19T22:01:38.806 INFO:teuthology.orchestra.run.smithi044.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] 2024-02-19T22:01:38.806 INFO:teuthology.orchestra.run.smithi044.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.8 [331 kB] 2024-02-19T22:01:38.810 INFO:teuthology.orchestra.run.smithi044.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pygments all 2.2.0+dfsg-1ubuntu0.2 [574 kB] 2024-02-19T22:01:39.070 INFO:teuthology.orchestra.run.smithi044.stderr:debconf: unable to initialize frontend: Dialog 2024-02-19T22:01:39.070 INFO:teuthology.orchestra.run.smithi044.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-19T22:01:39.071 INFO:teuthology.orchestra.run.smithi044.stderr:debconf: falling back to frontend: Readline 2024-02-19T22:01:39.096 INFO:teuthology.orchestra.run.smithi044.stderr:debconf: unable to initialize frontend: Readline 2024-02-19T22:01:39.096 INFO:teuthology.orchestra.run.smithi044.stderr:debconf: (This frontend requires a controlling tty.) 2024-02-19T22:01:39.097 INFO:teuthology.orchestra.run.smithi044.stderr:debconf: falling back to frontend: Teletype 2024-02-19T22:01:39.103 INFO:teuthology.orchestra.run.smithi044.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-02-19T22:01:39.170 INFO:teuthology.orchestra.run.smithi044.stdout:Fetched 4,955 kB in 0s (12.5 MB/s) 2024-02-19T22:01:39.223 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:38 smithi104 bash[21066]: cluster 2024-02-19T22:01:37.952010+0000 mon.smithi044 (mon.0) 627 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-19T22:01:39.223 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:38 smithi104 bash[21066]: cluster 2024-02-19T22:01:38.501260+0000 mgr.smithi044.ikbsam (mgr.14184) 240 : cluster [DBG] pgmap v217: 33 pgs: 17 active+clean, 16 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:39.400 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package sgml-base. 2024-02-19T22:01:39.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:38 smithi044 bash[16231]: cluster 2024-02-19T22:01:37.952010+0000 mon.smithi044 (mon.0) 627 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-19T22:01:39.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:38 smithi044 bash[16231]: cluster 2024-02-19T22:01:38.501260+0000 mgr.smithi044.ikbsam (mgr.14184) 240 : cluster [DBG] pgmap v217: 33 pgs: 17 active+clean, 16 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:39.463 INFO:teuthology.orchestra.run.smithi044.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-02-19T22:01:39.469 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../00-sgml-base_1.29_all.deb ... 2024-02-19T22:01:39.513 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking sgml-base (1.29) ... 2024-02-19T22:01:40.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:39 smithi104 bash[21066]: cluster 2024-02-19T22:01:38.957147+0000 mon.smithi044 (mon.0) 628 : cluster [DBG] mgrmap e19: smithi044.ikbsam(active, since 6m), standbys: smithi104.cxzjji 2024-02-19T22:01:40.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:39 smithi044 bash[16231]: cluster 2024-02-19T22:01:38.957147+0000 mon.smithi044 (mon.0) 628 : cluster [DBG] mgrmap e19: smithi044.ikbsam(active, since 6m), standbys: smithi104.cxzjji 2024-02-19T22:01:41.201 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package xml-core. 2024-02-19T22:01:41.217 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../01-xml-core_0.18_all.deb ... 2024-02-19T22:01:41.261 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking xml-core (0.18) ... 2024-02-19T22:01:41.281 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:40 smithi044 bash[16231]: cluster 2024-02-19T22:01:40.501908+0000 mgr.smithi044.ikbsam (mgr.14184) 241 : cluster [DBG] pgmap v218: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:41.373 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:40 smithi104 bash[21066]: cluster 2024-02-19T22:01:40.501908+0000 mgr.smithi044.ikbsam (mgr.14184) 241 : cluster [DBG] pgmap v218: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:42.142 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package docutils-common. 2024-02-19T22:01:42.160 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../02-docutils-common_0.14+dfsg-3_all.deb ... 2024-02-19T22:01:42.274 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking docutils-common (0.14+dfsg-3) ... 2024-02-19T22:01:43.608 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package libpaper1:amd64. 2024-02-19T22:01:43.625 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../03-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-02-19T22:01:43.740 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-02-19T22:01:43.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:43 smithi044 bash[16231]: cluster 2024-02-19T22:01:42.502629+0000 mgr.smithi044.ikbsam (mgr.14184) 242 : cluster [DBG] pgmap v219: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:43.869 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:43 smithi044 bash[16231]: audit 2024-02-19T22:01:43.102574+0000 mon.smithi044 (mon.0) 629 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:43.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:43 smithi104 bash[21066]: cluster 2024-02-19T22:01:42.502629+0000 mgr.smithi044.ikbsam (mgr.14184) 242 : cluster [DBG] pgmap v219: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:43.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:43 smithi104 bash[21066]: audit 2024-02-19T22:01:43.102574+0000 mon.smithi044 (mon.0) 629 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:44.066 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package libpaper-utils. 2024-02-19T22:01:44.083 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../04-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-02-19T22:01:44.125 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-02-19T22:01:44.503 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-dateutil. 2024-02-19T22:01:44.518 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../05-python3-dateutil_2.6.1-1_all.deb ... 2024-02-19T22:01:44.553 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-dateutil (2.6.1-1) ... 2024-02-19T22:01:44.865 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-roman. 2024-02-19T22:01:44.882 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../06-python3-roman_2.0.0-3_all.deb ... 2024-02-19T22:01:44.948 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-roman (2.0.0-3) ... 2024-02-19T22:01:45.277 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-docutils. 2024-02-19T22:01:45.294 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../07-python3-docutils_0.14+dfsg-3_all.deb ... 2024-02-19T22:01:45.338 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-docutils (0.14+dfsg-3) ... 2024-02-19T22:01:45.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:45 smithi104 bash[21066]: cluster 2024-02-19T22:01:44.503317+0000 mgr.smithi044.ikbsam (mgr.14184) 243 : cluster [DBG] pgmap v220: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:45.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:45 smithi044 bash[16231]: cluster 2024-02-19T22:01:44.503317+0000 mgr.smithi044.ikbsam (mgr.14184) 243 : cluster [DBG] pgmap v220: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:46.401 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-jmespath. 2024-02-19T22:01:46.417 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../08-python3-jmespath_0.9.3-1ubuntu1.1_all.deb ... 2024-02-19T22:01:46.459 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-02-19T22:01:46.737 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-botocore. 2024-02-19T22:01:46.756 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../09-python3-botocore_1.16.19+repack-1ubuntu0.18.04.1_all.deb ... 2024-02-19T22:01:46.787 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-02-19T22:01:47.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: cluster 2024-02-19T22:01:46.503807+0000 mgr.smithi044.ikbsam (mgr.14184) 244 : cluster [DBG] pgmap v221: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:47.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.596534+0000 mon.smithi044 (mon.0) 630 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.598370+0000 mon.smithi044 (mon.0) 631 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:47.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.599971+0000 mon.smithi044 (mon.0) 632 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:01:47.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.607427+0000 mon.smithi044 (mon.0) 633 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.615362+0000 mon.smithi044 (mon.0) 634 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: cephadm 2024-02-19T22:01:46.621646+0000 mgr.smithi044.ikbsam (mgr.14184) 245 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.626760+0000 mon.smithi044 (mon.0) 635 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.627691+0000 mon.smithi044 (mon.0) 636 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi104.lkomsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.632422+0000 mon.smithi044 (mon.0) 637 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi104.lkomsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.641379+0000 mon.smithi044 (mon.0) 638 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: audit 2024-02-19T22:01:46.643057+0000 mon.smithi044 (mon.0) 639 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:47.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:47 smithi104 bash[21066]: cephadm 2024-02-19T22:01:46.644668+0000 mgr.smithi044.ikbsam (mgr.14184) 246 : cephadm [INF] Deploying daemon rgw.foorgw.smithi104.lkomsk on smithi104 2024-02-19T22:01:47.878 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-s3transfer. 2024-02-19T22:01:47.897 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../10-python3-s3transfer_0.3.3-1ubuntu0.18.04.1_all.deb ... 2024-02-19T22:01:47.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: cluster 2024-02-19T22:01:46.503807+0000 mgr.smithi044.ikbsam (mgr.14184) 244 : cluster [DBG] pgmap v221: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:47.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.596534+0000 mon.smithi044 (mon.0) 630 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.598370+0000 mon.smithi044 (mon.0) 631 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:47.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.599971+0000 mon.smithi044 (mon.0) 632 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.607427+0000 mon.smithi044 (mon.0) 633 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.615362+0000 mon.smithi044 (mon.0) 634 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: cephadm 2024-02-19T22:01:46.621646+0000 mgr.smithi044.ikbsam (mgr.14184) 245 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.626760+0000 mon.smithi044 (mon.0) 635 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.627691+0000 mon.smithi044 (mon.0) 636 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi104.lkomsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.632422+0000 mon.smithi044 (mon.0) 637 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi104.lkomsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.641379+0000 mon.smithi044 (mon.0) 638 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: audit 2024-02-19T22:01:46.643057+0000 mon.smithi044 (mon.0) 639 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:47 smithi044 bash[16231]: cephadm 2024-02-19T22:01:46.644668+0000 mgr.smithi044.ikbsam (mgr.14184) 246 : cephadm [INF] Deploying daemon rgw.foorgw.smithi104.lkomsk on smithi104 2024-02-19T22:01:47.928 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-02-19T22:01:48.247 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-boto3. 2024-02-19T22:01:48.264 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../11-python3-boto3_1.4.2-1_all.deb ... 2024-02-19T22:01:48.306 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-boto3 (1.4.2-1) ... 2024-02-19T22:01:48.669 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-olefile. 2024-02-19T22:01:48.688 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../12-python3-olefile_0.45.1-1_all.deb ... 2024-02-19T22:01:48.727 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-olefile (0.45.1-1) ... 2024-02-19T22:01:49.030 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-pil:amd64. 2024-02-19T22:01:49.043 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../13-python3-pil_5.1.0-1ubuntu0.8_amd64.deb ... 2024-02-19T22:01:49.080 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-02-19T22:01:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:49 smithi104 bash[21066]: cluster 2024-02-19T22:01:48.504523+0000 mgr.smithi044.ikbsam (mgr.14184) 247 : cluster [DBG] pgmap v222: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:49 smithi104 bash[21066]: audit 2024-02-19T22:01:48.866804+0000 mon.smithi044 (mon.0) 640 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:49 smithi104 bash[21066]: audit 2024-02-19T22:01:48.869390+0000 mon.smithi044 (mon.0) 641 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi044.iawesn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T22:01:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:49 smithi104 bash[21066]: audit 2024-02-19T22:01:48.873418+0000 mon.smithi044 (mon.0) 642 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi044.iawesn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T22:01:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:49 smithi104 bash[21066]: audit 2024-02-19T22:01:48.881670+0000 mon.smithi044 (mon.0) 643 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:49 smithi104 bash[21066]: audit 2024-02-19T22:01:48.883524+0000 mon.smithi044 (mon.0) 644 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:50.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:49 smithi044 bash[16231]: cluster 2024-02-19T22:01:48.504523+0000 mgr.smithi044.ikbsam (mgr.14184) 247 : cluster [DBG] pgmap v222: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:50.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:49 smithi044 bash[16231]: audit 2024-02-19T22:01:48.866804+0000 mon.smithi044 (mon.0) 640 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:50.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:49 smithi044 bash[16231]: audit 2024-02-19T22:01:48.869390+0000 mon.smithi044 (mon.0) 641 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi044.iawesn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T22:01:50.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:49 smithi044 bash[16231]: audit 2024-02-19T22:01:48.873418+0000 mon.smithi044 (mon.0) 642 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi044.iawesn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T22:01:50.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:49 smithi044 bash[16231]: audit 2024-02-19T22:01:48.881670+0000 mon.smithi044 (mon.0) 643 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:50.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:49 smithi044 bash[16231]: audit 2024-02-19T22:01:48.883524+0000 mon.smithi044 (mon.0) 644 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:50.181 INFO:teuthology.orchestra.run.smithi044.stdout:Selecting previously unselected package python3-pygments. 2024-02-19T22:01:50.196 INFO:teuthology.orchestra.run.smithi044.stdout:Preparing to unpack .../14-python3-pygments_2.2.0+dfsg-1ubuntu0.2_all.deb ... 2024-02-19T22:01:50.272 INFO:teuthology.orchestra.run.smithi044.stdout:Unpacking python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-02-19T22:01:51.019 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-02-19T22:01:51.287 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:50 smithi044 bash[16231]: cephadm 2024-02-19T22:01:48.884750+0000 mgr.smithi044.ikbsam (mgr.14184) 248 : cephadm [INF] Deploying daemon rgw.foorgw.smithi044.iawesn on smithi044 2024-02-19T22:01:51.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:50 smithi104 bash[21066]: cephadm 2024-02-19T22:01:48.884750+0000 mgr.smithi044.ikbsam (mgr.14184) 248 : cephadm [INF] Deploying daemon rgw.foorgw.smithi044.iawesn on smithi044 2024-02-19T22:01:51.621 INFO:teuthology.orchestra.run.smithi044.stdout:debconf: unable to initialize frontend: Dialog 2024-02-19T22:01:51.621 INFO:teuthology.orchestra.run.smithi044.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-19T22:01:51.621 INFO:teuthology.orchestra.run.smithi044.stdout:debconf: falling back to frontend: Readline 2024-02-19T22:01:51.814 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:01:51.814 INFO:teuthology.orchestra.run.smithi044.stdout:Creating config file /etc/papersize with new version 2024-02-19T22:01:51.994 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:51 smithi044 bash[16231]: cluster 2024-02-19T22:01:50.505276+0000 mgr.smithi044.ikbsam (mgr.14184) 249 : cluster [DBG] pgmap v223: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:51.994 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:51 smithi044 bash[16231]: cluster 2024-02-19T22:01:50.881517+0000 mon.smithi044 (mon.0) 645 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-19T22:01:51.995 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:51 smithi044 bash[16231]: audit 2024-02-19T22:01:50.885655+0000 mon.smithi104 (mon.1) 19 : audit [INF] from='client.? 172.21.15.104:0/2583687283' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T22:01:51.995 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:51 smithi044 bash[16231]: audit 2024-02-19T22:01:50.886362+0000 mon.smithi044 (mon.0) 646 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T22:01:52.084 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-02-19T22:01:52.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:51 smithi104 bash[21066]: cluster 2024-02-19T22:01:50.505276+0000 mgr.smithi044.ikbsam (mgr.14184) 249 : cluster [DBG] pgmap v223: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:01:52.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:51 smithi104 bash[21066]: cluster 2024-02-19T22:01:50.881517+0000 mon.smithi044 (mon.0) 645 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-19T22:01:52.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:51 smithi104 bash[21066]: audit 2024-02-19T22:01:50.885655+0000 mon.smithi104 (mon.1) 19 : audit [INF] from='client.? 172.21.15.104:0/2583687283' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T22:01:52.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:51 smithi104 bash[21066]: audit 2024-02-19T22:01:50.886362+0000 mon.smithi044 (mon.0) 646 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-19T22:01:52.679 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-roman (2.0.0-3) ... 2024-02-19T22:01:53.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:51.891029+0000 mon.smithi044 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cluster 2024-02-19T22:01:51.891220+0000 mon.smithi044 (mon.0) 648 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.434250+0000 mon.smithi044 (mon.0) 649 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.441966+0000 mon.smithi044 (mon.0) 650 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cephadm 2024-02-19T22:01:52.468623+0000 mgr.smithi044.ikbsam (mgr.14184) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi044.ylysuo 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.469118+0000 mon.smithi044 (mon.0) 651 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.474912+0000 mon.smithi044 (mon.0) 652 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cephadm 2024-02-19T22:01:52.475866+0000 mgr.smithi044.ikbsam (mgr.14184) 251 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.476233+0000 mon.smithi044 (mon.0) 653 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.481853+0000 mon.smithi044 (mon.0) 654 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.483438+0000 mon.smithi044 (mon.0) 655 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cluster 2024-02-19T22:01:52.506132+0000 mgr.smithi044.ikbsam (mgr.14184) 252 : cluster [DBG] pgmap v226: 65 pgs: 22 unknown, 43 active+clean; 92 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 255 B/s wr, 0 op/s 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.537850+0000 mon.smithi044 (mon.0) 656 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-19T22:01:53.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.541936+0000 mon.smithi044 (mon.0) 657 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-19T22:01:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cephadm 2024-02-19T22:01:52.600921+0000 mgr.smithi044.ikbsam (mgr.14184) 253 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-19T22:01:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cephadm 2024-02-19T22:01:52.601180+0000 mgr.smithi044.ikbsam (mgr.14184) 254 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi044.ylysuo-rgw 2024-02-19T22:01:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.601848+0000 mon.smithi044 (mon.0) 658 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T22:01:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.607917+0000 mon.smithi044 (mon.0) 659 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T22:01:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: audit 2024-02-19T22:01:52.616744+0000 mon.smithi044 (mon.0) 660 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:52 smithi104 bash[21066]: cephadm 2024-02-19T22:01:52.618499+0000 mgr.smithi044.ikbsam (mgr.14184) 255 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi044.ylysuo on smithi044 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:51.891029+0000 mon.smithi044 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cluster 2024-02-19T22:01:51.891220+0000 mon.smithi044 (mon.0) 648 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.434250+0000 mon.smithi044 (mon.0) 649 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.441966+0000 mon.smithi044 (mon.0) 650 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cephadm 2024-02-19T22:01:52.468623+0000 mgr.smithi044.ikbsam (mgr.14184) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi044.ylysuo 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.469118+0000 mon.smithi044 (mon.0) 651 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.474912+0000 mon.smithi044 (mon.0) 652 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cephadm 2024-02-19T22:01:52.475866+0000 mgr.smithi044.ikbsam (mgr.14184) 251 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.476233+0000 mon.smithi044 (mon.0) 653 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.481853+0000 mon.smithi044 (mon.0) 654 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-19T22:01:53.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.483438+0000 mon.smithi044 (mon.0) 655 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cluster 2024-02-19T22:01:52.506132+0000 mgr.smithi044.ikbsam (mgr.14184) 252 : cluster [DBG] pgmap v226: 65 pgs: 22 unknown, 43 active+clean; 92 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 255 B/s wr, 0 op/s 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.537850+0000 mon.smithi044 (mon.0) 656 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.541936+0000 mon.smithi044 (mon.0) 657 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cephadm 2024-02-19T22:01:52.600921+0000 mgr.smithi044.ikbsam (mgr.14184) 253 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cephadm 2024-02-19T22:01:52.601180+0000 mgr.smithi044.ikbsam (mgr.14184) 254 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi044.ylysuo-rgw 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.601848+0000 mon.smithi044 (mon.0) 658 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.607917+0000 mon.smithi044 (mon.0) 659 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi044.ylysuo-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: audit 2024-02-19T22:01:52.616744+0000 mon.smithi044 (mon.0) 660 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:01:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:52 smithi044 bash[16231]: cephadm 2024-02-19T22:01:52.618499+0000 mgr.smithi044.ikbsam (mgr.14184) 255 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi044.ylysuo on smithi044 2024-02-19T22:01:53.836 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-02-19T22:01:54.168 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:53 smithi044 bash[16231]: cluster 2024-02-19T22:01:52.892706+0000 mon.smithi044 (mon.0) 661 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-19T22:01:54.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:53 smithi044 bash[16231]: audit 2024-02-19T22:01:52.901375+0000 mon.smithi104 (mon.1) 20 : audit [INF] from='client.? 172.21.15.104:0/2583687283' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T22:01:54.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:53 smithi044 bash[16231]: audit 2024-02-19T22:01:52.902870+0000 mon.smithi044 (mon.0) 662 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T22:01:54.169 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:53 smithi044 bash[16231]: audit 2024-02-19T22:01:53.788555+0000 mon.smithi044 (mon.0) 663 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:54.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:53 smithi104 bash[21066]: cluster 2024-02-19T22:01:52.892706+0000 mon.smithi044 (mon.0) 661 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-19T22:01:54.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:53 smithi104 bash[21066]: audit 2024-02-19T22:01:52.901375+0000 mon.smithi104 (mon.1) 20 : audit [INF] from='client.? 172.21.15.104:0/2583687283' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T22:01:54.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:53 smithi104 bash[21066]: audit 2024-02-19T22:01:52.902870+0000 mon.smithi044 (mon.0) 662 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-19T22:01:54.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:53 smithi104 bash[21066]: audit 2024-02-19T22:01:53.788555+0000 mon.smithi044 (mon.0) 663 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:54.415 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-olefile (0.45.1-1) ... 2024-02-19T22:01:54.771 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up sgml-base (1.29) ... 2024-02-19T22:01:55.293 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-02-19T22:01:55.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: audit 2024-02-19T22:01:53.905137+0000 mon.smithi044 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-19T22:01:55.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: cluster 2024-02-19T22:01:53.905404+0000 mon.smithi044 (mon.0) 665 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-19T22:01:55.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: cluster 2024-02-19T22:01:54.506945+0000 mgr.smithi044.ikbsam (mgr.14184) 256 : cluster [DBG] pgmap v229: 97 pgs: 4 creating+peering, 60 active+clean, 33 unknown; 108 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 1023 B/s wr, 1 op/s 2024-02-19T22:01:55.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: cluster 2024-02-19T22:01:54.904919+0000 mon.smithi044 (mon.0) 666 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-19T22:01:55.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: audit 2024-02-19T22:01:54.907685+0000 mon.smithi104 (mon.1) 21 : audit [INF] from='client.? 172.21.15.104:0/2583687283' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T22:01:55.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: audit 2024-02-19T22:01:54.909800+0000 mon.smithi044 (mon.0) 667 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T22:01:55.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:54 smithi104 bash[21066]: audit 2024-02-19T22:01:54.912423+0000 mon.smithi044 (mon.0) 668 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T22:01:55.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: audit 2024-02-19T22:01:53.905137+0000 mon.smithi044 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-19T22:01:55.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: cluster 2024-02-19T22:01:53.905404+0000 mon.smithi044 (mon.0) 665 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-19T22:01:55.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: cluster 2024-02-19T22:01:54.506945+0000 mgr.smithi044.ikbsam (mgr.14184) 256 : cluster [DBG] pgmap v229: 97 pgs: 4 creating+peering, 60 active+clean, 33 unknown; 108 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 1023 B/s wr, 1 op/s 2024-02-19T22:01:55.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: cluster 2024-02-19T22:01:54.904919+0000 mon.smithi044 (mon.0) 666 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-19T22:01:55.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: audit 2024-02-19T22:01:54.907685+0000 mon.smithi104 (mon.1) 21 : audit [INF] from='client.? 172.21.15.104:0/2583687283' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T22:01:55.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: audit 2024-02-19T22:01:54.909800+0000 mon.smithi044 (mon.0) 667 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T22:01:55.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:54 smithi044 bash[16231]: audit 2024-02-19T22:01:54.912423+0000 mon.smithi044 (mon.0) 668 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-19T22:01:55.657 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up xml-core (0.18) ... 2024-02-19T22:01:56.438 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-dateutil (2.6.1-1) ... 2024-02-19T22:01:57.042 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-02-19T22:01:57.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:56 smithi044 bash[16231]: audit 2024-02-19T22:01:55.865191+0000 mon.smithi044 (mon.0) 669 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:57.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:56 smithi044 bash[16231]: audit 2024-02-19T22:01:55.872906+0000 mon.smithi044 (mon.0) 670 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:57.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:56 smithi044 bash[16231]: audit 2024-02-19T22:01:55.910125+0000 mon.smithi044 (mon.0) 671 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-19T22:01:57.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:56 smithi044 bash[16231]: audit 2024-02-19T22:01:55.910398+0000 mon.smithi044 (mon.0) 672 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-19T22:01:57.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:56 smithi044 bash[16231]: cluster 2024-02-19T22:01:55.910580+0000 mon.smithi044 (mon.0) 673 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-19T22:01:57.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:56 smithi104 bash[21066]: audit 2024-02-19T22:01:55.865191+0000 mon.smithi044 (mon.0) 669 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:57.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:56 smithi104 bash[21066]: audit 2024-02-19T22:01:55.872906+0000 mon.smithi044 (mon.0) 670 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:57.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:56 smithi104 bash[21066]: audit 2024-02-19T22:01:55.910125+0000 mon.smithi044 (mon.0) 671 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-19T22:01:57.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:56 smithi104 bash[21066]: audit 2024-02-19T22:01:55.910398+0000 mon.smithi044 (mon.0) 672 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-19T22:01:57.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:56 smithi104 bash[21066]: cluster 2024-02-19T22:01:55.910580+0000 mon.smithi044 (mon.0) 673 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-19T22:01:57.678 INFO:teuthology.orchestra.run.smithi044.stdout:Processing triggers for libc-bin (2.27-3ubuntu1.6) ... 2024-02-19T22:01:57.848 INFO:teuthology.orchestra.run.smithi044.stdout:Processing triggers for man-db (2.8.3-2ubuntu0.1) ... 2024-02-19T22:01:58.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:57 smithi104 bash[21066]: cephadm 2024-02-19T22:01:55.891589+0000 mgr.smithi044.ikbsam (mgr.14184) 257 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.ufbisx on smithi104 2024-02-19T22:01:58.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:57 smithi104 bash[21066]: cluster 2024-02-19T22:01:56.507652+0000 mgr.smithi044.ikbsam (mgr.14184) 258 : cluster [DBG] pgmap v232: 129 pgs: 4 creating+peering, 86 active+clean, 39 unknown; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 1023 B/s wr, 3 op/s 2024-02-19T22:01:58.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:57 smithi104 bash[21066]: cluster 2024-02-19T22:01:56.925051+0000 mon.smithi044 (mon.0) 674 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-19T22:01:58.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:57 smithi104 bash[21066]: audit 2024-02-19T22:01:56.927970+0000 mon.smithi044 (mon.0) 675 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T22:01:58.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:57 smithi104 bash[21066]: audit 2024-02-19T22:01:56.928539+0000 mon.smithi104 (mon.1) 22 : audit [INF] from='client.? 172.21.15.104:0/3872693532' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T22:01:58.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:57 smithi104 bash[21066]: audit 2024-02-19T22:01:56.928693+0000 mon.smithi044 (mon.0) 676 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T22:01:58.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:57 smithi044 bash[16231]: cephadm 2024-02-19T22:01:55.891589+0000 mgr.smithi044.ikbsam (mgr.14184) 257 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.ufbisx on smithi104 2024-02-19T22:01:58.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:57 smithi044 bash[16231]: cluster 2024-02-19T22:01:56.507652+0000 mgr.smithi044.ikbsam (mgr.14184) 258 : cluster [DBG] pgmap v232: 129 pgs: 4 creating+peering, 86 active+clean, 39 unknown; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.0 KiB/s rd, 1023 B/s wr, 3 op/s 2024-02-19T22:01:58.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:57 smithi044 bash[16231]: cluster 2024-02-19T22:01:56.925051+0000 mon.smithi044 (mon.0) 674 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-19T22:01:58.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:57 smithi044 bash[16231]: audit 2024-02-19T22:01:56.927970+0000 mon.smithi044 (mon.0) 675 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T22:01:58.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:57 smithi044 bash[16231]: audit 2024-02-19T22:01:56.928539+0000 mon.smithi104 (mon.1) 22 : audit [INF] from='client.? 172.21.15.104:0/3872693532' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T22:01:58.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:57 smithi044 bash[16231]: audit 2024-02-19T22:01:56.928693+0000 mon.smithi044 (mon.0) 676 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-19T22:01:58.542 INFO:teuthology.orchestra.run.smithi044.stdout:Processing triggers for shared-mime-info (1.9-2) ... 2024-02-19T22:01:59.331 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: audit 2024-02-19T22:01:57.926345+0000 mon.smithi044 (mon.0) 677 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T22:01:59.331 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: audit 2024-02-19T22:01:57.926393+0000 mon.smithi044 (mon.0) 678 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T22:01:59.331 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: cluster 2024-02-19T22:01:57.926559+0000 mon.smithi044 (mon.0) 679 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-19T22:01:59.331 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: audit 2024-02-19T22:01:57.930281+0000 mon.smithi104 (mon.1) 23 : audit [INF] from='client.? 172.21.15.104:0/3872693532' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:01:59.332 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: audit 2024-02-19T22:01:57.932759+0000 mon.smithi044 (mon.0) 680 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:01:59.332 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: audit 2024-02-19T22:01:57.933659+0000 mon.smithi044 (mon.0) 681 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:01:59.332 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: cluster 2024-02-19T22:01:58.508412+0000 mgr.smithi044.ikbsam (mgr.14184) 259 : cluster [DBG] pgmap v235: 161 pgs: 18 creating+peering, 110 active+clean, 33 unknown; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.7 KiB/s rd, 767 B/s wr, 4 op/s 2024-02-19T22:01:59.332 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:58 smithi104 bash[21066]: audit 2024-02-19T22:01:58.806182+0000 mon.smithi044 (mon.0) 682 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:01:59.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: audit 2024-02-19T22:01:57.926345+0000 mon.smithi044 (mon.0) 677 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: audit 2024-02-19T22:01:57.926393+0000 mon.smithi044 (mon.0) 678 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: cluster 2024-02-19T22:01:57.926559+0000 mon.smithi044 (mon.0) 679 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: audit 2024-02-19T22:01:57.930281+0000 mon.smithi104 (mon.1) 23 : audit [INF] from='client.? 172.21.15.104:0/3872693532' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: audit 2024-02-19T22:01:57.932759+0000 mon.smithi044 (mon.0) 680 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: audit 2024-02-19T22:01:57.933659+0000 mon.smithi044 (mon.0) 681 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: cluster 2024-02-19T22:01:58.508412+0000 mgr.smithi044.ikbsam (mgr.14184) 259 : cluster [DBG] pgmap v235: 161 pgs: 18 creating+peering, 110 active+clean, 33 unknown; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.7 KiB/s rd, 767 B/s wr, 4 op/s 2024-02-19T22:01:59.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:58 smithi044 bash[16231]: audit 2024-02-19T22:01:58.806182+0000 mon.smithi044 (mon.0) 682 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:00.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:59 smithi104 bash[21066]: audit 2024-02-19T22:01:58.938835+0000 mon.smithi044 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T22:02:00.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:59 smithi104 bash[21066]: audit 2024-02-19T22:01:58.938994+0000 mon.smithi044 (mon.0) 684 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T22:02:00.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:59 smithi104 bash[21066]: cluster 2024-02-19T22:01:58.939080+0000 mon.smithi044 (mon.0) 685 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-19T22:02:00.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:01:59 smithi104 bash[21066]: audit 2024-02-19T22:01:59.896323+0000 mon.smithi044 (mon.0) 686 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.ufbisx"}]: dispatch 2024-02-19T22:02:00.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:59 smithi044 bash[16231]: audit 2024-02-19T22:01:58.938835+0000 mon.smithi044 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi104.lkomsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T22:02:00.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:59 smithi044 bash[16231]: audit 2024-02-19T22:01:58.938994+0000 mon.smithi044 (mon.0) 684 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T22:02:00.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:59 smithi044 bash[16231]: cluster 2024-02-19T22:01:58.939080+0000 mon.smithi044 (mon.0) 685 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-19T22:02:00.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:01:59 smithi044 bash[16231]: audit 2024-02-19T22:01:59.896323+0000 mon.smithi044 (mon.0) 686 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.ufbisx"}]: dispatch 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: cephadm 2024-02-19T22:01:59.895536+0000 mgr.smithi044.ikbsam (mgr.14184) 260 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.ufbisx ... 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:01.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.ufbisx ... 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: cephadm 2024-02-19T22:01:59.895796+0000 mgr.smithi044.ikbsam (mgr.14184) 261 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: cephadm 2024-02-19T22:01:59.897872+0000 mgr.smithi044.ikbsam (mgr.14184) 262 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.ufbisx on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.ufbisx ... 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: cephadm 2024-02-19T22:01:59.900594+0000 mgr.smithi044.ikbsam (mgr.14184) 263 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.oeyepi on smithi044 2024-02-19T22:02:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:00 smithi104 bash[21066]: cluster 2024-02-19T22:02:00.509483+0000 mgr.smithi044.ikbsam (mgr.14184) 264 : cluster [DBG] pgmap v237: 161 pgs: 18 creating+peering, 143 active+clean; 3.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 KiB/s rd, 5.4 KiB/s wr, 200 op/s 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: cephadm 2024-02-19T22:01:59.895536+0000 mgr.smithi044.ikbsam (mgr.14184) 260 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.ufbisx ... 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.ufbisx ... 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: cephadm 2024-02-19T22:01:59.895796+0000 mgr.smithi044.ikbsam (mgr.14184) 261 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: cephadm 2024-02-19T22:01:59.897872+0000 mgr.smithi044.ikbsam (mgr.14184) 262 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.ufbisx on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-ufbisx 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.ufbisx 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.ufbisx ... 2024-02-19T22:02:01.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: cephadm 2024-02-19T22:01:59.900594+0000 mgr.smithi044.ikbsam (mgr.14184) 263 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.oeyepi on smithi044 2024-02-19T22:02:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:00 smithi044 bash[16231]: cluster 2024-02-19T22:02:00.509483+0000 mgr.smithi044.ikbsam (mgr.14184) 264 : cluster [DBG] pgmap v237: 161 pgs: 18 creating+peering, 143 active+clean; 3.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 KiB/s rd, 5.4 KiB/s wr, 200 op/s 2024-02-19T22:02:03.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:03 smithi104 bash[21066]: cluster 2024-02-19T22:02:02.510526+0000 mgr.smithi044.ikbsam (mgr.14184) 265 : cluster [DBG] pgmap v238: 161 pgs: 9 creating+peering, 152 active+clean; 3.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 KiB/s rd, 4.5 KiB/s wr, 177 op/s 2024-02-19T22:02:03.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:03 smithi044 bash[16231]: cluster 2024-02-19T22:02:02.510526+0000 mgr.smithi044.ikbsam (mgr.14184) 265 : cluster [DBG] pgmap v238: 161 pgs: 9 creating+peering, 152 active+clean; 3.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 KiB/s rd, 4.5 KiB/s wr, 177 op/s 2024-02-19T22:02:04.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:04 smithi104 bash[21066]: audit 2024-02-19T22:02:04.026138+0000 mon.smithi044 (mon.0) 687 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.oeyepi"}]: dispatch 2024-02-19T22:02:04.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:04 smithi104 bash[21066]: audit 2024-02-19T22:02:04.036599+0000 mon.smithi044 (mon.0) 688 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:04.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:04 smithi104 bash[21066]: audit 2024-02-19T22:02:04.042144+0000 mon.smithi044 (mon.0) 689 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:02:04.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:04 smithi044 bash[16231]: audit 2024-02-19T22:02:04.026138+0000 mon.smithi044 (mon.0) 687 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.oeyepi"}]: dispatch 2024-02-19T22:02:04.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:04 smithi044 bash[16231]: audit 2024-02-19T22:02:04.036599+0000 mon.smithi044 (mon.0) 688 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:04.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:04 smithi044 bash[16231]: audit 2024-02-19T22:02:04.042144+0000 mon.smithi044 (mon.0) 689 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cephadm 2024-02-19T22:02:04.025165+0000 mgr.smithi044.ikbsam (mgr.14184) 266 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.oeyepi ... 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.876 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.oeyepi ... 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cephadm 2024-02-19T22:02:04.025547+0000 mgr.smithi044.ikbsam (mgr.14184) 267 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cephadm 2024-02-19T22:02:04.027753+0000 mgr.smithi044.ikbsam (mgr.14184) 268 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.oeyepi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:05.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.oeyepi ... 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cephadm 2024-02-19T22:02:04.037326+0000 mgr.smithi044.ikbsam (mgr.14184) 269 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.rcdvvc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cephadm 2024-02-19T22:02:04.040623+0000 mgr.smithi044.ikbsam (mgr.14184) 270 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.iupvbl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cluster 2024-02-19T22:02:04.042659+0000 mgr.smithi044.ikbsam (mgr.14184) 271 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 139 KiB/s rd, 5.6 KiB/s wr, 273 op/s 2024-02-19T22:02:05.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:05 smithi104 bash[21066]: cluster 2024-02-19T22:02:05.034367+0000 mon.smithi044 (mon.0) 690 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:02:05.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cephadm 2024-02-19T22:02:04.025165+0000 mgr.smithi044.ikbsam (mgr.14184) 266 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:05.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.oeyepi ... 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.oeyepi ... 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cephadm 2024-02-19T22:02:04.025547+0000 mgr.smithi044.ikbsam (mgr.14184) 267 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cephadm 2024-02-19T22:02:04.027753+0000 mgr.smithi044.ikbsam (mgr.14184) 268 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.oeyepi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:05.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-oeyepi 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.oeyepi 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.oeyepi ... 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cephadm 2024-02-19T22:02:04.037326+0000 mgr.smithi044.ikbsam (mgr.14184) 269 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.rcdvvc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cephadm 2024-02-19T22:02:04.040623+0000 mgr.smithi044.ikbsam (mgr.14184) 270 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.iupvbl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cluster 2024-02-19T22:02:04.042659+0000 mgr.smithi044.ikbsam (mgr.14184) 271 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 139 KiB/s rd, 5.6 KiB/s wr, 273 op/s 2024-02-19T22:02:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:05 smithi044 bash[16231]: cluster 2024-02-19T22:02:05.034367+0000 mon.smithi044 (mon.0) 690 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:02:07.874 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:07 smithi104 bash[21066]: cluster 2024-02-19T22:02:06.044131+0000 mgr.smithi044.ikbsam (mgr.14184) 272 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 121 KiB/s rd, 4.8 KiB/s wr, 238 op/s 2024-02-19T22:02:07.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:07 smithi044 bash[16231]: cluster 2024-02-19T22:02:06.044131+0000 mgr.smithi044.ikbsam (mgr.14184) 272 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 121 KiB/s rd, 4.8 KiB/s wr, 238 op/s 2024-02-19T22:02:10.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:09 smithi104 bash[21066]: cluster 2024-02-19T22:02:08.045659+0000 mgr.smithi044.ikbsam (mgr.14184) 273 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 KiB/s rd, 4.1 KiB/s wr, 202 op/s 2024-02-19T22:02:10.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:09 smithi104 bash[21066]: audit 2024-02-19T22:02:08.823807+0000 mon.smithi044 (mon.0) 691 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:10.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:09 smithi044 bash[16231]: cluster 2024-02-19T22:02:08.045659+0000 mgr.smithi044.ikbsam (mgr.14184) 273 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 KiB/s rd, 4.1 KiB/s wr, 202 op/s 2024-02-19T22:02:10.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:09 smithi044 bash[16231]: audit 2024-02-19T22:02:08.823807+0000 mon.smithi044 (mon.0) 691 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:11.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:10 smithi044 bash[16231]: audit 2024-02-19T22:02:09.918740+0000 mon.smithi044 (mon.0) 692 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:11.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:10 smithi044 bash[16231]: cluster 2024-02-19T22:02:10.047097+0000 mgr.smithi044.ikbsam (mgr.14184) 274 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 KiB/s rd, 3.5 KiB/s wr, 174 op/s 2024-02-19T22:02:11.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:10 smithi044 bash[16231]: audit 2024-02-19T22:02:10.341412+0000 mon.smithi044 (mon.0) 693 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:11.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:10 smithi044 bash[16231]: audit 2024-02-19T22:02:10.640776+0000 mon.smithi044 (mon.0) 694 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:02:11.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:10 smithi044 bash[16231]: audit 2024-02-19T22:02:10.642805+0000 mon.smithi044 (mon.0) 695 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:02:11.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:10 smithi044 bash[16231]: cephadm 2024-02-19T22:02:10.653325+0000 mgr.smithi044.ikbsam (mgr.14184) 275 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-19T22:02:11.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:10 smithi104 bash[21066]: audit 2024-02-19T22:02:09.918740+0000 mon.smithi044 (mon.0) 692 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:11.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:10 smithi104 bash[21066]: cluster 2024-02-19T22:02:10.047097+0000 mgr.smithi044.ikbsam (mgr.14184) 274 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 89 KiB/s rd, 3.5 KiB/s wr, 174 op/s 2024-02-19T22:02:11.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:10 smithi104 bash[21066]: audit 2024-02-19T22:02:10.341412+0000 mon.smithi044 (mon.0) 693 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:11.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:10 smithi104 bash[21066]: audit 2024-02-19T22:02:10.640776+0000 mon.smithi044 (mon.0) 694 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:02:11.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:10 smithi104 bash[21066]: audit 2024-02-19T22:02:10.642805+0000 mon.smithi044 (mon.0) 695 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:02:11.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:10 smithi104 bash[21066]: cephadm 2024-02-19T22:02:10.653325+0000 mgr.smithi044.ikbsam (mgr.14184) 275 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-19T22:02:12.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: audit 2024-02-19T22:02:11.071106+0000 mon.smithi044 (mon.0) 696 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: audit 2024-02-19T22:02:11.080189+0000 mon.smithi044 (mon.0) 697 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: audit 2024-02-19T22:02:11.088975+0000 mon.smithi044 (mon.0) 698 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: cluster 2024-02-19T22:02:11.090522+0000 mgr.smithi044.ikbsam (mgr.14184) 276 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 1.4 KiB/s wr, 96 op/s 2024-02-19T22:02:12.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: audit 2024-02-19T22:02:11.105725+0000 mon.smithi044 (mon.0) 699 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:02:12.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: audit 2024-02-19T22:02:11.125624+0000 mon.smithi044 (mon.0) 700 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:12 smithi104 bash[21066]: cephadm 2024-02-19T22:02:11.132321+0000 mgr.smithi044.ikbsam (mgr.14184) 277 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.kgwvhq on smithi104 2024-02-19T22:02:12.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: audit 2024-02-19T22:02:11.071106+0000 mon.smithi044 (mon.0) 696 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: audit 2024-02-19T22:02:11.080189+0000 mon.smithi044 (mon.0) 697 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: audit 2024-02-19T22:02:11.088975+0000 mon.smithi044 (mon.0) 698 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: cluster 2024-02-19T22:02:11.090522+0000 mgr.smithi044.ikbsam (mgr.14184) 276 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 49 KiB/s rd, 1.4 KiB/s wr, 96 op/s 2024-02-19T22:02:12.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: audit 2024-02-19T22:02:11.105725+0000 mon.smithi044 (mon.0) 699 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:02:12.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: audit 2024-02-19T22:02:11.125624+0000 mon.smithi044 (mon.0) 700 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:12.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:12 smithi044 bash[16231]: cephadm 2024-02-19T22:02:11.132321+0000 mgr.smithi044.ikbsam (mgr.14184) 277 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.kgwvhq on smithi104 2024-02-19T22:02:13.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:13 smithi104 bash[21066]: cluster 2024-02-19T22:02:12.086524+0000 mon.smithi044 (mon.0) 701 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:02:13.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:13 smithi104 bash[21066]: cluster 2024-02-19T22:02:12.086590+0000 mon.smithi044 (mon.0) 702 : cluster [INF] Cluster is now healthy 2024-02-19T22:02:13.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:13 smithi044 bash[16231]: cluster 2024-02-19T22:02:12.086524+0000 mon.smithi044 (mon.0) 701 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:02:13.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:13 smithi044 bash[16231]: cluster 2024-02-19T22:02:12.086590+0000 mon.smithi044 (mon.0) 702 : cluster [INF] Cluster is now healthy 2024-02-19T22:02:14.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:14 smithi104 bash[21066]: cluster 2024-02-19T22:02:13.091408+0000 mgr.smithi044.ikbsam (mgr.14184) 278 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 1.2 KiB/s wr, 84 op/s 2024-02-19T22:02:14.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:14 smithi104 bash[21066]: audit 2024-02-19T22:02:13.885205+0000 mon.smithi044 (mon.0) 703 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:14.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:14 smithi044 bash[16231]: cluster 2024-02-19T22:02:13.091408+0000 mgr.smithi044.ikbsam (mgr.14184) 278 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 1.2 KiB/s wr, 84 op/s 2024-02-19T22:02:14.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:14 smithi044 bash[16231]: audit 2024-02-19T22:02:13.885205+0000 mon.smithi044 (mon.0) 703 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:16.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: cluster 2024-02-19T22:02:15.092636+0000 mgr.smithi044.ikbsam (mgr.14184) 279 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 185 B/s wr, 2 op/s 2024-02-19T22:02:16.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: cephadm 2024-02-19T22:02:15.359856+0000 mgr.smithi044.ikbsam (mgr.14184) 280 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.kgwvhq ... 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:02:16.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.kgwvhq ... 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:16.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: cephadm 2024-02-19T22:02:15.360109+0000 mgr.smithi044.ikbsam (mgr.14184) 281 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: audit 2024-02-19T22:02:15.360630+0000 mon.smithi044 (mon.0) 704 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.kgwvhq"}]: dispatch 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: cephadm 2024-02-19T22:02:15.362289+0000 mgr.smithi044.ikbsam (mgr.14184) 282 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.kgwvhq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.kgwvhq ... 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:16.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:16.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:16 smithi044 bash[16231]: cephadm 2024-02-19T22:02:15.364542+0000 mgr.smithi044.ikbsam (mgr.14184) 283 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.fxerie on smithi044 2024-02-19T22:02:16.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: cluster 2024-02-19T22:02:15.092636+0000 mgr.smithi044.ikbsam (mgr.14184) 279 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 185 B/s wr, 2 op/s 2024-02-19T22:02:16.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: cephadm 2024-02-19T22:02:15.359856+0000 mgr.smithi044.ikbsam (mgr.14184) 280 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:16.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.kgwvhq ... 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:16.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.kgwvhq ... 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: cephadm 2024-02-19T22:02:15.360109+0000 mgr.smithi044.ikbsam (mgr.14184) 281 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: audit 2024-02-19T22:02:15.360630+0000 mon.smithi044 (mon.0) 704 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.kgwvhq"}]: dispatch 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: cephadm 2024-02-19T22:02:15.362289+0000 mgr.smithi044.ikbsam (mgr.14184) 282 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.kgwvhq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-kgwvhq 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.kgwvhq 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.kgwvhq ... 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:16.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:16.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:16.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:16.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:16 smithi104 bash[21066]: cephadm 2024-02-19T22:02:15.364542+0000 mgr.smithi044.ikbsam (mgr.14184) 283 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.fxerie on smithi044 2024-02-19T22:02:18.486 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:18 smithi044 bash[16231]: cluster 2024-02-19T22:02:17.093282+0000 mgr.smithi044.ikbsam (mgr.14184) 284 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 185 B/s wr, 2 op/s 2024-02-19T22:02:18.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:18 smithi104 bash[21066]: cluster 2024-02-19T22:02:17.093282+0000 mgr.smithi044.ikbsam (mgr.14184) 284 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 185 B/s wr, 2 op/s 2024-02-19T22:02:18.984 INFO:teuthology.orchestra.run.smithi044.stdout:Processing triggers for sgml-base (1.29) ... 2024-02-19T22:02:19.221 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up docutils-common (0.14+dfsg-3) ... 2024-02-19T22:02:19.680 INFO:teuthology.orchestra.run.smithi044.stdout:Processing triggers for sgml-base (1.29) ... 2024-02-19T22:02:19.810 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-docutils (0.14+dfsg-3) ... 2024-02-19T22:02:20.149 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-02-19T22:02:20.180 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-02-19T22:02:20.216 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-02-19T22:02:20.258 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-02-19T22:02:20.301 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-02-19T22:02:20.368 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-02-19T22:02:20.393 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-02-19T22:02:20.419 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-02-19T22:02:20.444 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-02-19T22:02:20.469 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-02-19T22:02:20.486 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-02-19T22:02:20.513 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-02-19T22:02:20.544 INFO:teuthology.orchestra.run.smithi044.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cluster 2024-02-19T22:02:19.094225+0000 mgr.smithi044.ikbsam (mgr.14184) 285 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 185 B/s wr, 2 op/s 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cephadm 2024-02-19T22:02:19.256056+0000 mgr.smithi044.ikbsam (mgr.14184) 286 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.fxerie ... 2024-02-19T22:02:20.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:20.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.fxerie ... 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cephadm 2024-02-19T22:02:19.256305+0000 mgr.smithi044.ikbsam (mgr.14184) 287 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: audit 2024-02-19T22:02:19.256889+0000 mon.smithi044 (mon.0) 705 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.fxerie"}]: dispatch 2024-02-19T22:02:20.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cephadm 2024-02-19T22:02:19.257997+0000 mgr.smithi044.ikbsam (mgr.14184) 288 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.fxerie on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.fxerie ... 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cephadm 2024-02-19T22:02:19.260130+0000 mgr.smithi044.ikbsam (mgr.14184) 289 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.qebfil on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cephadm 2024-02-19T22:02:19.261707+0000 mgr.smithi044.ikbsam (mgr.14184) 290 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:20.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: cluster 2024-02-19T22:02:19.262921+0000 mgr.smithi044.ikbsam (mgr.14184) 291 : cluster [DBG] pgmap v248: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 222 B/s wr, 3 op/s 2024-02-19T22:02:20.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:20 smithi104 bash[21066]: audit 2024-02-19T22:02:19.267752+0000 mon.smithi044 (mon.0) 706 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:02:20.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cluster 2024-02-19T22:02:19.094225+0000 mgr.smithi044.ikbsam (mgr.14184) 285 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 185 B/s wr, 2 op/s 2024-02-19T22:02:20.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cephadm 2024-02-19T22:02:19.256056+0000 mgr.smithi044.ikbsam (mgr.14184) 286 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.fxerie ... 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:02:20.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.fxerie ... 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:20.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cephadm 2024-02-19T22:02:19.256305+0000 mgr.smithi044.ikbsam (mgr.14184) 287 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: audit 2024-02-19T22:02:19.256889+0000 mon.smithi044 (mon.0) 705 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.fxerie"}]: dispatch 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cephadm 2024-02-19T22:02:19.257997+0000 mgr.smithi044.ikbsam (mgr.14184) 288 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.fxerie on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-fxerie 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.fxerie 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.fxerie ... 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:20.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cephadm 2024-02-19T22:02:19.260130+0000 mgr.smithi044.ikbsam (mgr.14184) 289 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.qebfil on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:20.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cephadm 2024-02-19T22:02:19.261707+0000 mgr.smithi044.ikbsam (mgr.14184) 290 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:20.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: cluster 2024-02-19T22:02:19.262921+0000 mgr.smithi044.ikbsam (mgr.14184) 291 : cluster [DBG] pgmap v248: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 222 B/s wr, 3 op/s 2024-02-19T22:02:20.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:20 smithi044 bash[16231]: audit 2024-02-19T22:02:19.267752+0000 mon.smithi044 (mon.0) 706 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:02:20.929 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-02-19T22:02:21.322 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-02-19T22:02:21.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:21 smithi104 bash[21066]: cluster 2024-02-19T22:02:20.158413+0000 mon.smithi044 (mon.0) 707 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:02:21.649 INFO:teuthology.orchestra.run.smithi044.stdout:Setting up python3-boto3 (1.4.2-1) ... 2024-02-19T22:02:21.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:21 smithi044 bash[16231]: cluster 2024-02-19T22:02:20.158413+0000 mon.smithi044 (mon.0) 707 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:02:22.332 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T22:02:22.387 INFO:teuthology.orchestra.run.smithi044.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-02-19T22:02:22.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:22 smithi104 bash[21066]: cluster 2024-02-19T22:02:21.264309+0000 mgr.smithi044.ikbsam (mgr.14184) 292 : cluster [DBG] pgmap v249: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 201 B/s wr, 2 op/s 2024-02-19T22:02:22.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:22 smithi044 bash[16231]: cluster 2024-02-19T22:02:21.264309+0000 mgr.smithi044.ikbsam (mgr.14184) 292 : cluster [DBG] pgmap v249: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 201 B/s wr, 2 op/s 2024-02-19T22:02:24.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:24 smithi104 bash[21066]: cluster 2024-02-19T22:02:23.266094+0000 mgr.smithi044.ikbsam (mgr.14184) 293 : cluster [DBG] pgmap v250: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 905 B/s rd, 201 B/s wr, 1 op/s 2024-02-19T22:02:24.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:24 smithi104 bash[21066]: audit 2024-02-19T22:02:23.909161+0000 mon.smithi044 (mon.0) 708 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:24.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:24 smithi044 bash[16231]: cluster 2024-02-19T22:02:23.266094+0000 mgr.smithi044.ikbsam (mgr.14184) 293 : cluster [DBG] pgmap v250: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 905 B/s rd, 201 B/s wr, 1 op/s 2024-02-19T22:02:24.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:24 smithi044 bash[16231]: audit 2024-02-19T22:02:23.909161+0000 mon.smithi044 (mon.0) 708 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.162815+0000 mon.smithi044 (mon.0) 709 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: cluster 2024-02-19T22:02:25.267729+0000 mgr.smithi044.ikbsam (mgr.14184) 294 : cluster [DBG] pgmap v251: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.532734+0000 mon.smithi044 (mon.0) 710 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.534727+0000 mon.smithi044 (mon.0) 711 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.536372+0000 mon.smithi044 (mon.0) 712 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: cephadm 2024-02-19T22:02:25.543063+0000 mgr.smithi044.ikbsam (mgr.14184) 295 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.820675+0000 mon.smithi044 (mon.0) 713 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: cluster 2024-02-19T22:02:25.821568+0000 mgr.smithi044.ikbsam (mgr.14184) 296 : cluster [DBG] pgmap v252: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.827836+0000 mon.smithi044 (mon.0) 714 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: audit 2024-02-19T22:02:25.842545+0000 mon.smithi044 (mon.0) 715 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:26 smithi104 bash[21066]: cephadm 2024-02-19T22:02:25.846770+0000 mgr.smithi044.ikbsam (mgr.14184) 297 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.dlqgpw on smithi104 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.162815+0000 mon.smithi044 (mon.0) 709 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: cluster 2024-02-19T22:02:25.267729+0000 mgr.smithi044.ikbsam (mgr.14184) 294 : cluster [DBG] pgmap v251: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.532734+0000 mon.smithi044 (mon.0) 710 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.534727+0000 mon.smithi044 (mon.0) 711 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.536372+0000 mon.smithi044 (mon.0) 712 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: cephadm 2024-02-19T22:02:25.543063+0000 mgr.smithi044.ikbsam (mgr.14184) 295 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.820675+0000 mon.smithi044 (mon.0) 713 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: cluster 2024-02-19T22:02:25.821568+0000 mgr.smithi044.ikbsam (mgr.14184) 296 : cluster [DBG] pgmap v252: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-02-19T22:02:26.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.827836+0000 mon.smithi044 (mon.0) 714 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:02:26.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: audit 2024-02-19T22:02:25.842545+0000 mon.smithi044 (mon.0) 715 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:26.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:26 smithi044 bash[16231]: cephadm 2024-02-19T22:02:25.846770+0000 mgr.smithi044.ikbsam (mgr.14184) 297 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.dlqgpw on smithi104 2024-02-19T22:02:27.225 INFO:teuthology.orchestra.run.smithi044.stderr:Inferring fsid 3594d200-cf71-11ee-95bb-87774f69a715 2024-02-19T22:02:27.256 INFO:teuthology.orchestra.run.smithi044.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7fa249cc0191869e2bcc743303b0da933d04d152b2397edb19ec992e48553ab9 2024-02-19T22:02:27.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:27 smithi104 bash[21066]: cluster 2024-02-19T22:02:26.159791+0000 mon.smithi044 (mon.0) 716 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:02:27.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:27 smithi104 bash[21066]: cluster 2024-02-19T22:02:26.159870+0000 mon.smithi044 (mon.0) 717 : cluster [INF] Cluster is now healthy 2024-02-19T22:02:27.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:27 smithi044 bash[16231]: cluster 2024-02-19T22:02:26.159791+0000 mon.smithi044 (mon.0) 716 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:02:27.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:27 smithi044 bash[16231]: cluster 2024-02-19T22:02:26.159870+0000 mon.smithi044 (mon.0) 717 : cluster [INF] Cluster is now healthy 2024-02-19T22:02:28.487 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:28 smithi044 bash[16231]: cluster 2024-02-19T22:02:27.822679+0000 mgr.smithi044.ikbsam (mgr.14184) 298 : cluster [DBG] pgmap v253: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 703 B/s rd, 0 op/s 2024-02-19T22:02:28.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:28 smithi104 bash[21066]: cluster 2024-02-19T22:02:27.822679+0000 mgr.smithi044.ikbsam (mgr.14184) 298 : cluster [DBG] pgmap v253: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 703 B/s rd, 0 op/s 2024-02-19T22:02:29.456 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:29 smithi044 bash[16231]: audit 2024-02-19T22:02:28.431112+0000 mon.smithi044 (mon.0) 718 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]}]: dispatch 2024-02-19T22:02:29.599 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:29 smithi104 bash[21066]: audit 2024-02-19T22:02:28.431112+0000 mon.smithi044 (mon.0) 718 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]}]: dispatch 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: audit 2024-02-19T22:02:29.179943+0000 mon.smithi044 (mon.0) 719 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]}]': finished 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: cluster 2024-02-19T22:02:29.180036+0000 mon.smithi044 (mon.0) 720 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: cephadm 2024-02-19T22:02:29.664600+0000 mgr.smithi044.ikbsam (mgr.14184) 299 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dlqgpw ... 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:30.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dlqgpw ... 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: cephadm 2024-02-19T22:02:29.665350+0000 mgr.smithi044.ikbsam (mgr.14184) 300 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: audit 2024-02-19T22:02:29.666052+0000 mon.smithi044 (mon.0) 721 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.dlqgpw"}]: dispatch 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: cephadm 2024-02-19T22:02:29.667666+0000 mgr.smithi044.ikbsam (mgr.14184) 301 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dlqgpw ... 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: cephadm 2024-02-19T22:02:29.672362+0000 mgr.smithi044.ikbsam (mgr.14184) 302 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.lkczht on smithi044 2024-02-19T22:02:30.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:30 smithi104 bash[21066]: cluster 2024-02-19T22:02:29.823419+0000 mgr.smithi044.ikbsam (mgr.14184) 303 : cluster [DBG] pgmap v255: 161 pgs: 1 peering, 160 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 2 op/s 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: audit 2024-02-19T22:02:29.179943+0000 mon.smithi044 (mon.0) 719 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]}]': finished 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: cluster 2024-02-19T22:02:29.180036+0000 mon.smithi044 (mon.0) 720 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: cephadm 2024-02-19T22:02:29.664600+0000 mgr.smithi044.ikbsam (mgr.14184) 299 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dlqgpw ... 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dlqgpw ... 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: cephadm 2024-02-19T22:02:29.665350+0000 mgr.smithi044.ikbsam (mgr.14184) 300 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: audit 2024-02-19T22:02:29.666052+0000 mon.smithi044 (mon.0) 721 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.dlqgpw"}]: dispatch 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: cephadm 2024-02-19T22:02:29.667666+0000 mgr.smithi044.ikbsam (mgr.14184) 301 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dlqgpw ... 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: cephadm 2024-02-19T22:02:29.672362+0000 mgr.smithi044.ikbsam (mgr.14184) 302 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.lkczht on smithi044 2024-02-19T22:02:30.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:30 smithi044 bash[16231]: cluster 2024-02-19T22:02:29.823419+0000 mgr.smithi044.ikbsam (mgr.14184) 303 : cluster [DBG] pgmap v255: 161 pgs: 1 peering, 160 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 2 op/s 2024-02-19T22:02:31.457 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:31 smithi044 bash[16231]: cluster 2024-02-19T22:02:30.201800+0000 mon.smithi044 (mon.0) 722 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-19T22:02:31.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:31 smithi104 bash[21066]: cluster 2024-02-19T22:02:30.201800+0000 mon.smithi044 (mon.0) 722 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-19T22:02:32.417 INFO:teuthology.run_tasks:Running task python... 2024-02-19T22:02:32.431 INFO:tasks.python:Running python on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:02:32.431 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-02-19T22:02:32.431 DEBUG:teuthology.orchestra.run.smithi044:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-02-19T22:02:32.473 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:32 smithi044 bash[16231]: cluster 2024-02-19T22:02:31.824235+0000 mgr.smithi044.ikbsam (mgr.14184) 304 : cluster [DBG] pgmap v257: 161 pgs: 1 peering, 160 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.6 KiB/s rd, 2 op/s 2024-02-19T22:02:32.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:32 smithi104 bash[21066]: cluster 2024-02-19T22:02:31.824235+0000 mgr.smithi044.ikbsam (mgr.14184) 304 : cluster [DBG] pgmap v257: 161 pgs: 1 peering, 160 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.6 KiB/s rd, 2 op/s 2024-02-19T22:02:34.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:34 smithi104 bash[21066]: cluster 2024-02-19T22:02:33.281939+0000 mon.smithi044 (mon.0) 723 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-19T22:02:34.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:34 smithi104 bash[21066]: audit 2024-02-19T22:02:33.283923+0000 mon.smithi044 (mon.0) 724 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-19T22:02:34.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:34 smithi104 bash[21066]: cluster 2024-02-19T22:02:33.825103+0000 mgr.smithi044.ikbsam (mgr.14184) 305 : cluster [DBG] pgmap v259: 193 pgs: 32 unknown, 1 peering, 160 active+clean; 5.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.3 KiB/s rd, 170 B/s wr, 3 op/s 2024-02-19T22:02:34.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:34 smithi104 bash[21066]: audit 2024-02-19T22:02:33.996074+0000 mon.smithi044 (mon.0) 725 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.lkczht"}]: dispatch 2024-02-19T22:02:34.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:34 smithi044 bash[16231]: cluster 2024-02-19T22:02:33.281939+0000 mon.smithi044 (mon.0) 723 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-19T22:02:34.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:34 smithi044 bash[16231]: audit 2024-02-19T22:02:33.283923+0000 mon.smithi044 (mon.0) 724 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-19T22:02:34.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:34 smithi044 bash[16231]: cluster 2024-02-19T22:02:33.825103+0000 mgr.smithi044.ikbsam (mgr.14184) 305 : cluster [DBG] pgmap v259: 193 pgs: 32 unknown, 1 peering, 160 active+clean; 5.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.3 KiB/s rd, 170 B/s wr, 3 op/s 2024-02-19T22:02:34.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:34 smithi044 bash[16231]: audit 2024-02-19T22:02:33.996074+0000 mon.smithi044 (mon.0) 725 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.lkczht"}]: dispatch 2024-02-19T22:02:35.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cephadm 2024-02-19T22:02:33.994939+0000 mgr.smithi044.ikbsam (mgr.14184) 306 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.lkczht ... 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:02:35.626 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.lkczht ... 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cephadm 2024-02-19T22:02:33.995403+0000 mgr.smithi044.ikbsam (mgr.14184) 307 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cephadm 2024-02-19T22:02:33.997910+0000 mgr.smithi044.ikbsam (mgr.14184) 308 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.lkczht ... 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cephadm 2024-02-19T22:02:34.002199+0000 mgr.smithi044.ikbsam (mgr.14184) 309 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cephadm 2024-02-19T22:02:34.005790+0000 mgr.smithi044.ikbsam (mgr.14184) 310 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cluster 2024-02-19T22:02:34.007204+0000 mgr.smithi044.ikbsam (mgr.14184) 311 : cluster [DBG] pgmap v260: 193 pgs: 6 creating+peering, 26 unknown, 1 peering, 160 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 424 B/s wr, 3 op/s 2024-02-19T22:02:35.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cluster 2024-02-19T22:02:34.275896+0000 mon.smithi044 (mon.0) 726 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:02:35.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: audit 2024-02-19T22:02:34.294980+0000 mon.smithi044 (mon.0) 727 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-19T22:02:35.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: cluster 2024-02-19T22:02:34.295606+0000 mon.smithi044 (mon.0) 728 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-19T22:02:35.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:35 smithi104 bash[21066]: audit 2024-02-19T22:02:34.306123+0000 mon.smithi044 (mon.0) 729 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cephadm 2024-02-19T22:02:33.994939+0000 mgr.smithi044.ikbsam (mgr.14184) 306 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.lkczht ... 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.lkczht ... 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cephadm 2024-02-19T22:02:33.995403+0000 mgr.smithi044.ikbsam (mgr.14184) 307 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cephadm 2024-02-19T22:02:33.997910+0000 mgr.smithi044.ikbsam (mgr.14184) 308 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht 2024-02-19T22:02:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.lkczht ... 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cephadm 2024-02-19T22:02:34.002199+0000 mgr.smithi044.ikbsam (mgr.14184) 309 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cephadm 2024-02-19T22:02:34.005790+0000 mgr.smithi044.ikbsam (mgr.14184) 310 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cluster 2024-02-19T22:02:34.007204+0000 mgr.smithi044.ikbsam (mgr.14184) 311 : cluster [DBG] pgmap v260: 193 pgs: 6 creating+peering, 26 unknown, 1 peering, 160 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 424 B/s wr, 3 op/s 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cluster 2024-02-19T22:02:34.275896+0000 mon.smithi044 (mon.0) 726 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: audit 2024-02-19T22:02:34.294980+0000 mon.smithi044 (mon.0) 727 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: cluster 2024-02-19T22:02:34.295606+0000 mon.smithi044 (mon.0) 728 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-19T22:02:35.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:35 smithi044 bash[16231]: audit 2024-02-19T22:02:34.306123+0000 mon.smithi044 (mon.0) 729 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-19T22:02:36.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:36 smithi104 bash[21066]: audit 2024-02-19T22:02:35.295442+0000 mon.smithi044 (mon.0) 730 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T22:02:36.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:36 smithi104 bash[21066]: cluster 2024-02-19T22:02:35.295526+0000 mon.smithi044 (mon.0) 731 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-19T22:02:36.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:36 smithi044 bash[16231]: audit 2024-02-19T22:02:35.295442+0000 mon.smithi044 (mon.0) 730 : audit [INF] from='client.? 172.21.15.44:0/2836467379' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-19T22:02:36.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:36 smithi044 bash[16231]: cluster 2024-02-19T22:02:35.295526+0000 mon.smithi044 (mon.0) 731 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-19T22:02:37.388 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-19T22:02:37.399 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:02:37.399 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-02-19T22:02:37.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:37 smithi104 bash[21066]: cluster 2024-02-19T22:02:36.008380+0000 mgr.smithi044.ikbsam (mgr.14184) 312 : cluster [DBG] pgmap v263: 193 pgs: 6 creating+peering, 14 unknown, 173 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.1 KiB/s rd, 489 B/s wr, 3 op/s 2024-02-19T22:02:37.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:37 smithi104 bash[21066]: cluster 2024-02-19T22:02:36.320920+0000 mon.smithi044 (mon.0) 732 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-19T22:02:37.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:37 smithi104 bash[21066]: audit 2024-02-19T22:02:36.327954+0000 mon.smithi044 (mon.0) 733 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-19T22:02:37.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:37 smithi044 bash[16231]: cluster 2024-02-19T22:02:36.008380+0000 mgr.smithi044.ikbsam (mgr.14184) 312 : cluster [DBG] pgmap v263: 193 pgs: 6 creating+peering, 14 unknown, 173 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.1 KiB/s rd, 489 B/s wr, 3 op/s 2024-02-19T22:02:37.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:37 smithi044 bash[16231]: cluster 2024-02-19T22:02:36.320920+0000 mon.smithi044 (mon.0) 732 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-19T22:02:37.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:37 smithi044 bash[16231]: audit 2024-02-19T22:02:36.327954+0000 mon.smithi044 (mon.0) 733 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-19T22:02:38.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:38 smithi104 bash[21066]: audit 2024-02-19T22:02:37.322423+0000 mon.smithi044 (mon.0) 734 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-19T22:02:38.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:38 smithi104 bash[21066]: cluster 2024-02-19T22:02:37.322633+0000 mon.smithi044 (mon.0) 735 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-19T22:02:38.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:38 smithi104 bash[21066]: cluster 2024-02-19T22:02:38.323015+0000 mon.smithi044 (mon.0) 736 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-19T22:02:38.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:38 smithi044 bash[16231]: audit 2024-02-19T22:02:37.322423+0000 mon.smithi044 (mon.0) 734 : audit [INF] from='client.? 172.21.15.44:0/3436698786' entity='client.rgw.foorgw.smithi044.iawesn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-19T22:02:38.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:38 smithi044 bash[16231]: cluster 2024-02-19T22:02:37.322633+0000 mon.smithi044 (mon.0) 735 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-19T22:02:38.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:38 smithi044 bash[16231]: cluster 2024-02-19T22:02:38.323015+0000 mon.smithi044 (mon.0) 736 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-19T22:02:39.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:39 smithi104 bash[21066]: cluster 2024-02-19T22:02:38.009811+0000 mgr.smithi044.ikbsam (mgr.14184) 313 : cluster [DBG] pgmap v266: 225 pgs: 14 creating+peering, 17 unknown, 194 active+clean; 6.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 767 B/s wr, 5 op/s 2024-02-19T22:02:39.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:39 smithi104 bash[21066]: audit 2024-02-19T22:02:38.939789+0000 mon.smithi044 (mon.0) 737 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:39.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:39 smithi044 bash[16231]: cluster 2024-02-19T22:02:38.009811+0000 mgr.smithi044.ikbsam (mgr.14184) 313 : cluster [DBG] pgmap v266: 225 pgs: 14 creating+peering, 17 unknown, 194 active+clean; 6.0 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 767 B/s wr, 5 op/s 2024-02-19T22:02:39.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:39 smithi044 bash[16231]: audit 2024-02-19T22:02:38.939789+0000 mon.smithi044 (mon.0) 737 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout:{ 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout: "bind": "/foouser", 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout: "path": "/", 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout: "cluster": "foo", 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout: "mode": "RW", 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout: "squash": "none" 2024-02-19T22:02:41.333 INFO:teuthology.orchestra.run.smithi044.stdout:} 2024-02-19T22:02:41.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:41 smithi104 bash[21066]: cluster 2024-02-19T22:02:40.011606+0000 mgr.smithi044.ikbsam (mgr.14184) 314 : cluster [DBG] pgmap v268: 225 pgs: 8 creating+peering, 217 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1.7 KiB/s wr, 8 op/s 2024-02-19T22:02:41.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:41 smithi044 bash[16231]: cluster 2024-02-19T22:02:40.011606+0000 mgr.smithi044.ikbsam (mgr.14184) 314 : cluster [DBG] pgmap v268: 225 pgs: 8 creating+peering, 217 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1.7 KiB/s wr, 8 op/s 2024-02-19T22:02:42.013 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-19T22:02:42.023 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-02-19T22:02:42.023 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:02:42.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:42 smithi104 bash[21066]: audit 2024-02-19T22:02:41.130496+0000 mgr.smithi044.ikbsam (mgr.14184) 315 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:02:42.653 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:42 smithi044 bash[16231]: audit 2024-02-19T22:02:41.130496+0000 mgr.smithi044.ikbsam (mgr.14184) 315 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-19T22:02:43.620 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:43 smithi044 bash[16231]: cluster 2024-02-19T22:02:42.012762+0000 mgr.smithi044.ikbsam (mgr.14184) 316 : cluster [DBG] pgmap v269: 225 pgs: 3 creating+peering, 222 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 1.3 KiB/s wr, 6 op/s 2024-02-19T22:02:43.624 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:43 smithi104 bash[21066]: cluster 2024-02-19T22:02:42.012762+0000 mgr.smithi044.ikbsam (mgr.14184) 316 : cluster [DBG] pgmap v269: 225 pgs: 3 creating+peering, 222 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 1.3 KiB/s wr, 6 op/s 2024-02-19T22:02:44.903 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:44 smithi044 bash[16231]: audit 2024-02-19T22:02:43.627117+0000 mon.smithi044 (mon.0) 738 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:45.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:44 smithi104 bash[21066]: audit 2024-02-19T22:02:43.627117+0000 mon.smithi044 (mon.0) 738 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:45.559 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:02:45.559 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:02:45.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:45 smithi044 bash[16231]: cluster 2024-02-19T22:02:44.013866+0000 mgr.smithi044.ikbsam (mgr.14184) 317 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 1.3 KiB/s wr, 16 op/s 2024-02-19T22:02:46.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:45 smithi104 bash[21066]: cluster 2024-02-19T22:02:44.013866+0000 mgr.smithi044.ikbsam (mgr.14184) 317 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 1.3 KiB/s wr, 16 op/s 2024-02-19T22:02:46.288 INFO:tasks.cephadm:nfs.foo has 1/1 2024-02-19T22:02:46.288 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-19T22:02:46.299 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-02-19T22:02:46.299 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:02:46.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:46 smithi044 bash[16231]: audit 2024-02-19T22:02:45.552118+0000 mgr.smithi044.ikbsam (mgr.14184) 318 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:02:47.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:46 smithi104 bash[21066]: audit 2024-02-19T22:02:45.552118+0000 mgr.smithi044.ikbsam (mgr.14184) 318 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:02:47.744 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:47 smithi044 bash[16231]: cluster 2024-02-19T22:02:46.014912+0000 mgr.smithi044.ikbsam (mgr.14184) 319 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 1.1 KiB/s wr, 19 op/s 2024-02-19T22:02:48.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:47 smithi104 bash[21066]: cluster 2024-02-19T22:02:46.014912+0000 mgr.smithi044.ikbsam (mgr.14184) 319 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 1.1 KiB/s wr, 19 op/s 2024-02-19T22:02:49.802 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:02:49.803 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:02:50.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:49 smithi104 bash[21066]: cluster 2024-02-19T22:02:48.016578+0000 mgr.smithi044.ikbsam (mgr.14184) 320 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.3 KiB/s rd, 716 B/s wr, 15 op/s 2024-02-19T22:02:50.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:49 smithi044 bash[16231]: cluster 2024-02-19T22:02:48.016578+0000 mgr.smithi044.ikbsam (mgr.14184) 320 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.3 KiB/s rd, 716 B/s wr, 15 op/s 2024-02-19T22:02:50.452 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:02:50.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:50 smithi044 bash[16231]: audit 2024-02-19T22:02:49.788072+0000 mgr.smithi044.ikbsam (mgr.14184) 321 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:02:51.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:50 smithi104 bash[21066]: audit 2024-02-19T22:02:49.788072+0000 mgr.smithi044.ikbsam (mgr.14184) 321 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:02:51.453 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:02:51.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:51 smithi044 bash[16231]: cluster 2024-02-19T22:02:50.017601+0000 mgr.smithi044.ikbsam (mgr.14184) 322 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.0 KiB/s rd, 612 B/s wr, 12 op/s 2024-02-19T22:02:52.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:51 smithi104 bash[21066]: cluster 2024-02-19T22:02:50.017601+0000 mgr.smithi044.ikbsam (mgr.14184) 322 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.0 KiB/s rd, 612 B/s wr, 12 op/s 2024-02-19T22:02:54.124 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:53 smithi104 bash[21066]: cluster 2024-02-19T22:02:52.018672+0000 mgr.smithi044.ikbsam (mgr.14184) 323 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 170 B/s wr, 10 op/s 2024-02-19T22:02:54.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:53 smithi044 bash[16231]: cluster 2024-02-19T22:02:52.018672+0000 mgr.smithi044.ikbsam (mgr.14184) 323 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 170 B/s wr, 10 op/s 2024-02-19T22:02:54.829 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:02:54.829 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:02:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:54 smithi044 bash[16231]: audit 2024-02-19T22:02:53.959952+0000 mon.smithi044 (mon.0) 739 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:54 smithi044 bash[16231]: cluster 2024-02-19T22:02:54.020242+0000 mgr.smithi044.ikbsam (mgr.14184) 324 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.4 KiB/s rd, 170 B/s wr, 10 op/s 2024-02-19T22:02:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:54 smithi044 bash[16231]: audit 2024-02-19T22:02:54.814303+0000 mgr.smithi044.ikbsam (mgr.14184) 325 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:02:55.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:54 smithi104 bash[21066]: audit 2024-02-19T22:02:53.959952+0000 mon.smithi044 (mon.0) 739 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:02:55.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:54 smithi104 bash[21066]: cluster 2024-02-19T22:02:54.020242+0000 mgr.smithi044.ikbsam (mgr.14184) 324 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.4 KiB/s rd, 170 B/s wr, 10 op/s 2024-02-19T22:02:55.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:54 smithi104 bash[21066]: audit 2024-02-19T22:02:54.814303+0000 mgr.smithi044.ikbsam (mgr.14184) 325 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:02:55.545 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:02:56.545 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:02:57.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:57 smithi104 bash[21066]: cluster 2024-02-19T22:02:56.022061+0000 mgr.smithi044.ikbsam (mgr.14184) 326 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-19T22:02:57.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:57 smithi044 bash[16231]: cluster 2024-02-19T22:02:56.022061+0000 mgr.smithi044.ikbsam (mgr.14184) 326 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-19T22:02:59.344 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:02:59 smithi044 bash[16231]: cluster 2024-02-19T22:02:58.023038+0000 mgr.smithi044.ikbsam (mgr.14184) 327 : 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-02-19T22:02:59.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:02:59 smithi104 bash[21066]: cluster 2024-02-19T22:02:58.023038+0000 mgr.smithi044.ikbsam (mgr.14184) 327 : 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-02-19T22:02:59.792 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:02:59.792 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:00.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:00 smithi044 bash[16231]: audit 2024-02-19T22:02:59.780867+0000 mgr.smithi044.ikbsam (mgr.14184) 328 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:00.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:00 smithi104 bash[21066]: audit 2024-02-19T22:02:59.780867+0000 mgr.smithi044.ikbsam (mgr.14184) 328 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:00.461 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:01.374 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:01 smithi104 bash[21066]: cluster 2024-02-19T22:03:00.024840+0000 mgr.smithi044.ikbsam (mgr.14184) 329 : cluster [DBG] pgmap v278: 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-02-19T22:03:01.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:01 smithi044 bash[16231]: cluster 2024-02-19T22:03:00.024840+0000 mgr.smithi044.ikbsam (mgr.14184) 329 : cluster [DBG] pgmap v278: 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-02-19T22:03:01.462 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:03.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:03 smithi104 bash[21066]: cluster 2024-02-19T22:03:02.026243+0000 mgr.smithi044.ikbsam (mgr.14184) 330 : cluster [DBG] pgmap v279: 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-02-19T22:03:03.403 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:03 smithi044 bash[16231]: cluster 2024-02-19T22:03:02.026243+0000 mgr.smithi044.ikbsam (mgr.14184) 330 : cluster [DBG] pgmap v279: 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-02-19T22:03:04.720 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:04.720 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:05.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:05 smithi104 bash[21066]: cluster 2024-02-19T22:03:04.027851+0000 mgr.smithi044.ikbsam (mgr.14184) 331 : cluster [DBG] pgmap v280: 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-02-19T22:03:05.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:05 smithi104 bash[21066]: audit 2024-02-19T22:03:04.709187+0000 mgr.smithi044.ikbsam (mgr.14184) 332 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:05.390 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:05 smithi044 bash[16231]: cluster 2024-02-19T22:03:04.027851+0000 mgr.smithi044.ikbsam (mgr.14184) 331 : cluster [DBG] pgmap v280: 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-02-19T22:03:05.390 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:05 smithi044 bash[16231]: audit 2024-02-19T22:03:04.709187+0000 mgr.smithi044.ikbsam (mgr.14184) 332 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:05.391 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:06.392 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:07.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:07 smithi104 bash[21066]: cluster 2024-02-19T22:03:06.029662+0000 mgr.smithi044.ikbsam (mgr.14184) 333 : 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, 170 B/s wr, 0 op/s 2024-02-19T22:03:07.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:07 smithi044 bash[16231]: cluster 2024-02-19T22:03:06.029662+0000 mgr.smithi044.ikbsam (mgr.14184) 333 : 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, 170 B/s wr, 0 op/s 2024-02-19T22:03:09.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:09 smithi104 bash[21066]: cluster 2024-02-19T22:03:08.031405+0000 mgr.smithi044.ikbsam (mgr.14184) 334 : cluster [DBG] pgmap v282: 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-02-19T22:03:09.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:09 smithi044 bash[16231]: cluster 2024-02-19T22:03:08.031405+0000 mgr.smithi044.ikbsam (mgr.14184) 334 : cluster [DBG] pgmap v282: 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-02-19T22:03:09.727 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:09.727 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:10.401 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:10 smithi044 bash[16231]: audit 2024-02-19T22:03:09.712961+0000 mgr.smithi044.ikbsam (mgr.14184) 335 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:10.402 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:10.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:10 smithi104 bash[21066]: audit 2024-02-19T22:03:09.712961+0000 mgr.smithi044.ikbsam (mgr.14184) 335 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:11.404 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:11.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:11 smithi044 bash[16231]: cluster 2024-02-19T22:03:10.033281+0000 mgr.smithi044.ikbsam (mgr.14184) 336 : cluster [DBG] pgmap v283: 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-02-19T22:03:11.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:11 smithi104 bash[21066]: cluster 2024-02-19T22:03:10.033281+0000 mgr.smithi044.ikbsam (mgr.14184) 336 : cluster [DBG] pgmap v283: 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-02-19T22:03:13.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:13 smithi044 bash[16231]: cluster 2024-02-19T22:03:12.034681+0000 mgr.smithi044.ikbsam (mgr.14184) 337 : 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-02-19T22:03:13.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:13 smithi104 bash[21066]: cluster 2024-02-19T22:03:12.034681+0000 mgr.smithi044.ikbsam (mgr.14184) 337 : 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-02-19T22:03:14.785 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:14.785 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:15.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:15 smithi044 bash[16231]: cluster 2024-02-19T22:03:14.035863+0000 mgr.smithi044.ikbsam (mgr.14184) 338 : cluster [DBG] pgmap v285: 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-02-19T22:03:15.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:15 smithi044 bash[16231]: audit 2024-02-19T22:03:14.770054+0000 mgr.smithi044.ikbsam (mgr.14184) 339 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:15.421 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:15.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:15 smithi104 bash[21066]: cluster 2024-02-19T22:03:14.035863+0000 mgr.smithi044.ikbsam (mgr.14184) 338 : cluster [DBG] pgmap v285: 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-02-19T22:03:15.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:15 smithi104 bash[21066]: audit 2024-02-19T22:03:14.770054+0000 mgr.smithi044.ikbsam (mgr.14184) 339 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:16.422 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:17.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:17 smithi104 bash[21066]: cluster 2024-02-19T22:03:16.037549+0000 mgr.smithi044.ikbsam (mgr.14184) 340 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:17.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:17 smithi044 bash[16231]: cluster 2024-02-19T22:03:16.037549+0000 mgr.smithi044.ikbsam (mgr.14184) 340 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:19.561 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:19 smithi044 bash[16231]: cluster 2024-02-19T22:03:18.039018+0000 mgr.smithi044.ikbsam (mgr.14184) 341 : 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-02-19T22:03:19.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:19 smithi104 bash[21066]: cluster 2024-02-19T22:03:18.039018+0000 mgr.smithi044.ikbsam (mgr.14184) 341 : 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-02-19T22:03:20.002 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:20.003 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:20.678 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:21.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:21 smithi104 bash[21066]: audit 2024-02-19T22:03:19.995560+0000 mgr.smithi044.ikbsam (mgr.14184) 342 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:21.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:21 smithi104 bash[21066]: cluster 2024-02-19T22:03:20.040827+0000 mgr.smithi044.ikbsam (mgr.14184) 343 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:21.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:21 smithi044 bash[16231]: audit 2024-02-19T22:03:19.995560+0000 mgr.smithi044.ikbsam (mgr.14184) 342 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:21.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:21 smithi044 bash[16231]: cluster 2024-02-19T22:03:20.040827+0000 mgr.smithi044.ikbsam (mgr.14184) 343 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:21.680 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:23.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:23 smithi104 bash[21066]: cluster 2024-02-19T22:03:22.042203+0000 mgr.smithi044.ikbsam (mgr.14184) 344 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:23.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:23 smithi044 bash[16231]: cluster 2024-02-19T22:03:22.042203+0000 mgr.smithi044.ikbsam (mgr.14184) 344 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:25.000 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:25.001 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:25.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:25 smithi044 bash[16231]: cluster 2024-02-19T22:03:24.043839+0000 mgr.smithi044.ikbsam (mgr.14184) 345 : cluster [DBG] pgmap v290: 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-02-19T22:03:25.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:25 smithi104 bash[21066]: cluster 2024-02-19T22:03:24.043839+0000 mgr.smithi044.ikbsam (mgr.14184) 345 : cluster [DBG] pgmap v290: 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-02-19T22:03:25.629 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:26.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:26 smithi104 bash[21066]: audit 2024-02-19T22:03:24.986083+0000 mgr.smithi044.ikbsam (mgr.14184) 346 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:26.630 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:26.643 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:26 smithi044 bash[16231]: audit 2024-02-19T22:03:24.986083+0000 mgr.smithi044.ikbsam (mgr.14184) 346 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:27.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:27 smithi104 bash[21066]: cluster 2024-02-19T22:03:26.045504+0000 mgr.smithi044.ikbsam (mgr.14184) 347 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:27.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:27 smithi044 bash[16231]: cluster 2024-02-19T22:03:26.045504+0000 mgr.smithi044.ikbsam (mgr.14184) 347 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:29.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:29 smithi104 bash[21066]: cluster 2024-02-19T22:03:28.047278+0000 mgr.smithi044.ikbsam (mgr.14184) 348 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:29.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:29 smithi104 bash[21066]: audit 2024-02-19T22:03:29.189570+0000 mon.smithi044 (mon.0) 740 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]: dispatch 2024-02-19T22:03:29.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:29 smithi044 bash[16231]: cluster 2024-02-19T22:03:28.047278+0000 mgr.smithi044.ikbsam (mgr.14184) 348 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:03:29.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:29 smithi044 bash[16231]: audit 2024-02-19T22:03:29.189570+0000 mon.smithi044 (mon.0) 740 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]: dispatch 2024-02-19T22:03:30.398 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:30.398 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:30 smithi104 bash[21066]: audit 2024-02-19T22:03:29.200210+0000 mon.smithi044 (mon.0) 741 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-02-19T22:03:30.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:30 smithi104 bash[21066]: cluster 2024-02-19T22:03:29.200308+0000 mon.smithi044 (mon.0) 742 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-19T22:03:30.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:30 smithi044 bash[16231]: audit 2024-02-19T22:03:29.200210+0000 mon.smithi044 (mon.0) 741 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-02-19T22:03:30.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:30 smithi044 bash[16231]: cluster 2024-02-19T22:03:29.200308+0000 mon.smithi044 (mon.0) 742 : cluster [DBG] osdmap e62: 8 total, 8 up, 8 in 2024-02-19T22:03:31.139 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:31.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:31 smithi044 bash[16231]: cluster 2024-02-19T22:03:30.049485+0000 mgr.smithi044.ikbsam (mgr.14184) 349 : cluster [DBG] pgmap v294: 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-02-19T22:03:31.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:31 smithi044 bash[16231]: cluster 2024-02-19T22:03:30.211868+0000 mon.smithi044 (mon.0) 743 : cluster [DBG] osdmap e63: 8 total, 8 up, 8 in 2024-02-19T22:03:31.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:31 smithi044 bash[16231]: audit 2024-02-19T22:03:30.385540+0000 mgr.smithi044.ikbsam (mgr.14184) 350 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:31.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:31 smithi104 bash[21066]: cluster 2024-02-19T22:03:30.049485+0000 mgr.smithi044.ikbsam (mgr.14184) 349 : cluster [DBG] pgmap v294: 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-02-19T22:03:31.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:31 smithi104 bash[21066]: cluster 2024-02-19T22:03:30.211868+0000 mon.smithi044 (mon.0) 743 : cluster [DBG] osdmap e63: 8 total, 8 up, 8 in 2024-02-19T22:03:31.625 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:31 smithi104 bash[21066]: audit 2024-02-19T22:03:30.385540+0000 mgr.smithi044.ikbsam (mgr.14184) 350 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:32.140 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:33.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:33 smithi044 bash[16231]: cluster 2024-02-19T22:03:32.050949+0000 mgr.smithi044.ikbsam (mgr.14184) 351 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:03:33.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:33 smithi104 bash[21066]: cluster 2024-02-19T22:03:32.050949+0000 mgr.smithi044.ikbsam (mgr.14184) 351 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:03:34.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:34 smithi104 bash[21066]: audit 2024-02-19T22:03:34.009848+0000 mon.smithi044 (mon.0) 744 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:03:34.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:34 smithi044 bash[16231]: audit 2024-02-19T22:03:34.009848+0000 mon.smithi044 (mon.0) 744 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:03:35.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:35 smithi044 bash[16231]: cluster 2024-02-19T22:03:34.051889+0000 mgr.smithi044.ikbsam (mgr.14184) 352 : cluster [DBG] pgmap v297: 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-02-19T22:03:35.704 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:35.704 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:02:25.520148Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:02:25.147392Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:02:25.520611Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:02:25.147831Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:02:25.148099Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:02:25.522339Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:02:25.148297Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:02:25.148677Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:02:25.148487Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:02:25.149479Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:35.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:35 smithi104 bash[21066]: cluster 2024-02-19T22:03:34.051889+0000 mgr.smithi044.ikbsam (mgr.14184) 352 : cluster [DBG] pgmap v297: 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-02-19T22:03:36.392 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:36.654 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:36 smithi044 bash[16231]: audit 2024-02-19T22:03:35.689445+0000 mgr.smithi044.ikbsam (mgr.14184) 353 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:36.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:36 smithi104 bash[21066]: audit 2024-02-19T22:03:35.689445+0000 mgr.smithi044.ikbsam (mgr.14184) 353 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:37.393 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:37.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:37 smithi104 bash[21066]: cluster 2024-02-19T22:03:36.053680+0000 mgr.smithi044.ikbsam (mgr.14184) 354 : cluster [DBG] pgmap v298: 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-02-19T22:03:37.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:37 smithi044 bash[16231]: cluster 2024-02-19T22:03:36.053680+0000 mgr.smithi044.ikbsam (mgr.14184) 354 : cluster [DBG] pgmap v298: 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-02-19T22:03:39.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:39 smithi104 bash[21066]: cluster 2024-02-19T22:03:38.055405+0000 mgr.smithi044.ikbsam (mgr.14184) 355 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 B/s rd, 0 op/s 2024-02-19T22:03:39.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:39 smithi044 bash[16231]: cluster 2024-02-19T22:03:38.055405+0000 mgr.smithi044.ikbsam (mgr.14184) 355 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 B/s rd, 0 op/s 2024-02-19T22:03:40.676 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:40.676 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:19.261606Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rnmjef on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:41.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:39.924556+0000 mon.smithi044 (mon.0) 745 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: cluster 2024-02-19T22:03:40.056711+0000 mgr.smithi044.ikbsam (mgr.14184) 356 : cluster [DBG] pgmap v300: 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-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.515016+0000 mon.smithi044 (mon.0) 746 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.669282+0000 mgr.smithi044.ikbsam (mgr.14184) 357 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.824210+0000 mon.smithi044 (mon.0) 747 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.825225+0000 mon.smithi044 (mon.0) 748 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.831175+0000 mon.smithi044 (mon.0) 749 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: cluster 2024-02-19T22:03:40.831832+0000 mgr.smithi044.ikbsam (mgr.14184) 358 : cluster [DBG] pgmap v301: 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-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.837612+0000 mon.smithi044 (mon.0) 750 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: audit 2024-02-19T22:03:40.851489+0000 mon.smithi044 (mon.0) 751 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:40 smithi044 bash[16231]: cephadm 2024-02-19T22:03:40.854995+0000 mgr.smithi044.ikbsam (mgr.14184) 359 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.gwgghk on smithi104 2024-02-19T22:03:41.350 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:41.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:39.924556+0000 mon.smithi044 (mon.0) 745 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: cluster 2024-02-19T22:03:40.056711+0000 mgr.smithi044.ikbsam (mgr.14184) 356 : cluster [DBG] pgmap v300: 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-02-19T22:03:41.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.515016+0000 mon.smithi044 (mon.0) 746 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.669282+0000 mgr.smithi044.ikbsam (mgr.14184) 357 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:41.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.824210+0000 mon.smithi044 (mon.0) 747 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:03:41.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.825225+0000 mon.smithi044 (mon.0) 748 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:03:41.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.831175+0000 mon.smithi044 (mon.0) 749 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: cluster 2024-02-19T22:03:40.831832+0000 mgr.smithi044.ikbsam (mgr.14184) 358 : cluster [DBG] pgmap v301: 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-02-19T22:03:41.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.837612+0000 mon.smithi044 (mon.0) 750 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:03:41.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: audit 2024-02-19T22:03:40.851489+0000 mon.smithi044 (mon.0) 751 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:41.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:40 smithi104 bash[21066]: cephadm 2024-02-19T22:03:40.854995+0000 mgr.smithi044.ikbsam (mgr.14184) 359 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.gwgghk on smithi104 2024-02-19T22:03:42.352 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:42.365 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:41 smithi044 bash[16231]: cluster 2024-02-19T22:03:40.921561+0000 mon.smithi044 (mon.0) 752 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:03:42.365 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:41 smithi044 bash[16231]: cluster 2024-02-19T22:03:40.921631+0000 mon.smithi044 (mon.0) 753 : cluster [INF] Cluster is now healthy 2024-02-19T22:03:42.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:41 smithi104 bash[21066]: cluster 2024-02-19T22:03:40.921561+0000 mon.smithi044 (mon.0) 752 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:03:42.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:41 smithi104 bash[21066]: cluster 2024-02-19T22:03:40.921631+0000 mon.smithi044 (mon.0) 753 : cluster [INF] Cluster is now healthy 2024-02-19T22:03:43.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:42 smithi104 bash[21066]: cluster 2024-02-19T22:03:42.832960+0000 mgr.smithi044.ikbsam (mgr.14184) 360 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:43.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:42 smithi044 bash[16231]: cluster 2024-02-19T22:03:42.832960+0000 mgr.smithi044.ikbsam (mgr.14184) 360 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:44.875 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:44 smithi104 bash[21066]: audit 2024-02-19T22:03:43.629062+0000 mon.smithi044 (mon.0) 754 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:44.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:44 smithi044 bash[16231]: audit 2024-02-19T22:03:43.629062+0000 mon.smithi044 (mon.0) 754 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:45.746 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:45.747 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:29.667392Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dlqgpw on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dlqgpw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dlqgpw\nDeploy daemon haproxy.nfs.foo.smithi104.dlqgpw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:33.997657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lkczht on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lkczht\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lkczht\nDeploy daemon haproxy.nfs.foo.smithi044.lkczht ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:02:34.001977Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ewndlc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:45.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:45 smithi044 bash[16231]: cluster 2024-02-19T22:03:44.834746+0000 mgr.smithi044.ikbsam (mgr.14184) 361 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:45.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:45 smithi044 bash[16231]: audit 2024-02-19T22:03:45.033567+0000 mon.smithi044 (mon.0) 755 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.gwgghk"}]: dispatch 2024-02-19T22:03:46.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:45 smithi104 bash[21066]: cluster 2024-02-19T22:03:44.834746+0000 mgr.smithi044.ikbsam (mgr.14184) 361 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:46.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:45 smithi104 bash[21066]: audit 2024-02-19T22:03:45.033567+0000 mon.smithi044 (mon.0) 755 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.gwgghk"}]: dispatch 2024-02-19T22:03:46.445 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: cephadm 2024-02-19T22:03:45.032341+0000 mgr.smithi044.ikbsam (mgr.14184) 362 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.gwgghk ... 2024-02-19T22:03:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:03:46.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.gwgghk ... 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: cephadm 2024-02-19T22:03:45.032897+0000 mgr.smithi044.ikbsam (mgr.14184) 363 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: cephadm 2024-02-19T22:03:45.035140+0000 mgr.smithi044.ikbsam (mgr.14184) 364 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:46.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.gwgghk ... 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: cephadm 2024-02-19T22:03:45.039860+0000 mgr.smithi044.ikbsam (mgr.14184) 365 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.rfjaoa on smithi044 2024-02-19T22:03:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:46 smithi044 bash[16231]: audit 2024-02-19T22:03:45.739555+0000 mgr.smithi044.ikbsam (mgr.14184) 366 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:47.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: cephadm 2024-02-19T22:03:45.032341+0000 mgr.smithi044.ikbsam (mgr.14184) 362 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:47.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:47.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:47.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.gwgghk ... 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:47.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.gwgghk ... 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:47.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: cephadm 2024-02-19T22:03:45.032897+0000 mgr.smithi044.ikbsam (mgr.14184) 363 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: cephadm 2024-02-19T22:03:45.035140+0000 mgr.smithi044.ikbsam (mgr.14184) 364 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.gwgghk ... 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: cephadm 2024-02-19T22:03:45.039860+0000 mgr.smithi044.ikbsam (mgr.14184) 365 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.rfjaoa on smithi044 2024-02-19T22:03:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:46 smithi104 bash[21066]: audit 2024-02-19T22:03:45.739555+0000 mgr.smithi044.ikbsam (mgr.14184) 366 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:47.446 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:47.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:47 smithi044 bash[16231]: cluster 2024-02-19T22:03:46.835515+0000 mgr.smithi044.ikbsam (mgr.14184) 367 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:48.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:47 smithi104 bash[21066]: cluster 2024-02-19T22:03:46.835515+0000 mgr.smithi044.ikbsam (mgr.14184) 367 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:49.058 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cluster 2024-02-19T22:03:48.837129+0000 mgr.smithi044.ikbsam (mgr.14184) 368 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:49.058 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cephadm 2024-02-19T22:03:48.879905+0000 mgr.smithi044.ikbsam (mgr.14184) 369 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.058 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:49.058 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.058 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.rfjaoa ... 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.059 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.rfjaoa ... 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cephadm 2024-02-19T22:03:48.880335+0000 mgr.smithi044.ikbsam (mgr.14184) 370 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: audit 2024-02-19T22:03:48.880967+0000 mon.smithi044 (mon.0) 756 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.rfjaoa"}]: dispatch 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cephadm 2024-02-19T22:03:48.882352+0000 mgr.smithi044.ikbsam (mgr.14184) 371 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:49.060 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.rfjaoa ... 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cephadm 2024-02-19T22:03:48.885917+0000 mgr.smithi044.ikbsam (mgr.14184) 372 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cephadm 2024-02-19T22:03:48.890165+0000 mgr.smithi044.ikbsam (mgr.14184) 373 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:03:49.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:48 smithi044 bash[16231]: cluster 2024-02-19T22:03:48.891819+0000 mgr.smithi044.ikbsam (mgr.14184) 374 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 B/s rd, 0 op/s 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cluster 2024-02-19T22:03:48.837129+0000 mgr.smithi044.ikbsam (mgr.14184) 368 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cephadm 2024-02-19T22:03:48.879905+0000 mgr.smithi044.ikbsam (mgr.14184) 369 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.rfjaoa ... 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:49.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.rfjaoa ... 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cephadm 2024-02-19T22:03:48.880335+0000 mgr.smithi044.ikbsam (mgr.14184) 370 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: audit 2024-02-19T22:03:48.880967+0000 mon.smithi044 (mon.0) 756 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.rfjaoa"}]: dispatch 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cephadm 2024-02-19T22:03:48.882352+0000 mgr.smithi044.ikbsam (mgr.14184) 371 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.rfjaoa ... 2024-02-19T22:03:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cephadm 2024-02-19T22:03:48.885917+0000 mgr.smithi044.ikbsam (mgr.14184) 372 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cephadm 2024-02-19T22:03:48.890165+0000 mgr.smithi044.ikbsam (mgr.14184) 373 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:03:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:48 smithi104 bash[21066]: cluster 2024-02-19T22:03:48.891819+0000 mgr.smithi044.ikbsam (mgr.14184) 374 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 B/s rd, 0 op/s 2024-02-19T22:03:50.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:50 smithi104 bash[21066]: audit 2024-02-19T22:03:49.001823+0000 mon.smithi044 (mon.0) 757 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:50.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:50 smithi104 bash[21066]: cluster 2024-02-19T22:03:49.891062+0000 mon.smithi044 (mon.0) 758 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:03:50.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:50 smithi044 bash[16231]: audit 2024-02-19T22:03:49.001823+0000 mon.smithi044 (mon.0) 757 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:03:50.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:50 smithi044 bash[16231]: cluster 2024-02-19T22:03:49.891062+0000 mon.smithi044 (mon.0) 758 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:03:50.967 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:50.968 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:51.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:51 smithi104 bash[21066]: cluster 2024-02-19T22:03:50.893776+0000 mgr.smithi044.ikbsam (mgr.14184) 375 : cluster [DBG] pgmap v307: 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-02-19T22:03:51.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:51 smithi044 bash[16231]: cluster 2024-02-19T22:03:50.893776+0000 mgr.smithi044.ikbsam (mgr.14184) 375 : cluster [DBG] pgmap v307: 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-02-19T22:03:51.615 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:52.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:52 smithi104 bash[21066]: audit 2024-02-19T22:03:50.955094+0000 mgr.smithi044.ikbsam (mgr.14184) 376 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:52.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:52 smithi044 bash[16231]: audit 2024-02-19T22:03:50.955094+0000 mgr.smithi044.ikbsam (mgr.14184) 376 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:52.616 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:54.081 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:54 smithi044 bash[16231]: cluster 2024-02-19T22:03:52.895290+0000 mgr.smithi044.ikbsam (mgr.14184) 377 : cluster [DBG] pgmap v308: 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-02-19T22:03:54.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:54 smithi104 bash[21066]: cluster 2024-02-19T22:03:52.895290+0000 mgr.smithi044.ikbsam (mgr.14184) 377 : cluster [DBG] pgmap v308: 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-02-19T22:03:55.881 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:03:55.881 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:03:56.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:56 smithi104 bash[21066]: cluster 2024-02-19T22:03:54.897352+0000 mgr.smithi044.ikbsam (mgr.14184) 378 : cluster [DBG] pgmap v309: 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-02-19T22:03:56.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:56 smithi104 bash[21066]: audit 2024-02-19T22:03:55.866113+0000 mgr.smithi044.ikbsam (mgr.14184) 379 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:56.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:56 smithi044 bash[16231]: cluster 2024-02-19T22:03:54.897352+0000 mgr.smithi044.ikbsam (mgr.14184) 378 : cluster [DBG] pgmap v309: 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-02-19T22:03:56.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:56 smithi044 bash[16231]: audit 2024-02-19T22:03:55.866113+0000 mgr.smithi044.ikbsam (mgr.14184) 379 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:03:56.580 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:03:57.582 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:03:58.375 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:58 smithi104 bash[21066]: cluster 2024-02-19T22:03:56.898445+0000 mgr.smithi044.ikbsam (mgr.14184) 380 : cluster [DBG] pgmap v310: 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-02-19T22:03:58.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:58 smithi044 bash[16231]: cluster 2024-02-19T22:03:56.898445+0000 mgr.smithi044.ikbsam (mgr.14184) 380 : cluster [DBG] pgmap v310: 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-02-19T22:03:59.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:03:59 smithi044 bash[16231]: audit 2024-02-19T22:03:58.628973+0000 mon.smithi044 (mon.0) 759 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:00.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:03:59 smithi104 bash[21066]: audit 2024-02-19T22:03:58.628973+0000 mon.smithi044 (mon.0) 759 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:00.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:00 smithi044 bash[16231]: cluster 2024-02-19T22:03:58.900184+0000 mgr.smithi044.ikbsam (mgr.14184) 381 : cluster [DBG] pgmap v311: 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-02-19T22:04:01.106 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:01.106 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:01.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:00 smithi104 bash[21066]: cluster 2024-02-19T22:03:58.900184+0000 mgr.smithi044.ikbsam (mgr.14184) 381 : cluster [DBG] pgmap v311: 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-02-19T22:04:01.748 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:02.750 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:02.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:02 smithi044 bash[16231]: cluster 2024-02-19T22:04:00.901669+0000 mgr.smithi044.ikbsam (mgr.14184) 382 : 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-02-19T22:04:02.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:02 smithi044 bash[16231]: audit 2024-02-19T22:04:01.098597+0000 mgr.smithi044.ikbsam (mgr.14184) 383 : audit [DBG] from='client.24551 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:03.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:02 smithi104 bash[21066]: cluster 2024-02-19T22:04:00.901669+0000 mgr.smithi044.ikbsam (mgr.14184) 382 : 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-02-19T22:04:03.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:02 smithi104 bash[21066]: audit 2024-02-19T22:04:01.098597+0000 mgr.smithi044.ikbsam (mgr.14184) 383 : audit [DBG] from='client.24551 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:04.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:04 smithi044 bash[16231]: cluster 2024-02-19T22:04:02.902636+0000 mgr.smithi044.ikbsam (mgr.14184) 384 : 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-02-19T22:04:05.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:04 smithi104 bash[21066]: cluster 2024-02-19T22:04:02.902636+0000 mgr.smithi044.ikbsam (mgr.14184) 384 : 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-02-19T22:04:06.094 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:06.094 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:06.699 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:07.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:06 smithi104 bash[21066]: cluster 2024-02-19T22:04:04.904615+0000 mgr.smithi044.ikbsam (mgr.14184) 385 : cluster [DBG] pgmap v314: 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-02-19T22:04:07.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:06 smithi044 bash[16231]: cluster 2024-02-19T22:04:04.904615+0000 mgr.smithi044.ikbsam (mgr.14184) 385 : cluster [DBG] pgmap v314: 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-02-19T22:04:07.700 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:08.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:07 smithi104 bash[21066]: audit 2024-02-19T22:04:06.078671+0000 mgr.smithi044.ikbsam (mgr.14184) 386 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:08.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:07 smithi044 bash[16231]: audit 2024-02-19T22:04:06.078671+0000 mgr.smithi044.ikbsam (mgr.14184) 386 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:08.817 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:08 smithi044 bash[16231]: cluster 2024-02-19T22:04:06.905644+0000 mgr.smithi044.ikbsam (mgr.14184) 387 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:09.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:08 smithi104 bash[21066]: cluster 2024-02-19T22:04:06.905644+0000 mgr.smithi044.ikbsam (mgr.14184) 387 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:10.869 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:10.869 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:10.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:10 smithi044 bash[16231]: cluster 2024-02-19T22:04:08.906997+0000 mgr.smithi044.ikbsam (mgr.14184) 388 : 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-02-19T22:04:11.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:10 smithi104 bash[21066]: cluster 2024-02-19T22:04:08.906997+0000 mgr.smithi044.ikbsam (mgr.14184) 388 : 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-02-19T22:04:11.536 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:11.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:11 smithi044 bash[16231]: audit 2024-02-19T22:04:10.857302+0000 mgr.smithi044.ikbsam (mgr.14184) 389 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:12.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:11 smithi104 bash[21066]: audit 2024-02-19T22:04:10.857302+0000 mgr.smithi044.ikbsam (mgr.14184) 389 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:12.537 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:12.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:12 smithi044 bash[16231]: cluster 2024-02-19T22:04:10.908681+0000 mgr.smithi044.ikbsam (mgr.14184) 390 : 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-02-19T22:04:13.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:12 smithi104 bash[21066]: cluster 2024-02-19T22:04:10.908681+0000 mgr.smithi044.ikbsam (mgr.14184) 390 : 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-02-19T22:04:15.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:14 smithi104 bash[21066]: cluster 2024-02-19T22:04:12.910251+0000 mgr.smithi044.ikbsam (mgr.14184) 391 : 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-02-19T22:04:15.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:14 smithi044 bash[16231]: cluster 2024-02-19T22:04:12.910251+0000 mgr.smithi044.ikbsam (mgr.14184) 391 : 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-02-19T22:04:15.984 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:15.984 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:16.635 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:16.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:16 smithi044 bash[16231]: cluster 2024-02-19T22:04:14.911215+0000 mgr.smithi044.ikbsam (mgr.14184) 392 : cluster [DBG] pgmap v319: 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-02-19T22:04:17.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:16 smithi104 bash[21066]: cluster 2024-02-19T22:04:14.911215+0000 mgr.smithi044.ikbsam (mgr.14184) 392 : cluster [DBG] pgmap v319: 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-02-19T22:04:17.636 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:17.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:17 smithi044 bash[16231]: audit 2024-02-19T22:04:15.969524+0000 mgr.smithi044.ikbsam (mgr.14184) 393 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:18.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:17 smithi104 bash[21066]: audit 2024-02-19T22:04:15.969524+0000 mgr.smithi044.ikbsam (mgr.14184) 393 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:18.823 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:18 smithi044 bash[16231]: cluster 2024-02-19T22:04:16.912220+0000 mgr.smithi044.ikbsam (mgr.14184) 394 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:19.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:18 smithi104 bash[21066]: cluster 2024-02-19T22:04:16.912220+0000 mgr.smithi044.ikbsam (mgr.14184) 394 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:20.725 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:20 smithi044 bash[16231]: cluster 2024-02-19T22:04:18.913381+0000 mgr.smithi044.ikbsam (mgr.14184) 395 : 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-02-19T22:04:20.855 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:20.855 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:21.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:20 smithi104 bash[21066]: cluster 2024-02-19T22:04:18.913381+0000 mgr.smithi044.ikbsam (mgr.14184) 395 : 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-02-19T22:04:21.503 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:21.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:21 smithi044 bash[16231]: audit 2024-02-19T22:04:20.842605+0000 mgr.smithi044.ikbsam (mgr.14184) 396 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:22.125 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:21 smithi104 bash[21066]: audit 2024-02-19T22:04:20.842605+0000 mgr.smithi044.ikbsam (mgr.14184) 396 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:22.504 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:22.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:22 smithi044 bash[16231]: cluster 2024-02-19T22:04:20.914431+0000 mgr.smithi044.ikbsam (mgr.14184) 397 : 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-02-19T22:04:23.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:22 smithi104 bash[21066]: cluster 2024-02-19T22:04:20.914431+0000 mgr.smithi044.ikbsam (mgr.14184) 397 : 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-02-19T22:04:25.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:24 smithi104 bash[21066]: cluster 2024-02-19T22:04:22.916053+0000 mgr.smithi044.ikbsam (mgr.14184) 398 : 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-02-19T22:04:25.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:24 smithi044 bash[16231]: cluster 2024-02-19T22:04:22.916053+0000 mgr.smithi044.ikbsam (mgr.14184) 398 : 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-02-19T22:04:25.890 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:25.891 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:26.528 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:26.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:26 smithi044 bash[16231]: cluster 2024-02-19T22:04:24.918046+0000 mgr.smithi044.ikbsam (mgr.14184) 399 : cluster [DBG] pgmap v324: 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-02-19T22:04:26.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:26 smithi044 bash[16231]: audit 2024-02-19T22:04:25.875331+0000 mgr.smithi044.ikbsam (mgr.14184) 400 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:27.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:26 smithi104 bash[21066]: cluster 2024-02-19T22:04:24.918046+0000 mgr.smithi044.ikbsam (mgr.14184) 399 : cluster [DBG] pgmap v324: 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-02-19T22:04:27.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:26 smithi104 bash[21066]: audit 2024-02-19T22:04:25.875331+0000 mgr.smithi044.ikbsam (mgr.14184) 400 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:27.529 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:29.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:28 smithi104 bash[21066]: cluster 2024-02-19T22:04:26.919071+0000 mgr.smithi044.ikbsam (mgr.14184) 401 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:29.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:28 smithi044 bash[16231]: cluster 2024-02-19T22:04:26.919071+0000 mgr.smithi044.ikbsam (mgr.14184) 401 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:30.858 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:30.859 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:31.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:30 smithi104 bash[21066]: cluster 2024-02-19T22:04:28.920811+0000 mgr.smithi044.ikbsam (mgr.14184) 402 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:31.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:30 smithi044 bash[16231]: cluster 2024-02-19T22:04:28.920811+0000 mgr.smithi044.ikbsam (mgr.14184) 402 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:31.525 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:31.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:31 smithi044 bash[16231]: audit 2024-02-19T22:04:30.843148+0000 mgr.smithi044.ikbsam (mgr.14184) 403 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:32.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:31 smithi104 bash[21066]: audit 2024-02-19T22:04:30.843148+0000 mgr.smithi044.ikbsam (mgr.14184) 403 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:32.526 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:32.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:32 smithi044 bash[16231]: cluster 2024-02-19T22:04:30.922249+0000 mgr.smithi044.ikbsam (mgr.14184) 404 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:33.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:32 smithi104 bash[21066]: cluster 2024-02-19T22:04:30.922249+0000 mgr.smithi044.ikbsam (mgr.14184) 404 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:35.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:34 smithi104 bash[21066]: cluster 2024-02-19T22:04:32.923794+0000 mgr.smithi044.ikbsam (mgr.14184) 405 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:35.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:34 smithi044 bash[16231]: cluster 2024-02-19T22:04:32.923794+0000 mgr.smithi044.ikbsam (mgr.14184) 405 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:35.950 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:35.950 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:36.649 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:36.904 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:36 smithi044 bash[16231]: cluster 2024-02-19T22:04:34.925822+0000 mgr.smithi044.ikbsam (mgr.14184) 406 : cluster [DBG] pgmap v329: 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-02-19T22:04:37.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:36 smithi104 bash[21066]: cluster 2024-02-19T22:04:34.925822+0000 mgr.smithi044.ikbsam (mgr.14184) 406 : cluster [DBG] pgmap v329: 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-02-19T22:04:37.650 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:38.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:37 smithi104 bash[21066]: audit 2024-02-19T22:04:35.940486+0000 mgr.smithi044.ikbsam (mgr.14184) 407 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:38.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:37 smithi044 bash[16231]: audit 2024-02-19T22:04:35.940486+0000 mgr.smithi044.ikbsam (mgr.14184) 407 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:39.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:38 smithi044 bash[16231]: cluster 2024-02-19T22:04:36.926858+0000 mgr.smithi044.ikbsam (mgr.14184) 408 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:39.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:38 smithi104 bash[21066]: cluster 2024-02-19T22:04:36.926858+0000 mgr.smithi044.ikbsam (mgr.14184) 408 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:40.984 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:40.984 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:41.056 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:40 smithi044 bash[16231]: cluster 2024-02-19T22:04:38.928680+0000 mgr.smithi044.ikbsam (mgr.14184) 409 : 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-02-19T22:04:41.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:40 smithi104 bash[21066]: cluster 2024-02-19T22:04:38.928680+0000 mgr.smithi044.ikbsam (mgr.14184) 409 : 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-02-19T22:04:41.624 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:42.625 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:42.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:42 smithi044 bash[16231]: cluster 2024-02-19T22:04:40.929847+0000 mgr.smithi044.ikbsam (mgr.14184) 410 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:42.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:42 smithi044 bash[16231]: audit 2024-02-19T22:04:40.977185+0000 mgr.smithi044.ikbsam (mgr.14184) 411 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:43.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:42 smithi104 bash[21066]: cluster 2024-02-19T22:04:40.929847+0000 mgr.smithi044.ikbsam (mgr.14184) 410 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:43.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:42 smithi104 bash[21066]: audit 2024-02-19T22:04:40.977185+0000 mgr.smithi044.ikbsam (mgr.14184) 411 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:45.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:44 smithi104 bash[21066]: cluster 2024-02-19T22:04:42.931374+0000 mgr.smithi044.ikbsam (mgr.14184) 412 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:45.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:44 smithi044 bash[16231]: cluster 2024-02-19T22:04:42.931374+0000 mgr.smithi044.ikbsam (mgr.14184) 412 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:04:46.062 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:46.062 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:46.685 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:47.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:46 smithi104 bash[21066]: cluster 2024-02-19T22:04:44.933377+0000 mgr.smithi044.ikbsam (mgr.14184) 413 : cluster [DBG] pgmap v334: 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-02-19T22:04:47.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:46 smithi044 bash[16231]: cluster 2024-02-19T22:04:44.933377+0000 mgr.smithi044.ikbsam (mgr.14184) 413 : cluster [DBG] pgmap v334: 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-02-19T22:04:47.686 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:48.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:47 smithi104 bash[21066]: audit 2024-02-19T22:04:46.054297+0000 mgr.smithi044.ikbsam (mgr.14184) 414 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:48.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:47 smithi044 bash[16231]: audit 2024-02-19T22:04:46.054297+0000 mgr.smithi044.ikbsam (mgr.14184) 414 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:49.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:48 smithi104 bash[21066]: cluster 2024-02-19T22:04:46.934457+0000 mgr.smithi044.ikbsam (mgr.14184) 415 : cluster [DBG] pgmap v335: 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-02-19T22:04:49.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:48 smithi044 bash[16231]: cluster 2024-02-19T22:04:46.934457+0000 mgr.smithi044.ikbsam (mgr.14184) 415 : cluster [DBG] pgmap v335: 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-02-19T22:04:50.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:49 smithi104 bash[21066]: audit 2024-02-19T22:04:48.894336+0000 mon.smithi044 (mon.0) 760 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:04:50.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:49 smithi104 bash[21066]: audit 2024-02-19T22:04:49.193616+0000 mon.smithi044 (mon.0) 761 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:50.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:49 smithi044 bash[16231]: audit 2024-02-19T22:04:48.894336+0000 mon.smithi044 (mon.0) 760 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:04:50.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:49 smithi044 bash[16231]: audit 2024-02-19T22:04:49.193616+0000 mon.smithi044 (mon.0) 761 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:50.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:50 smithi044 bash[16231]: cluster 2024-02-19T22:04:48.935604+0000 mgr.smithi044.ikbsam (mgr.14184) 416 : cluster [DBG] pgmap v336: 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-02-19T22:04:51.039 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:51.039 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:39.913604Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:39.913890Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:39.914086Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:39.914288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:39.914648Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:03:39.914478Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:39.915390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:51.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:50 smithi104 bash[21066]: cluster 2024-02-19T22:04:48.935604+0000 mgr.smithi044.ikbsam (mgr.14184) 416 : cluster [DBG] pgmap v336: 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-02-19T22:04:51.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:52.703 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:52 smithi104 bash[21066]: cluster 2024-02-19T22:04:50.937364+0000 mgr.smithi044.ikbsam (mgr.14184) 417 : cluster [DBG] pgmap v337: 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-02-19T22:04:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:52 smithi104 bash[21066]: audit 2024-02-19T22:04:51.024201+0000 mgr.smithi044.ikbsam (mgr.14184) 418 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:52 smithi044 bash[16231]: cluster 2024-02-19T22:04:50.937364+0000 mgr.smithi044.ikbsam (mgr.14184) 417 : cluster [DBG] pgmap v337: 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-02-19T22:04:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:52 smithi044 bash[16231]: audit 2024-02-19T22:04:51.024201+0000 mgr.smithi044.ikbsam (mgr.14184) 418 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:54 smithi104 bash[21066]: cluster 2024-02-19T22:04:52.938542+0000 mgr.smithi044.ikbsam (mgr.14184) 419 : cluster [DBG] pgmap v338: 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-02-19T22:04:55.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:54 smithi104 bash[21066]: audit 2024-02-19T22:04:54.806451+0000 mon.smithi044 (mon.0) 762 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:55.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:54 smithi044 bash[16231]: cluster 2024-02-19T22:04:52.938542+0000 mgr.smithi044.ikbsam (mgr.14184) 419 : cluster [DBG] pgmap v338: 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-02-19T22:04:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:54 smithi044 bash[16231]: audit 2024-02-19T22:04:54.806451+0000 mon.smithi044 (mon.0) 762 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:55.981 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:04:55.982 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:02:34.005683Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.gbcste on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:04:56.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:55 smithi104 bash[21066]: audit 2024-02-19T22:04:55.103914+0000 mon.smithi044 (mon.0) 763 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:04:56.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:55 smithi104 bash[21066]: audit 2024-02-19T22:04:55.106108+0000 mon.smithi044 (mon.0) 764 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:04:56.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:55 smithi104 bash[21066]: audit 2024-02-19T22:04:55.117286+0000 mon.smithi044 (mon.0) 765 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:56.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:55 smithi104 bash[21066]: audit 2024-02-19T22:04:55.125326+0000 mon.smithi044 (mon.0) 766 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:04:56.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:55 smithi104 bash[21066]: audit 2024-02-19T22:04:55.144462+0000 mon.smithi044 (mon.0) 767 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:56.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:55 smithi044 bash[16231]: audit 2024-02-19T22:04:55.103914+0000 mon.smithi044 (mon.0) 763 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:04:56.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:55 smithi044 bash[16231]: audit 2024-02-19T22:04:55.106108+0000 mon.smithi044 (mon.0) 764 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:04:56.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:55 smithi044 bash[16231]: audit 2024-02-19T22:04:55.117286+0000 mon.smithi044 (mon.0) 765 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:56.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:55 smithi044 bash[16231]: audit 2024-02-19T22:04:55.125326+0000 mon.smithi044 (mon.0) 766 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:04:56.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:55 smithi044 bash[16231]: audit 2024-02-19T22:04:55.144462+0000 mon.smithi044 (mon.0) 767 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:56.656 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:04:56.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:56 smithi044 bash[16231]: cluster 2024-02-19T22:04:54.940563+0000 mgr.smithi044.ikbsam (mgr.14184) 420 : cluster [DBG] pgmap v339: 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-02-19T22:04:56.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:56 smithi044 bash[16231]: cluster 2024-02-19T22:04:55.118456+0000 mgr.smithi044.ikbsam (mgr.14184) 421 : cluster [DBG] pgmap v340: 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-02-19T22:04:56.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:56 smithi044 bash[16231]: cephadm 2024-02-19T22:04:55.148779+0000 mgr.smithi044.ikbsam (mgr.14184) 422 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.nxtcgv on smithi104 2024-02-19T22:04:56.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:56 smithi044 bash[16231]: cluster 2024-02-19T22:04:55.851751+0000 mon.smithi044 (mon.0) 768 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:04:56.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:56 smithi044 bash[16231]: cluster 2024-02-19T22:04:55.851840+0000 mon.smithi044 (mon.0) 769 : cluster [INF] Cluster is now healthy 2024-02-19T22:04:57.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:56 smithi104 bash[21066]: cluster 2024-02-19T22:04:54.940563+0000 mgr.smithi044.ikbsam (mgr.14184) 420 : cluster [DBG] pgmap v339: 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-02-19T22:04:57.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:56 smithi104 bash[21066]: cluster 2024-02-19T22:04:55.118456+0000 mgr.smithi044.ikbsam (mgr.14184) 421 : cluster [DBG] pgmap v340: 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-02-19T22:04:57.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:56 smithi104 bash[21066]: cephadm 2024-02-19T22:04:55.148779+0000 mgr.smithi044.ikbsam (mgr.14184) 422 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.nxtcgv on smithi104 2024-02-19T22:04:57.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:56 smithi104 bash[21066]: cluster 2024-02-19T22:04:55.851751+0000 mon.smithi044 (mon.0) 768 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:04:57.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:56 smithi104 bash[21066]: cluster 2024-02-19T22:04:55.851840+0000 mon.smithi044 (mon.0) 769 : cluster [INF] Cluster is now healthy 2024-02-19T22:04:57.657 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:04:58.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:57 smithi044 bash[16231]: audit 2024-02-19T22:04:55.967788+0000 mgr.smithi044.ikbsam (mgr.14184) 423 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:58.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:57 smithi104 bash[21066]: audit 2024-02-19T22:04:55.967788+0000 mgr.smithi044.ikbsam (mgr.14184) 423 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:04:59.129 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:58 smithi044 bash[16231]: cluster 2024-02-19T22:04:57.119622+0000 mgr.smithi044.ikbsam (mgr.14184) 424 : cluster [DBG] pgmap v341: 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-02-19T22:04:59.129 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:58 smithi044 bash[16231]: audit 2024-02-19T22:04:58.630501+0000 mon.smithi044 (mon.0) 770 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:04:59.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:58 smithi104 bash[21066]: cluster 2024-02-19T22:04:57.119622+0000 mgr.smithi044.ikbsam (mgr.14184) 424 : cluster [DBG] pgmap v341: 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-02-19T22:04:59.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:58 smithi104 bash[21066]: audit 2024-02-19T22:04:58.630501+0000 mon.smithi044 (mon.0) 770 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:05:00.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:04:59 smithi044 bash[16231]: audit 2024-02-19T22:04:59.034214+0000 mon.smithi044 (mon.0) 771 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.nxtcgv"}]: dispatch 2024-02-19T22:05:00.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:04:59 smithi104 bash[21066]: audit 2024-02-19T22:04:59.034214+0000 mon.smithi044 (mon.0) 771 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.nxtcgv"}]: dispatch 2024-02-19T22:05:01.073 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: cephadm 2024-02-19T22:04:59.033265+0000 mgr.smithi044.ikbsam (mgr.14184) 425 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.073 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:01.073 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.073 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.nxtcgv ... 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:05:01.074 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.nxtcgv ... 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: cephadm 2024-02-19T22:04:59.033720+0000 mgr.smithi044.ikbsam (mgr.14184) 426 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: cephadm 2024-02-19T22:04:59.035428+0000 mgr.smithi044.ikbsam (mgr.14184) 427 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.075 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.nxtcgv ... 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: cephadm 2024-02-19T22:04:59.040683+0000 mgr.smithi044.ikbsam (mgr.14184) 428 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.ulcjwx on smithi044 2024-02-19T22:05:01.076 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:00 smithi044 bash[16231]: cluster 2024-02-19T22:04:59.121495+0000 mgr.smithi044.ikbsam (mgr.14184) 429 : cluster [DBG] pgmap v342: 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-02-19T22:05:01.213 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:01.213 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:45.034899Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.gwgghk on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-gwgghk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.gwgghk\nDeploy daemon haproxy.nfs.foo.smithi104.gwgghk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.882113Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfjaoa on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfjaoa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfjaoa\nDeploy daemon haproxy.nfs.foo.smithi044.rfjaoa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:03:48.885716Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.uufjpv on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: cephadm 2024-02-19T22:04:59.033265+0000 mgr.smithi044.ikbsam (mgr.14184) 425 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.nxtcgv ... 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.nxtcgv ... 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: cephadm 2024-02-19T22:04:59.033720+0000 mgr.smithi044.ikbsam (mgr.14184) 426 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: cephadm 2024-02-19T22:04:59.035428+0000 mgr.smithi044.ikbsam (mgr.14184) 427 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.nxtcgv ... 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:01.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: cephadm 2024-02-19T22:04:59.040683+0000 mgr.smithi044.ikbsam (mgr.14184) 428 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.ulcjwx on smithi044 2024-02-19T22:05:01.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:00 smithi104 bash[21066]: cluster 2024-02-19T22:04:59.121495+0000 mgr.smithi044.ikbsam (mgr.14184) 429 : cluster [DBG] pgmap v342: 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-02-19T22:05:01.886 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:02.886 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:03.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:02 smithi104 bash[21066]: cluster 2024-02-19T22:05:01.122913+0000 mgr.smithi044.ikbsam (mgr.14184) 430 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 703 B/s rd, 0 op/s 2024-02-19T22:05:03.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:02 smithi104 bash[21066]: audit 2024-02-19T22:05:01.199700+0000 mgr.smithi044.ikbsam (mgr.14184) 431 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:03.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:02 smithi044 bash[16231]: cluster 2024-02-19T22:05:01.122913+0000 mgr.smithi044.ikbsam (mgr.14184) 430 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 703 B/s rd, 0 op/s 2024-02-19T22:05:03.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:02 smithi044 bash[16231]: audit 2024-02-19T22:05:01.199700+0000 mgr.smithi044.ikbsam (mgr.14184) 431 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:04.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:03 smithi044 bash[16231]: audit 2024-02-19T22:05:02.995657+0000 mon.smithi044 (mon.0) 772 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.ulcjwx"}]: dispatch 2024-02-19T22:05:04.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:03 smithi104 bash[21066]: audit 2024-02-19T22:05:02.995657+0000 mon.smithi044 (mon.0) 772 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.ulcjwx"}]: dispatch 2024-02-19T22:05:05.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cephadm 2024-02-19T22:05:02.994558+0000 mgr.smithi044.ikbsam (mgr.14184) 432 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ulcjwx ... 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:05:05.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ulcjwx ... 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cephadm 2024-02-19T22:05:02.994999+0000 mgr.smithi044.ikbsam (mgr.14184) 433 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cephadm 2024-02-19T22:05:02.996940+0000 mgr.smithi044.ikbsam (mgr.14184) 434 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ulcjwx ... 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cephadm 2024-02-19T22:05:02.999543+0000 mgr.smithi044.ikbsam (mgr.14184) 435 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cephadm 2024-02-19T22:05:03.001735+0000 mgr.smithi044.ikbsam (mgr.14184) 436 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cluster 2024-02-19T22:05:03.003545+0000 mgr.smithi044.ikbsam (mgr.14184) 437 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: cluster 2024-02-19T22:05:03.895371+0000 mon.smithi044 (mon.0) 773 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:05:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:04 smithi104 bash[21066]: audit 2024-02-19T22:05:04.062785+0000 mon.smithi044 (mon.0) 774 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:05:05.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cephadm 2024-02-19T22:05:02.994558+0000 mgr.smithi044.ikbsam (mgr.14184) 432 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:05.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ulcjwx ... 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ulcjwx ... 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cephadm 2024-02-19T22:05:02.994999+0000 mgr.smithi044.ikbsam (mgr.14184) 433 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cephadm 2024-02-19T22:05:02.996940+0000 mgr.smithi044.ikbsam (mgr.14184) 434 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ulcjwx ... 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cephadm 2024-02-19T22:05:02.999543+0000 mgr.smithi044.ikbsam (mgr.14184) 435 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cephadm 2024-02-19T22:05:03.001735+0000 mgr.smithi044.ikbsam (mgr.14184) 436 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cluster 2024-02-19T22:05:03.003545+0000 mgr.smithi044.ikbsam (mgr.14184) 437 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: cluster 2024-02-19T22:05:03.895371+0000 mon.smithi044 (mon.0) 773 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:05:05.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:04 smithi044 bash[16231]: audit 2024-02-19T22:05:04.062785+0000 mon.smithi044 (mon.0) 774 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:05:06.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:05 smithi044 bash[16231]: cluster 2024-02-19T22:05:05.005188+0000 mgr.smithi044.ikbsam (mgr.14184) 438 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-19T22:05:06.297 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:06.298 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:06.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:05 smithi104 bash[21066]: cluster 2024-02-19T22:05:05.005188+0000 mgr.smithi044.ikbsam (mgr.14184) 438 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-19T22:05:06.969 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:07.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:06 smithi104 bash[21066]: audit 2024-02-19T22:05:06.284853+0000 mgr.smithi044.ikbsam (mgr.14184) 439 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:07.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:06 smithi044 bash[16231]: audit 2024-02-19T22:05:06.284853+0000 mgr.smithi044.ikbsam (mgr.14184) 439 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:07.970 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:08.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:07 smithi104 bash[21066]: cluster 2024-02-19T22:05:07.006073+0000 mgr.smithi044.ikbsam (mgr.14184) 440 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-02-19T22:05:08.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:07 smithi044 bash[16231]: cluster 2024-02-19T22:05:07.006073+0000 mgr.smithi044.ikbsam (mgr.14184) 440 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-02-19T22:05:10.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:10 smithi104 bash[21066]: cluster 2024-02-19T22:05:09.007029+0000 mgr.smithi044.ikbsam (mgr.14184) 441 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-02-19T22:05:10.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:10 smithi044 bash[16231]: cluster 2024-02-19T22:05:09.007029+0000 mgr.smithi044.ikbsam (mgr.14184) 441 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-02-19T22:05:11.317 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:11.317 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:11.913 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:12.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:12 smithi104 bash[21066]: cluster 2024-02-19T22:05:11.008280+0000 mgr.smithi044.ikbsam (mgr.14184) 442 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-02-19T22:05:12.376 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:12 smithi104 bash[21066]: audit 2024-02-19T22:05:11.301435+0000 mgr.smithi044.ikbsam (mgr.14184) 443 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:12.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:12 smithi044 bash[16231]: cluster 2024-02-19T22:05:11.008280+0000 mgr.smithi044.ikbsam (mgr.14184) 442 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 86 B/s wr, 1 op/s 2024-02-19T22:05:12.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:12 smithi044 bash[16231]: audit 2024-02-19T22:05:11.301435+0000 mgr.smithi044.ikbsam (mgr.14184) 443 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:12.913 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:14.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:14 smithi044 bash[16231]: cluster 2024-02-19T22:05:13.009637+0000 mgr.smithi044.ikbsam (mgr.14184) 444 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 689 B/s rd, 86 B/s wr, 0 op/s 2024-02-19T22:05:14.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:14 smithi044 bash[16231]: audit 2024-02-19T22:05:13.631361+0000 mon.smithi044 (mon.0) 775 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:05:15.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:14 smithi104 bash[21066]: cluster 2024-02-19T22:05:13.009637+0000 mgr.smithi044.ikbsam (mgr.14184) 444 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 689 B/s rd, 86 B/s wr, 0 op/s 2024-02-19T22:05:15.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:14 smithi104 bash[21066]: audit 2024-02-19T22:05:13.631361+0000 mon.smithi044 (mon.0) 775 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:05:16.243 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:16.243 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:16.867 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:16.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:16 smithi044 bash[16231]: cluster 2024-02-19T22:05:15.011484+0000 mgr.smithi044.ikbsam (mgr.14184) 445 : cluster [DBG] pgmap v350: 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-02-19T22:05:17.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:16 smithi104 bash[21066]: cluster 2024-02-19T22:05:15.011484+0000 mgr.smithi044.ikbsam (mgr.14184) 445 : cluster [DBG] pgmap v350: 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-02-19T22:05:17.869 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:17.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:17 smithi044 bash[16231]: audit 2024-02-19T22:05:16.227984+0000 mgr.smithi044.ikbsam (mgr.14184) 446 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:18.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:17 smithi104 bash[21066]: audit 2024-02-19T22:05:16.227984+0000 mgr.smithi044.ikbsam (mgr.14184) 446 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:18.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:18 smithi044 bash[16231]: cluster 2024-02-19T22:05:17.012760+0000 mgr.smithi044.ikbsam (mgr.14184) 447 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:19.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:18 smithi104 bash[21066]: cluster 2024-02-19T22:05:17.012760+0000 mgr.smithi044.ikbsam (mgr.14184) 447 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:21.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:20 smithi104 bash[21066]: cluster 2024-02-19T22:05:19.014457+0000 mgr.smithi044.ikbsam (mgr.14184) 448 : 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-02-19T22:05:21.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:20 smithi044 bash[16231]: cluster 2024-02-19T22:05:19.014457+0000 mgr.smithi044.ikbsam (mgr.14184) 448 : 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-02-19T22:05:21.236 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:21.236 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:21.950 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:22.952 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:22.964 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:22 smithi044 bash[16231]: cluster 2024-02-19T22:05:21.015482+0000 mgr.smithi044.ikbsam (mgr.14184) 449 : 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-02-19T22:05:22.964 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:22 smithi044 bash[16231]: audit 2024-02-19T22:05:21.224112+0000 mgr.smithi044.ikbsam (mgr.14184) 450 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:23.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:22 smithi104 bash[21066]: cluster 2024-02-19T22:05:21.015482+0000 mgr.smithi044.ikbsam (mgr.14184) 449 : 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-02-19T22:05:23.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:22 smithi104 bash[21066]: audit 2024-02-19T22:05:21.224112+0000 mgr.smithi044.ikbsam (mgr.14184) 450 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:25.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:24 smithi104 bash[21066]: cluster 2024-02-19T22:05:23.017243+0000 mgr.smithi044.ikbsam (mgr.14184) 451 : 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-02-19T22:05:25.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:24 smithi044 bash[16231]: cluster 2024-02-19T22:05:23.017243+0000 mgr.smithi044.ikbsam (mgr.14184) 451 : 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-02-19T22:05:26.170 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:26.171 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:26.810 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:27.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:26 smithi104 bash[21066]: cluster 2024-02-19T22:05:25.019165+0000 mgr.smithi044.ikbsam (mgr.14184) 452 : cluster [DBG] pgmap v355: 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-02-19T22:05:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:26 smithi044 bash[16231]: cluster 2024-02-19T22:05:25.019165+0000 mgr.smithi044.ikbsam (mgr.14184) 452 : cluster [DBG] pgmap v355: 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-02-19T22:05:27.811 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:28.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:27 smithi104 bash[21066]: audit 2024-02-19T22:05:26.162825+0000 mgr.smithi044.ikbsam (mgr.14184) 453 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:28.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:27 smithi044 bash[16231]: audit 2024-02-19T22:05:26.162825+0000 mgr.smithi044.ikbsam (mgr.14184) 453 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:28.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:28 smithi044 bash[16231]: cluster 2024-02-19T22:05:27.020467+0000 mgr.smithi044.ikbsam (mgr.14184) 454 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:29.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:28 smithi104 bash[21066]: cluster 2024-02-19T22:05:27.020467+0000 mgr.smithi044.ikbsam (mgr.14184) 454 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:30.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:30 smithi044 bash[16231]: cluster 2024-02-19T22:05:29.022310+0000 mgr.smithi044.ikbsam (mgr.14184) 455 : 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-02-19T22:05:31.109 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:31.109 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:31.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:30 smithi104 bash[21066]: cluster 2024-02-19T22:05:29.022310+0000 mgr.smithi044.ikbsam (mgr.14184) 455 : 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-02-19T22:05:31.754 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:32.755 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:33.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:32 smithi104 bash[21066]: cluster 2024-02-19T22:05:31.023963+0000 mgr.smithi044.ikbsam (mgr.14184) 456 : 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-02-19T22:05:33.240 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:32 smithi104 bash[21066]: audit 2024-02-19T22:05:31.096212+0000 mgr.smithi044.ikbsam (mgr.14184) 457 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:33.240 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:32 smithi044 bash[16231]: cluster 2024-02-19T22:05:31.023963+0000 mgr.smithi044.ikbsam (mgr.14184) 456 : 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-02-19T22:05:33.241 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:32 smithi044 bash[16231]: audit 2024-02-19T22:05:31.096212+0000 mgr.smithi044.ikbsam (mgr.14184) 457 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:35.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:34 smithi104 bash[21066]: cluster 2024-02-19T22:05:33.025693+0000 mgr.smithi044.ikbsam (mgr.14184) 458 : 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-02-19T22:05:35.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:34 smithi044 bash[16231]: cluster 2024-02-19T22:05:33.025693+0000 mgr.smithi044.ikbsam (mgr.14184) 458 : 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-02-19T22:05:36.136 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:36.136 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:36.875 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:37.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:36 smithi104 bash[21066]: cluster 2024-02-19T22:05:35.027447+0000 mgr.smithi044.ikbsam (mgr.14184) 459 : cluster [DBG] pgmap v360: 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-02-19T22:05:37.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:36 smithi044 bash[16231]: cluster 2024-02-19T22:05:35.027447+0000 mgr.smithi044.ikbsam (mgr.14184) 459 : cluster [DBG] pgmap v360: 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-02-19T22:05:37.876 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:38.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:37 smithi104 bash[21066]: audit 2024-02-19T22:05:36.126255+0000 mgr.smithi044.ikbsam (mgr.14184) 460 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:38.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:37 smithi044 bash[16231]: audit 2024-02-19T22:05:36.126255+0000 mgr.smithi044.ikbsam (mgr.14184) 460 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:38.912 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:38 smithi044 bash[16231]: cluster 2024-02-19T22:05:37.028672+0000 mgr.smithi044.ikbsam (mgr.14184) 461 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:39.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:38 smithi104 bash[21066]: cluster 2024-02-19T22:05:37.028672+0000 mgr.smithi044.ikbsam (mgr.14184) 461 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:41.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:40 smithi104 bash[21066]: cluster 2024-02-19T22:05:39.030361+0000 mgr.smithi044.ikbsam (mgr.14184) 462 : 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-02-19T22:05:41.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:40 smithi044 bash[16231]: cluster 2024-02-19T22:05:39.030361+0000 mgr.smithi044.ikbsam (mgr.14184) 462 : 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-02-19T22:05:41.259 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:41.260 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:41.998 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:42.999 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:43.012 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:42 smithi044 bash[16231]: cluster 2024-02-19T22:05:41.031428+0000 mgr.smithi044.ikbsam (mgr.14184) 463 : 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-02-19T22:05:43.012 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:42 smithi044 bash[16231]: audit 2024-02-19T22:05:41.245075+0000 mgr.smithi044.ikbsam (mgr.14184) 464 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:43.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:42 smithi104 bash[21066]: cluster 2024-02-19T22:05:41.031428+0000 mgr.smithi044.ikbsam (mgr.14184) 463 : 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-02-19T22:05:43.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:42 smithi104 bash[21066]: audit 2024-02-19T22:05:41.245075+0000 mgr.smithi044.ikbsam (mgr.14184) 464 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:44.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:44 smithi044 bash[16231]: cluster 2024-02-19T22:05:43.032863+0000 mgr.smithi044.ikbsam (mgr.14184) 465 : 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-02-19T22:05:45.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:44 smithi104 bash[21066]: cluster 2024-02-19T22:05:43.032863+0000 mgr.smithi044.ikbsam (mgr.14184) 465 : 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-02-19T22:05:46.370 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:46.370 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:47.042 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:46 smithi044 bash[16231]: cluster 2024-02-19T22:05:45.035032+0000 mgr.smithi044.ikbsam (mgr.14184) 466 : cluster [DBG] pgmap v365: 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-02-19T22:05:47.043 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:47.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:46 smithi104 bash[21066]: cluster 2024-02-19T22:05:45.035032+0000 mgr.smithi044.ikbsam (mgr.14184) 466 : cluster [DBG] pgmap v365: 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-02-19T22:05:48.044 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:48.056 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:47 smithi044 bash[16231]: audit 2024-02-19T22:05:46.355470+0000 mgr.smithi044.ikbsam (mgr.14184) 467 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:48.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:47 smithi104 bash[21066]: audit 2024-02-19T22:05:46.355470+0000 mgr.smithi044.ikbsam (mgr.14184) 467 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:49.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:48 smithi104 bash[21066]: cluster 2024-02-19T22:05:47.036178+0000 mgr.smithi044.ikbsam (mgr.14184) 468 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:49.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:48 smithi044 bash[16231]: cluster 2024-02-19T22:05:47.036178+0000 mgr.smithi044.ikbsam (mgr.14184) 468 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:51.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:50 smithi104 bash[21066]: cluster 2024-02-19T22:05:49.037710+0000 mgr.smithi044.ikbsam (mgr.14184) 469 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:51.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:50 smithi044 bash[16231]: cluster 2024-02-19T22:05:49.037710+0000 mgr.smithi044.ikbsam (mgr.14184) 469 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:51.349 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:51.349 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:51.985 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:52.986 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:53.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:52 smithi104 bash[21066]: cluster 2024-02-19T22:05:51.039047+0000 mgr.smithi044.ikbsam (mgr.14184) 470 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:53.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:52 smithi104 bash[21066]: audit 2024-02-19T22:05:51.335784+0000 mgr.smithi044.ikbsam (mgr.14184) 471 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:53.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:52 smithi044 bash[16231]: cluster 2024-02-19T22:05:51.039047+0000 mgr.smithi044.ikbsam (mgr.14184) 470 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:53.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:52 smithi044 bash[16231]: audit 2024-02-19T22:05:51.335784+0000 mgr.smithi044.ikbsam (mgr.14184) 471 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:55.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:54 smithi104 bash[21066]: cluster 2024-02-19T22:05:53.040587+0000 mgr.smithi044.ikbsam (mgr.14184) 472 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:55.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:54 smithi044 bash[16231]: cluster 2024-02-19T22:05:53.040587+0000 mgr.smithi044.ikbsam (mgr.14184) 472 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:56.410 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:05:56.411 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:05:57.069 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:56 smithi044 bash[16231]: cluster 2024-02-19T22:05:55.042853+0000 mgr.smithi044.ikbsam (mgr.14184) 473 : cluster [DBG] pgmap v370: 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-02-19T22:05:57.070 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:05:57.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:56 smithi104 bash[21066]: cluster 2024-02-19T22:05:55.042853+0000 mgr.smithi044.ikbsam (mgr.14184) 473 : cluster [DBG] pgmap v370: 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-02-19T22:05:58.072 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:05:58.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:57 smithi044 bash[16231]: audit 2024-02-19T22:05:56.394918+0000 mgr.smithi044.ikbsam (mgr.14184) 474 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:58.126 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:57 smithi104 bash[21066]: audit 2024-02-19T22:05:56.394918+0000 mgr.smithi044.ikbsam (mgr.14184) 474 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:05:59.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:05:58 smithi104 bash[21066]: cluster 2024-02-19T22:05:57.043908+0000 mgr.smithi044.ikbsam (mgr.14184) 475 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:05:59.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:05:58 smithi044 bash[16231]: cluster 2024-02-19T22:05:57.043908+0000 mgr.smithi044.ikbsam (mgr.14184) 475 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:01.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:00 smithi104 bash[21066]: cluster 2024-02-19T22:05:59.045528+0000 mgr.smithi044.ikbsam (mgr.14184) 476 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:01.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:00 smithi044 bash[16231]: cluster 2024-02-19T22:05:59.045528+0000 mgr.smithi044.ikbsam (mgr.14184) 476 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:01.373 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:01.373 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:02.048 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:03.049 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:03.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:02 smithi104 bash[21066]: cluster 2024-02-19T22:06:01.046664+0000 mgr.smithi044.ikbsam (mgr.14184) 477 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:03.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:02 smithi104 bash[21066]: audit 2024-02-19T22:06:01.356924+0000 mgr.smithi044.ikbsam (mgr.14184) 478 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:03.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:02 smithi044 bash[16231]: cluster 2024-02-19T22:06:01.046664+0000 mgr.smithi044.ikbsam (mgr.14184) 477 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:03.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:02 smithi044 bash[16231]: audit 2024-02-19T22:06:01.356924+0000 mgr.smithi044.ikbsam (mgr.14184) 478 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.006268+0000 mon.smithi044 (mon.0) 776 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.316324+0000 mon.smithi044 (mon.0) 777 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.599489+0000 mon.smithi044 (mon.0) 778 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.601261+0000 mon.smithi044 (mon.0) 779 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.611398+0000 mon.smithi044 (mon.0) 780 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.622584+0000 mon.smithi044 (mon.0) 781 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:06:04.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:03 smithi104 bash[21066]: audit 2024-02-19T22:06:03.637677+0000 mon.smithi044 (mon.0) 782 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:04.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.006268+0000 mon.smithi044 (mon.0) 776 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:06:04.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.316324+0000 mon.smithi044 (mon.0) 777 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:04.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.599489+0000 mon.smithi044 (mon.0) 778 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:06:04.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.601261+0000 mon.smithi044 (mon.0) 779 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:06:04.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.611398+0000 mon.smithi044 (mon.0) 780 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:04.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.622584+0000 mon.smithi044 (mon.0) 781 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:06:04.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:03 smithi044 bash[16231]: audit 2024-02-19T22:06:03.637677+0000 mon.smithi044 (mon.0) 782 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:05.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:04 smithi104 bash[21066]: cluster 2024-02-19T22:06:03.048248+0000 mgr.smithi044.ikbsam (mgr.14184) 479 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:05.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:04 smithi104 bash[21066]: cluster 2024-02-19T22:06:03.612429+0000 mgr.smithi044.ikbsam (mgr.14184) 480 : cluster [DBG] pgmap v375: 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-02-19T22:06:05.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:04 smithi104 bash[21066]: cephadm 2024-02-19T22:06:03.642602+0000 mgr.smithi044.ikbsam (mgr.14184) 481 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.nmsehe on smithi104 2024-02-19T22:06:05.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:04 smithi104 bash[21066]: cluster 2024-02-19T22:06:03.812172+0000 mon.smithi044 (mon.0) 783 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:06:05.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:04 smithi104 bash[21066]: cluster 2024-02-19T22:06:03.812206+0000 mon.smithi044 (mon.0) 784 : cluster [INF] Cluster is now healthy 2024-02-19T22:06:05.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:04 smithi044 bash[16231]: cluster 2024-02-19T22:06:03.048248+0000 mgr.smithi044.ikbsam (mgr.14184) 479 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:05.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:04 smithi044 bash[16231]: cluster 2024-02-19T22:06:03.612429+0000 mgr.smithi044.ikbsam (mgr.14184) 480 : cluster [DBG] pgmap v375: 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-02-19T22:06:05.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:04 smithi044 bash[16231]: cephadm 2024-02-19T22:06:03.642602+0000 mgr.smithi044.ikbsam (mgr.14184) 481 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.nmsehe on smithi104 2024-02-19T22:06:05.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:04 smithi044 bash[16231]: cluster 2024-02-19T22:06:03.812172+0000 mon.smithi044 (mon.0) 783 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:06:05.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:04 smithi044 bash[16231]: cluster 2024-02-19T22:06:03.812206+0000 mon.smithi044 (mon.0) 784 : cluster [INF] Cluster is now healthy 2024-02-19T22:06:06.468 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:06.468 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:03:48.889966Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.pjlurr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:04:59.035231Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nxtcgv on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nxtcgv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nxtcgv\nDeploy daemon haproxy.nfs.foo.smithi104.nxtcgv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.996778Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ulcjwx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ulcjwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ulcjwx\nDeploy daemon haproxy.nfs.foo.smithi044.ulcjwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:05:02.999404Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ejlhua on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:07.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:06 smithi104 bash[21066]: cluster 2024-02-19T22:06:05.613805+0000 mgr.smithi044.ikbsam (mgr.14184) 482 : cluster [DBG] pgmap v376: 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-02-19T22:06:07.140 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:06 smithi044 bash[16231]: cluster 2024-02-19T22:06:05.613805+0000 mgr.smithi044.ikbsam (mgr.14184) 482 : cluster [DBG] pgmap v376: 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-02-19T22:06:07.142 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:08.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:07 smithi104 bash[21066]: audit 2024-02-19T22:06:06.455274+0000 mgr.smithi044.ikbsam (mgr.14184) 483 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:08.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:07 smithi104 bash[21066]: audit 2024-02-19T22:06:07.531673+0000 mon.smithi044 (mon.0) 785 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.nmsehe"}]: dispatch 2024-02-19T22:06:08.143 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:08.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:07 smithi044 bash[16231]: audit 2024-02-19T22:06:06.455274+0000 mgr.smithi044.ikbsam (mgr.14184) 483 : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:08.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:07 smithi044 bash[16231]: audit 2024-02-19T22:06:07.531673+0000 mon.smithi044 (mon.0) 785 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.nmsehe"}]: dispatch 2024-02-19T22:06:09.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: cephadm 2024-02-19T22:06:07.530395+0000 mgr.smithi044.ikbsam (mgr.14184) 484 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.nmsehe ... 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.nmsehe ... 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: cephadm 2024-02-19T22:06:07.530989+0000 mgr.smithi044.ikbsam (mgr.14184) 485 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: cephadm 2024-02-19T22:06:07.533393+0000 mgr.smithi044.ikbsam (mgr.14184) 486 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.nmsehe ... 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:09.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:09.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:09.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: cephadm 2024-02-19T22:06:07.537940+0000 mgr.smithi044.ikbsam (mgr.14184) 487 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.yhfdmu on smithi044 2024-02-19T22:06:09.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:08 smithi104 bash[21066]: cluster 2024-02-19T22:06:07.614799+0000 mgr.smithi044.ikbsam (mgr.14184) 488 : cluster [DBG] pgmap v377: 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-02-19T22:06:09.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: cephadm 2024-02-19T22:06:07.530395+0000 mgr.smithi044.ikbsam (mgr.14184) 484 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.nmsehe ... 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:09.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.nmsehe ... 2024-02-19T22:06:09.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:09.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: cephadm 2024-02-19T22:06:07.530989+0000 mgr.smithi044.ikbsam (mgr.14184) 485 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: cephadm 2024-02-19T22:06:07.533393+0000 mgr.smithi044.ikbsam (mgr.14184) 486 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe 2024-02-19T22:06:09.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.nmsehe ... 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: cephadm 2024-02-19T22:06:07.537940+0000 mgr.smithi044.ikbsam (mgr.14184) 487 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.yhfdmu on smithi044 2024-02-19T22:06:09.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:08 smithi044 bash[16231]: cluster 2024-02-19T22:06:07.614799+0000 mgr.smithi044.ikbsam (mgr.14184) 488 : cluster [DBG] pgmap v377: 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-02-19T22:06:11.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:10 smithi104 bash[21066]: cluster 2024-02-19T22:06:09.616292+0000 mgr.smithi044.ikbsam (mgr.14184) 489 : cluster [DBG] pgmap v378: 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-02-19T22:06:11.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:10 smithi044 bash[16231]: cluster 2024-02-19T22:06:09.616292+0000 mgr.smithi044.ikbsam (mgr.14184) 489 : cluster [DBG] pgmap v378: 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-02-19T22:06:11.539 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:11.539 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:12.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:11 smithi104 bash[21066]: audit 2024-02-19T22:06:11.361986+0000 mon.smithi044 (mon.0) 786 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.yhfdmu"}]: dispatch 2024-02-19T22:06:12.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:11 smithi044 bash[16231]: audit 2024-02-19T22:06:11.361986+0000 mon.smithi044 (mon.0) 786 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.yhfdmu"}]: dispatch 2024-02-19T22:06:12.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cephadm 2024-02-19T22:06:11.360521+0000 mgr.smithi044.ikbsam (mgr.14184) 490 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.yhfdmu ... 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.yhfdmu ... 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cephadm 2024-02-19T22:06:11.361342+0000 mgr.smithi044.ikbsam (mgr.14184) 491 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cephadm 2024-02-19T22:06:11.363228+0000 mgr.smithi044.ikbsam (mgr.14184) 492 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.yhfdmu ... 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cephadm 2024-02-19T22:06:11.366684+0000 mgr.smithi044.ikbsam (mgr.14184) 493 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cephadm 2024-02-19T22:06:11.368959+0000 mgr.smithi044.ikbsam (mgr.14184) 494 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cluster 2024-02-19T22:06:11.370283+0000 mgr.smithi044.ikbsam (mgr.14184) 495 : cluster [DBG] pgmap v379: 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-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: audit 2024-02-19T22:06:11.522344+0000 mgr.smithi044.ikbsam (mgr.14184) 496 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:13.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:12 smithi104 bash[21066]: cluster 2024-02-19T22:06:11.851015+0000 mon.smithi044 (mon.0) 787 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cephadm 2024-02-19T22:06:11.360521+0000 mgr.smithi044.ikbsam (mgr.14184) 490 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.yhfdmu ... 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.yhfdmu ... 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cephadm 2024-02-19T22:06:11.361342+0000 mgr.smithi044.ikbsam (mgr.14184) 491 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cephadm 2024-02-19T22:06:11.363228+0000 mgr.smithi044.ikbsam (mgr.14184) 492 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.yhfdmu ... 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:06:13.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:06:13.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:06:13.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cephadm 2024-02-19T22:06:11.366684+0000 mgr.smithi044.ikbsam (mgr.14184) 493 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:06:13.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cephadm 2024-02-19T22:06:11.368959+0000 mgr.smithi044.ikbsam (mgr.14184) 494 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:06:13.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cluster 2024-02-19T22:06:11.370283+0000 mgr.smithi044.ikbsam (mgr.14184) 495 : cluster [DBG] pgmap v379: 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-02-19T22:06:13.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: audit 2024-02-19T22:06:11.522344+0000 mgr.smithi044.ikbsam (mgr.14184) 496 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:13.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:12 smithi044 bash[16231]: cluster 2024-02-19T22:06:11.851015+0000 mon.smithi044 (mon.0) 787 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:06:13.215 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:15.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:14 smithi104 bash[21066]: cluster 2024-02-19T22:06:13.371453+0000 mgr.smithi044.ikbsam (mgr.14184) 497 : cluster [DBG] pgmap v380: 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-02-19T22:06:15.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:14 smithi104 bash[21066]: audit 2024-02-19T22:06:14.129512+0000 mon.smithi044 (mon.0) 788 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:15.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:14 smithi044 bash[16231]: cluster 2024-02-19T22:06:13.371453+0000 mgr.smithi044.ikbsam (mgr.14184) 497 : cluster [DBG] pgmap v380: 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-02-19T22:06:15.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:14 smithi044 bash[16231]: audit 2024-02-19T22:06:14.129512+0000 mon.smithi044 (mon.0) 788 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:06:16.652 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:16.653 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:17.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:16 smithi044 bash[16231]: cluster 2024-02-19T22:06:15.373289+0000 mgr.smithi044.ikbsam (mgr.14184) 498 : cluster [DBG] pgmap v381: 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-02-19T22:06:17.277 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:17.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:16 smithi104 bash[21066]: cluster 2024-02-19T22:06:15.373289+0000 mgr.smithi044.ikbsam (mgr.14184) 498 : cluster [DBG] pgmap v381: 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-02-19T22:06:18.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:17 smithi044 bash[16231]: audit 2024-02-19T22:06:16.639831+0000 mgr.smithi044.ikbsam (mgr.14184) 499 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:18.278 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:18.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:17 smithi104 bash[21066]: audit 2024-02-19T22:06:16.639831+0000 mgr.smithi044.ikbsam (mgr.14184) 499 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:19.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:18 smithi044 bash[16231]: cluster 2024-02-19T22:06:17.374985+0000 mgr.smithi044.ikbsam (mgr.14184) 500 : cluster [DBG] pgmap v382: 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-02-19T22:06:19.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:18 smithi104 bash[21066]: cluster 2024-02-19T22:06:17.374985+0000 mgr.smithi044.ikbsam (mgr.14184) 500 : cluster [DBG] pgmap v382: 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-02-19T22:06:21.153 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:20 smithi044 bash[16231]: cluster 2024-02-19T22:06:19.376182+0000 mgr.smithi044.ikbsam (mgr.14184) 501 : cluster [DBG] pgmap v383: 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-02-19T22:06:21.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:20 smithi104 bash[21066]: cluster 2024-02-19T22:06:19.376182+0000 mgr.smithi044.ikbsam (mgr.14184) 501 : cluster [DBG] pgmap v383: 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-02-19T22:06:21.595 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:21.595 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:22.256 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:23.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:22 smithi104 bash[21066]: cluster 2024-02-19T22:06:21.377276+0000 mgr.smithi044.ikbsam (mgr.14184) 502 : cluster [DBG] pgmap v384: 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-02-19T22:06:23.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:22 smithi104 bash[21066]: audit 2024-02-19T22:06:21.581477+0000 mgr.smithi044.ikbsam (mgr.14184) 503 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:23.258 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:23.271 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:22 smithi044 bash[16231]: cluster 2024-02-19T22:06:21.377276+0000 mgr.smithi044.ikbsam (mgr.14184) 502 : cluster [DBG] pgmap v384: 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-02-19T22:06:23.271 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:22 smithi044 bash[16231]: audit 2024-02-19T22:06:21.581477+0000 mgr.smithi044.ikbsam (mgr.14184) 503 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:25.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:24 smithi044 bash[16231]: cluster 2024-02-19T22:06:23.378948+0000 mgr.smithi044.ikbsam (mgr.14184) 504 : 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-02-19T22:06:25.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:24 smithi104 bash[21066]: cluster 2024-02-19T22:06:23.378948+0000 mgr.smithi044.ikbsam (mgr.14184) 504 : 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-02-19T22:06:26.723 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:26.723 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:27.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:26 smithi044 bash[16231]: cluster 2024-02-19T22:06:25.380483+0000 mgr.smithi044.ikbsam (mgr.14184) 505 : cluster [DBG] pgmap v386: 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-02-19T22:06:27.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:26 smithi104 bash[21066]: cluster 2024-02-19T22:06:25.380483+0000 mgr.smithi044.ikbsam (mgr.14184) 505 : cluster [DBG] pgmap v386: 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-02-19T22:06:27.399 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:28.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:27 smithi104 bash[21066]: audit 2024-02-19T22:06:26.714971+0000 mgr.smithi044.ikbsam (mgr.14184) 506 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:28.399 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:28.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:27 smithi044 bash[16231]: audit 2024-02-19T22:06:26.714971+0000 mgr.smithi044.ikbsam (mgr.14184) 506 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:29.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:28 smithi104 bash[21066]: cluster 2024-02-19T22:06:27.381993+0000 mgr.smithi044.ikbsam (mgr.14184) 507 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:29.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:28 smithi044 bash[16231]: cluster 2024-02-19T22:06:27.381993+0000 mgr.smithi044.ikbsam (mgr.14184) 507 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:30.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:29 smithi044 bash[16231]: cluster 2024-02-19T22:06:29.383623+0000 mgr.smithi044.ikbsam (mgr.14184) 508 : 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-02-19T22:06:30.377 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:29 smithi104 bash[21066]: cluster 2024-02-19T22:06:29.383623+0000 mgr.smithi044.ikbsam (mgr.14184) 508 : 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-02-19T22:06:31.843 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:31.844 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:32.465 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:32.781 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:32 smithi104 bash[21066]: cluster 2024-02-19T22:06:31.385518+0000 mgr.smithi044.ikbsam (mgr.14184) 509 : 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-02-19T22:06:32.781 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:32 smithi104 bash[21066]: audit 2024-02-19T22:06:31.827420+0000 mgr.smithi044.ikbsam (mgr.14184) 510 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:32.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:32 smithi044 bash[16231]: cluster 2024-02-19T22:06:31.385518+0000 mgr.smithi044.ikbsam (mgr.14184) 509 : 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-02-19T22:06:32.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:32 smithi044 bash[16231]: audit 2024-02-19T22:06:31.827420+0000 mgr.smithi044.ikbsam (mgr.14184) 510 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:33.466 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:34.752 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:34 smithi044 bash[16231]: cluster 2024-02-19T22:06:33.387326+0000 mgr.smithi044.ikbsam (mgr.14184) 511 : 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-02-19T22:06:34.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:34 smithi104 bash[21066]: cluster 2024-02-19T22:06:33.387326+0000 mgr.smithi044.ikbsam (mgr.14184) 511 : 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-02-19T22:06:36.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:36 smithi044 bash[16231]: cluster 2024-02-19T22:06:35.389153+0000 mgr.smithi044.ikbsam (mgr.14184) 512 : cluster [DBG] pgmap v391: 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-02-19T22:06:36.787 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:36.788 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:36.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:36 smithi104 bash[21066]: cluster 2024-02-19T22:06:35.389153+0000 mgr.smithi044.ikbsam (mgr.14184) 512 : cluster [DBG] pgmap v391: 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-02-19T22:06:37.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:37.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:37 smithi104 bash[21066]: audit 2024-02-19T22:06:36.771935+0000 mgr.smithi044.ikbsam (mgr.14184) 513 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:37.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:37 smithi044 bash[16231]: audit 2024-02-19T22:06:36.771935+0000 mgr.smithi044.ikbsam (mgr.14184) 513 : audit [DBG] from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:38.523 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:38.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:38 smithi104 bash[21066]: cluster 2024-02-19T22:06:37.390490+0000 mgr.smithi044.ikbsam (mgr.14184) 514 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:38.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:38 smithi044 bash[16231]: cluster 2024-02-19T22:06:37.390490+0000 mgr.smithi044.ikbsam (mgr.14184) 514 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:40.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:40 smithi104 bash[21066]: cluster 2024-02-19T22:06:39.392139+0000 mgr.smithi044.ikbsam (mgr.14184) 515 : 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-02-19T22:06:40.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:40 smithi044 bash[16231]: cluster 2024-02-19T22:06:39.392139+0000 mgr.smithi044.ikbsam (mgr.14184) 515 : 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-02-19T22:06:41.989 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:41.989 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:42.687 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:42.782 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:42 smithi104 bash[21066]: cluster 2024-02-19T22:06:41.393886+0000 mgr.smithi044.ikbsam (mgr.14184) 516 : 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-02-19T22:06:42.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:42 smithi044 bash[16231]: cluster 2024-02-19T22:06:41.393886+0000 mgr.smithi044.ikbsam (mgr.14184) 516 : 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-02-19T22:06:43.688 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:43.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:43 smithi104 bash[21066]: audit 2024-02-19T22:06:41.975708+0000 mgr.smithi044.ikbsam (mgr.14184) 517 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:43.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:43 smithi044 bash[16231]: audit 2024-02-19T22:06:41.975708+0000 mgr.smithi044.ikbsam (mgr.14184) 517 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:44.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:44 smithi104 bash[21066]: cluster 2024-02-19T22:06:43.395584+0000 mgr.smithi044.ikbsam (mgr.14184) 518 : 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-02-19T22:06:44.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:44 smithi044 bash[16231]: cluster 2024-02-19T22:06:43.395584+0000 mgr.smithi044.ikbsam (mgr.14184) 518 : 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-02-19T22:06:46.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:46 smithi104 bash[21066]: cluster 2024-02-19T22:06:45.397378+0000 mgr.smithi044.ikbsam (mgr.14184) 519 : cluster [DBG] pgmap v396: 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-02-19T22:06:46.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:46 smithi044 bash[16231]: cluster 2024-02-19T22:06:45.397378+0000 mgr.smithi044.ikbsam (mgr.14184) 519 : cluster [DBG] pgmap v396: 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-02-19T22:06:47.076 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:47.076 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:47.783 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:48.784 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:48.797 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:48 smithi044 bash[16231]: audit 2024-02-19T22:06:47.068140+0000 mgr.smithi044.ikbsam (mgr.14184) 520 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:48.797 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:48 smithi044 bash[16231]: cluster 2024-02-19T22:06:47.398861+0000 mgr.smithi044.ikbsam (mgr.14184) 521 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:48.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:48 smithi104 bash[21066]: audit 2024-02-19T22:06:47.068140+0000 mgr.smithi044.ikbsam (mgr.14184) 520 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:48.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:48 smithi104 bash[21066]: cluster 2024-02-19T22:06:47.398861+0000 mgr.smithi044.ikbsam (mgr.14184) 521 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:50.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:50 smithi104 bash[21066]: cluster 2024-02-19T22:06:49.400547+0000 mgr.smithi044.ikbsam (mgr.14184) 522 : 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-02-19T22:06:50.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:50 smithi044 bash[16231]: cluster 2024-02-19T22:06:49.400547+0000 mgr.smithi044.ikbsam (mgr.14184) 522 : 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-02-19T22:06:52.227 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:52.228 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:52.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:52 smithi044 bash[16231]: cluster 2024-02-19T22:06:51.402191+0000 mgr.smithi044.ikbsam (mgr.14184) 523 : 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-02-19T22:06:52.782 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:52 smithi104 bash[21066]: cluster 2024-02-19T22:06:51.402191+0000 mgr.smithi044.ikbsam (mgr.14184) 523 : 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-02-19T22:06:52.899 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:53.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:53 smithi104 bash[21066]: audit 2024-02-19T22:06:52.211439+0000 mgr.smithi044.ikbsam (mgr.14184) 524 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:53.900 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:06:53.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:53 smithi044 bash[16231]: audit 2024-02-19T22:06:52.211439+0000 mgr.smithi044.ikbsam (mgr.14184) 524 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:54.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:54 smithi104 bash[21066]: cluster 2024-02-19T22:06:53.403916+0000 mgr.smithi044.ikbsam (mgr.14184) 525 : 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-02-19T22:06:54.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:54 smithi044 bash[16231]: cluster 2024-02-19T22:06:53.403916+0000 mgr.smithi044.ikbsam (mgr.14184) 525 : 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-02-19T22:06:56.792 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:56 smithi044 bash[16231]: cluster 2024-02-19T22:06:55.405768+0000 mgr.smithi044.ikbsam (mgr.14184) 526 : cluster [DBG] pgmap v401: 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-02-19T22:06:56.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:56 smithi104 bash[21066]: cluster 2024-02-19T22:06:55.405768+0000 mgr.smithi044.ikbsam (mgr.14184) 526 : cluster [DBG] pgmap v401: 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-02-19T22:06:57.242 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:06:57.242 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:06:57.913 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:06:58.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:58 smithi104 bash[21066]: audit 2024-02-19T22:06:57.227331+0000 mgr.smithi044.ikbsam (mgr.14184) 527 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:58.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:06:58 smithi104 bash[21066]: cluster 2024-02-19T22:06:57.407248+0000 mgr.smithi044.ikbsam (mgr.14184) 528 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:58.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:58 smithi044 bash[16231]: audit 2024-02-19T22:06:57.227331+0000 mgr.smithi044.ikbsam (mgr.14184) 527 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:06:58.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:06:58 smithi044 bash[16231]: cluster 2024-02-19T22:06:57.407248+0000 mgr.smithi044.ikbsam (mgr.14184) 528 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:06:58.914 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:00.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:00 smithi044 bash[16231]: cluster 2024-02-19T22:06:59.408883+0000 mgr.smithi044.ikbsam (mgr.14184) 529 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:00.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:00 smithi104 bash[21066]: cluster 2024-02-19T22:06:59.408883+0000 mgr.smithi044.ikbsam (mgr.14184) 529 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:02.267 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:02.267 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:02.655 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:02 smithi044 bash[16231]: cluster 2024-02-19T22:07:01.410500+0000 mgr.smithi044.ikbsam (mgr.14184) 530 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:02.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:02 smithi104 bash[21066]: cluster 2024-02-19T22:07:01.410500+0000 mgr.smithi044.ikbsam (mgr.14184) 530 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:02.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:03.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:03 smithi104 bash[21066]: audit 2024-02-19T22:07:02.252388+0000 mgr.smithi044.ikbsam (mgr.14184) 531 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:03.904 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:03.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:03 smithi044 bash[16231]: audit 2024-02-19T22:07:02.252388+0000 mgr.smithi044.ikbsam (mgr.14184) 531 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:04.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:04 smithi104 bash[21066]: cluster 2024-02-19T22:07:03.412210+0000 mgr.smithi044.ikbsam (mgr.14184) 532 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:04.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:04 smithi044 bash[16231]: cluster 2024-02-19T22:07:03.412210+0000 mgr.smithi044.ikbsam (mgr.14184) 532 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:06.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:06 smithi104 bash[21066]: cluster 2024-02-19T22:07:05.414158+0000 mgr.smithi044.ikbsam (mgr.14184) 533 : cluster [DBG] pgmap v406: 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-02-19T22:07:06.905 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:06 smithi044 bash[16231]: cluster 2024-02-19T22:07:05.414158+0000 mgr.smithi044.ikbsam (mgr.14184) 533 : cluster [DBG] pgmap v406: 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-02-19T22:07:07.183 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:07.183 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:07.842 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:08.843 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:08.854 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:08 smithi044 bash[16231]: audit 2024-02-19T22:07:07.169942+0000 mgr.smithi044.ikbsam (mgr.14184) 534 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:08.855 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:08 smithi044 bash[16231]: cluster 2024-02-19T22:07:07.415626+0000 mgr.smithi044.ikbsam (mgr.14184) 535 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:08.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:08 smithi104 bash[21066]: audit 2024-02-19T22:07:07.169942+0000 mgr.smithi044.ikbsam (mgr.14184) 534 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:08.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:08 smithi104 bash[21066]: cluster 2024-02-19T22:07:07.415626+0000 mgr.smithi044.ikbsam (mgr.14184) 535 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:10.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:10 smithi104 bash[21066]: cluster 2024-02-19T22:07:09.417289+0000 mgr.smithi044.ikbsam (mgr.14184) 536 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:10.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:10 smithi044 bash[16231]: cluster 2024-02-19T22:07:09.417289+0000 mgr.smithi044.ikbsam (mgr.14184) 536 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:11.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:11 smithi044 bash[16231]: audit 2024-02-19T22:07:11.373441+0000 mon.smithi044 (mon.0) 789 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:07:11.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:11 smithi104 bash[21066]: audit 2024-02-19T22:07:11.373441+0000 mon.smithi044 (mon.0) 789 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:07:12.220 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:12.221 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:05:03.001605Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.agyibl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: cluster 2024-02-19T22:07:11.418476+0000 mgr.smithi044.ikbsam (mgr.14184) 537 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: audit 2024-02-19T22:07:11.674287+0000 mon.smithi044 (mon.0) 790 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: audit 2024-02-19T22:07:11.675772+0000 mon.smithi044 (mon.0) 791 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: audit 2024-02-19T22:07:11.682273+0000 mon.smithi044 (mon.0) 792 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: cluster 2024-02-19T22:07:11.683164+0000 mgr.smithi044.ikbsam (mgr.14184) 538 : cluster [DBG] pgmap v410: 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-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: audit 2024-02-19T22:07:11.689513+0000 mon.smithi044 (mon.0) 793 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: audit 2024-02-19T22:07:11.701802+0000 mon.smithi044 (mon.0) 794 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:12.860 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:12 smithi044 bash[16231]: cephadm 2024-02-19T22:07:11.705047+0000 mgr.smithi044.ikbsam (mgr.14184) 539 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.akgudh on smithi104 2024-02-19T22:07:12.861 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:12.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: cluster 2024-02-19T22:07:11.418476+0000 mgr.smithi044.ikbsam (mgr.14184) 537 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: audit 2024-02-19T22:07:11.674287+0000 mon.smithi044 (mon.0) 790 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: audit 2024-02-19T22:07:11.675772+0000 mon.smithi044 (mon.0) 791 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: audit 2024-02-19T22:07:11.682273+0000 mon.smithi044 (mon.0) 792 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: cluster 2024-02-19T22:07:11.683164+0000 mgr.smithi044.ikbsam (mgr.14184) 538 : cluster [DBG] pgmap v410: 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-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: audit 2024-02-19T22:07:11.689513+0000 mon.smithi044 (mon.0) 793 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: audit 2024-02-19T22:07:11.701802+0000 mon.smithi044 (mon.0) 794 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:12.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:12 smithi104 bash[21066]: cephadm 2024-02-19T22:07:11.705047+0000 mgr.smithi044.ikbsam (mgr.14184) 539 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.akgudh on smithi104 2024-02-19T22:07:13.863 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:13.874 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:13 smithi044 bash[16231]: audit 2024-02-19T22:07:12.211787+0000 mgr.smithi044.ikbsam (mgr.14184) 540 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:13.874 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:13 smithi044 bash[16231]: cluster 2024-02-19T22:07:12.680341+0000 mon.smithi044 (mon.0) 795 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:07:13.875 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:13 smithi044 bash[16231]: cluster 2024-02-19T22:07:12.680435+0000 mon.smithi044 (mon.0) 796 : cluster [INF] Cluster is now healthy 2024-02-19T22:07:13.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:13 smithi104 bash[21066]: audit 2024-02-19T22:07:12.211787+0000 mgr.smithi044.ikbsam (mgr.14184) 540 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:13.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:13 smithi104 bash[21066]: cluster 2024-02-19T22:07:12.680341+0000 mon.smithi044 (mon.0) 795 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:07:13.877 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:13 smithi104 bash[21066]: cluster 2024-02-19T22:07:12.680435+0000 mon.smithi044 (mon.0) 796 : cluster [INF] Cluster is now healthy 2024-02-19T22:07:14.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:14 smithi044 bash[16231]: audit 2024-02-19T22:07:13.633621+0000 mon.smithi044 (mon.0) 797 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:14.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:14 smithi044 bash[16231]: cluster 2024-02-19T22:07:13.684657+0000 mgr.smithi044.ikbsam (mgr.14184) 541 : cluster [DBG] pgmap v411: 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-02-19T22:07:15.111 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:14 smithi104 bash[21066]: audit 2024-02-19T22:07:13.633621+0000 mon.smithi044 (mon.0) 797 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:15.111 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:14 smithi104 bash[21066]: cluster 2024-02-19T22:07:13.684657+0000 mgr.smithi044.ikbsam (mgr.14184) 541 : cluster [DBG] pgmap v411: 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-02-19T22:07:17.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: cluster 2024-02-19T22:07:15.686357+0000 mgr.smithi044.ikbsam (mgr.14184) 542 : cluster [DBG] pgmap v412: 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-02-19T22:07:17.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: cephadm 2024-02-19T22:07:15.761641+0000 mgr.smithi044.ikbsam (mgr.14184) 543 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:17.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.akgudh ... 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:07:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.akgudh ... 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: cephadm 2024-02-19T22:07:15.762456+0000 mgr.smithi044.ikbsam (mgr.14184) 544 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: audit 2024-02-19T22:07:15.763203+0000 mon.smithi044 (mon.0) 798 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.akgudh"}]: dispatch 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: cephadm 2024-02-19T22:07:15.764939+0000 mgr.smithi044.ikbsam (mgr.14184) 545 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.akgudh ... 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:16 smithi104 bash[21066]: cephadm 2024-02-19T22:07:15.769946+0000 mgr.smithi044.ikbsam (mgr.14184) 546 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.aflwwk on smithi044 2024-02-19T22:07:17.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: cluster 2024-02-19T22:07:15.686357+0000 mgr.smithi044.ikbsam (mgr.14184) 542 : cluster [DBG] pgmap v412: 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-02-19T22:07:17.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: cephadm 2024-02-19T22:07:15.761641+0000 mgr.smithi044.ikbsam (mgr.14184) 543 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.akgudh ... 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:07:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.akgudh ... 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: cephadm 2024-02-19T22:07:15.762456+0000 mgr.smithi044.ikbsam (mgr.14184) 544 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: audit 2024-02-19T22:07:15.763203+0000 mon.smithi044 (mon.0) 798 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.akgudh"}]: dispatch 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: cephadm 2024-02-19T22:07:15.764939+0000 mgr.smithi044.ikbsam (mgr.14184) 545 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.akgudh ... 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:17.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:16 smithi044 bash[16231]: cephadm 2024-02-19T22:07:15.769946+0000 mgr.smithi044.ikbsam (mgr.14184) 546 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.aflwwk on smithi044 2024-02-19T22:07:17.268 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:17.268 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:07.533161Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.nmsehe on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-nmsehe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.nmsehe\nDeploy daemon haproxy.nfs.foo.smithi104.nmsehe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.362986Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yhfdmu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yhfdmu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yhfdmu\nDeploy daemon haproxy.nfs.foo.smithi044.yhfdmu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:06:11.366553Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dkyzjy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:17.951 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:18.952 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:19.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:18 smithi104 bash[21066]: audit 2024-02-19T22:07:17.252535+0000 mgr.smithi044.ikbsam (mgr.14184) 547 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:19.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:18 smithi104 bash[21066]: cluster 2024-02-19T22:07:17.687585+0000 mgr.smithi044.ikbsam (mgr.14184) 548 : cluster [DBG] pgmap v413: 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-02-19T22:07:19.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:18 smithi044 bash[16231]: audit 2024-02-19T22:07:17.252535+0000 mgr.smithi044.ikbsam (mgr.14184) 547 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:19.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:18 smithi044 bash[16231]: cluster 2024-02-19T22:07:17.687585+0000 mgr.smithi044.ikbsam (mgr.14184) 548 : cluster [DBG] pgmap v413: 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-02-19T22:07:20.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:20 smithi044 bash[16231]: cluster 2024-02-19T22:07:19.688997+0000 mgr.smithi044.ikbsam (mgr.14184) 549 : cluster [DBG] pgmap v414: 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-02-19T22:07:20.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:20 smithi044 bash[16231]: audit 2024-02-19T22:07:20.166633+0000 mon.smithi044 (mon.0) 799 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.aflwwk"}]: dispatch 2024-02-19T22:07:21.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:20 smithi104 bash[21066]: cluster 2024-02-19T22:07:19.688997+0000 mgr.smithi044.ikbsam (mgr.14184) 549 : cluster [DBG] pgmap v414: 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-02-19T22:07:21.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:20 smithi104 bash[21066]: audit 2024-02-19T22:07:20.166633+0000 mon.smithi044 (mon.0) 799 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.aflwwk"}]: dispatch 2024-02-19T22:07:22.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cephadm 2024-02-19T22:07:20.165197+0000 mgr.smithi044.ikbsam (mgr.14184) 550 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:22.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.aflwwk ... 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.aflwwk ... 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cephadm 2024-02-19T22:07:20.165854+0000 mgr.smithi044.ikbsam (mgr.14184) 551 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cephadm 2024-02-19T22:07:20.168285+0000 mgr.smithi044.ikbsam (mgr.14184) 552 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.aflwwk ... 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cephadm 2024-02-19T22:07:20.172473+0000 mgr.smithi044.ikbsam (mgr.14184) 553 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cephadm 2024-02-19T22:07:20.176696+0000 mgr.smithi044.ikbsam (mgr.14184) 554 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cluster 2024-02-19T22:07:20.178406+0000 mgr.smithi044.ikbsam (mgr.14184) 555 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 116 B/s rd, 0 op/s 2024-02-19T22:07:22.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:21 smithi104 bash[21066]: cluster 2024-02-19T22:07:20.753605+0000 mon.smithi044 (mon.0) 800 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:07:22.154 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cephadm 2024-02-19T22:07:20.165197+0000 mgr.smithi044.ikbsam (mgr.14184) 550 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.aflwwk ... 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:07:22.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.aflwwk ... 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cephadm 2024-02-19T22:07:20.165854+0000 mgr.smithi044.ikbsam (mgr.14184) 551 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cephadm 2024-02-19T22:07:20.168285+0000 mgr.smithi044.ikbsam (mgr.14184) 552 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.aflwwk ... 2024-02-19T22:07:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cephadm 2024-02-19T22:07:20.172473+0000 mgr.smithi044.ikbsam (mgr.14184) 553 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cephadm 2024-02-19T22:07:20.176696+0000 mgr.smithi044.ikbsam (mgr.14184) 554 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cluster 2024-02-19T22:07:20.178406+0000 mgr.smithi044.ikbsam (mgr.14184) 555 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 116 B/s rd, 0 op/s 2024-02-19T22:07:22.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:21 smithi044 bash[16231]: cluster 2024-02-19T22:07:20.753605+0000 mon.smithi044 (mon.0) 800 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:07:22.580 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:22.580 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:23.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:24.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:23 smithi104 bash[21066]: cluster 2024-02-19T22:07:22.179772+0000 mgr.smithi044.ikbsam (mgr.14184) 556 : cluster [DBG] pgmap v416: 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-02-19T22:07:24.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:23 smithi104 bash[21066]: audit 2024-02-19T22:07:22.563178+0000 mgr.smithi044.ikbsam (mgr.14184) 557 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:24.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:23 smithi044 bash[16231]: cluster 2024-02-19T22:07:22.179772+0000 mgr.smithi044.ikbsam (mgr.14184) 556 : cluster [DBG] pgmap v416: 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-02-19T22:07:24.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:23 smithi044 bash[16231]: audit 2024-02-19T22:07:22.563178+0000 mgr.smithi044.ikbsam (mgr.14184) 557 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:24.229 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:25.469 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:25 smithi044 bash[16231]: cluster 2024-02-19T22:07:24.181714+0000 mgr.smithi044.ikbsam (mgr.14184) 558 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 195 B/s rd, 0 op/s 2024-02-19T22:07:25.469 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:25 smithi044 bash[16231]: audit 2024-02-19T22:07:24.191467+0000 mon.smithi044 (mon.0) 801 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:25.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:25 smithi104 bash[21066]: cluster 2024-02-19T22:07:24.181714+0000 mgr.smithi044.ikbsam (mgr.14184) 558 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 195 B/s rd, 0 op/s 2024-02-19T22:07:25.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:25 smithi104 bash[21066]: audit 2024-02-19T22:07:24.191467+0000 mon.smithi044 (mon.0) 801 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:27.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:27 smithi044 bash[16231]: cluster 2024-02-19T22:07:26.183501+0000 mgr.smithi044.ikbsam (mgr.14184) 559 : cluster [DBG] pgmap v418: 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-02-19T22:07:27.584 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:27.584 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:27.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:27 smithi104 bash[21066]: cluster 2024-02-19T22:07:26.183501+0000 mgr.smithi044.ikbsam (mgr.14184) 559 : cluster [DBG] pgmap v418: 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-02-19T22:07:28.307 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:28.489 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:28 smithi044 bash[16231]: audit 2024-02-19T22:07:27.574530+0000 mgr.smithi044.ikbsam (mgr.14184) 560 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:28.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:28 smithi104 bash[21066]: audit 2024-02-19T22:07:27.574530+0000 mgr.smithi044.ikbsam (mgr.14184) 560 : audit [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:29.309 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:29.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:29 smithi044 bash[16231]: cluster 2024-02-19T22:07:28.185257+0000 mgr.smithi044.ikbsam (mgr.14184) 561 : cluster [DBG] pgmap v419: 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-02-19T22:07:29.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:29 smithi044 bash[16231]: audit 2024-02-19T22:07:28.634913+0000 mon.smithi044 (mon.0) 802 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:30.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:29 smithi104 bash[21066]: cluster 2024-02-19T22:07:28.185257+0000 mgr.smithi044.ikbsam (mgr.14184) 561 : cluster [DBG] pgmap v419: 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-02-19T22:07:30.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:29 smithi104 bash[21066]: audit 2024-02-19T22:07:28.634913+0000 mon.smithi044 (mon.0) 802 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:07:31.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:31 smithi044 bash[16231]: cluster 2024-02-19T22:07:30.187099+0000 mgr.smithi044.ikbsam (mgr.14184) 562 : cluster [DBG] pgmap v420: 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-02-19T22:07:32.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:31 smithi104 bash[21066]: cluster 2024-02-19T22:07:30.187099+0000 mgr.smithi044.ikbsam (mgr.14184) 562 : cluster [DBG] pgmap v420: 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-02-19T22:07:32.880 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:32.880 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:33.507 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:33.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:33 smithi044 bash[16231]: cluster 2024-02-19T22:07:32.188585+0000 mgr.smithi044.ikbsam (mgr.14184) 563 : 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-02-19T22:07:33.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:33 smithi044 bash[16231]: audit 2024-02-19T22:07:32.864251+0000 mgr.smithi044.ikbsam (mgr.14184) 564 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:34.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:33 smithi104 bash[21066]: cluster 2024-02-19T22:07:32.188585+0000 mgr.smithi044.ikbsam (mgr.14184) 563 : 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-02-19T22:07:34.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:33 smithi104 bash[21066]: audit 2024-02-19T22:07:32.864251+0000 mgr.smithi044.ikbsam (mgr.14184) 564 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:34.508 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:35.858 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:35 smithi044 bash[16231]: cluster 2024-02-19T22:07:34.190352+0000 mgr.smithi044.ikbsam (mgr.14184) 565 : cluster [DBG] pgmap v422: 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-02-19T22:07:36.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:35 smithi104 bash[21066]: cluster 2024-02-19T22:07:34.190352+0000 mgr.smithi044.ikbsam (mgr.14184) 565 : cluster [DBG] pgmap v422: 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-02-19T22:07:37.885 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:37.886 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:37.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:37 smithi044 bash[16231]: cluster 2024-02-19T22:07:36.192062+0000 mgr.smithi044.ikbsam (mgr.14184) 566 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:38.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:37 smithi104 bash[21066]: cluster 2024-02-19T22:07:36.192062+0000 mgr.smithi044.ikbsam (mgr.14184) 566 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:38.546 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:38.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:38 smithi044 bash[16231]: audit 2024-02-19T22:07:37.868950+0000 mgr.smithi044.ikbsam (mgr.14184) 567 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:39.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:38 smithi104 bash[21066]: audit 2024-02-19T22:07:37.868950+0000 mgr.smithi044.ikbsam (mgr.14184) 567 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:39.547 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:39.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:39 smithi044 bash[16231]: cluster 2024-02-19T22:07:38.193896+0000 mgr.smithi044.ikbsam (mgr.14184) 568 : 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-02-19T22:07:40.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:39 smithi104 bash[21066]: cluster 2024-02-19T22:07:38.193896+0000 mgr.smithi044.ikbsam (mgr.14184) 568 : 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-02-19T22:07:42.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:41 smithi104 bash[21066]: cluster 2024-02-19T22:07:40.195796+0000 mgr.smithi044.ikbsam (mgr.14184) 569 : 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-02-19T22:07:42.155 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:41 smithi044 bash[16231]: cluster 2024-02-19T22:07:40.195796+0000 mgr.smithi044.ikbsam (mgr.14184) 569 : 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-02-19T22:07:43.119 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:43.119 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:43.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:44.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:43 smithi104 bash[21066]: cluster 2024-02-19T22:07:42.197280+0000 mgr.smithi044.ikbsam (mgr.14184) 570 : 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-02-19T22:07:44.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:43 smithi044 bash[16231]: cluster 2024-02-19T22:07:42.197280+0000 mgr.smithi044.ikbsam (mgr.14184) 570 : 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-02-19T22:07:44.790 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:45.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:44 smithi104 bash[21066]: audit 2024-02-19T22:07:43.102984+0000 mgr.smithi044.ikbsam (mgr.14184) 571 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:45.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:44 smithi044 bash[16231]: audit 2024-02-19T22:07:43.102984+0000 mgr.smithi044.ikbsam (mgr.14184) 571 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:46.100 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:45 smithi044 bash[16231]: cluster 2024-02-19T22:07:44.198923+0000 mgr.smithi044.ikbsam (mgr.14184) 572 : cluster [DBG] pgmap v427: 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-02-19T22:07:46.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:45 smithi104 bash[21066]: cluster 2024-02-19T22:07:44.198923+0000 mgr.smithi044.ikbsam (mgr.14184) 572 : cluster [DBG] pgmap v427: 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-02-19T22:07:47.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:47 smithi044 bash[16231]: cluster 2024-02-19T22:07:46.200707+0000 mgr.smithi044.ikbsam (mgr.14184) 573 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:47.997 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:47.997 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:48.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:47 smithi104 bash[21066]: cluster 2024-02-19T22:07:46.200707+0000 mgr.smithi044.ikbsam (mgr.14184) 573 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:48.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:49.703 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:50.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:49 smithi104 bash[21066]: audit 2024-02-19T22:07:47.981858+0000 mgr.smithi044.ikbsam (mgr.14184) 574 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:50.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:49 smithi104 bash[21066]: cluster 2024-02-19T22:07:48.202509+0000 mgr.smithi044.ikbsam (mgr.14184) 575 : 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-02-19T22:07:50.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:49 smithi044 bash[16231]: audit 2024-02-19T22:07:47.981858+0000 mgr.smithi044.ikbsam (mgr.14184) 574 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:50.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:49 smithi044 bash[16231]: cluster 2024-02-19T22:07:48.202509+0000 mgr.smithi044.ikbsam (mgr.14184) 575 : 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-02-19T22:07:52.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:51 smithi104 bash[21066]: cluster 2024-02-19T22:07:50.204430+0000 mgr.smithi044.ikbsam (mgr.14184) 576 : 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-02-19T22:07:52.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:51 smithi044 bash[16231]: cluster 2024-02-19T22:07:50.204430+0000 mgr.smithi044.ikbsam (mgr.14184) 576 : 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-02-19T22:07:53.082 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:53.083 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:53.695 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:54.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:53 smithi104 bash[21066]: cluster 2024-02-19T22:07:52.205911+0000 mgr.smithi044.ikbsam (mgr.14184) 577 : 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-02-19T22:07:54.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:53 smithi044 bash[16231]: cluster 2024-02-19T22:07:52.205911+0000 mgr.smithi044.ikbsam (mgr.14184) 577 : 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-02-19T22:07:54.696 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:55.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:54 smithi104 bash[21066]: audit 2024-02-19T22:07:53.068796+0000 mgr.smithi044.ikbsam (mgr.14184) 578 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:54 smithi044 bash[16231]: audit 2024-02-19T22:07:53.068796+0000 mgr.smithi044.ikbsam (mgr.14184) 578 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:56.118 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:55 smithi044 bash[16231]: cluster 2024-02-19T22:07:54.207530+0000 mgr.smithi044.ikbsam (mgr.14184) 579 : cluster [DBG] pgmap v432: 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-02-19T22:07:56.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:55 smithi104 bash[21066]: cluster 2024-02-19T22:07:54.207530+0000 mgr.smithi044.ikbsam (mgr.14184) 579 : cluster [DBG] pgmap v432: 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-02-19T22:07:57.913 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:07:57.913 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:07:58.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:57 smithi104 bash[21066]: cluster 2024-02-19T22:07:56.209306+0000 mgr.smithi044.ikbsam (mgr.14184) 580 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:58.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:57 smithi044 bash[16231]: cluster 2024-02-19T22:07:56.209306+0000 mgr.smithi044.ikbsam (mgr.14184) 580 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:07:58.550 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:07:59.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:58 smithi104 bash[21066]: audit 2024-02-19T22:07:57.899712+0000 mgr.smithi044.ikbsam (mgr.14184) 581 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:59.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:58 smithi044 bash[16231]: audit 2024-02-19T22:07:57.899712+0000 mgr.smithi044.ikbsam (mgr.14184) 581 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:07:59.551 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:07:59.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:07:59 smithi044 bash[16231]: cluster 2024-02-19T22:07:58.211133+0000 mgr.smithi044.ikbsam (mgr.14184) 582 : 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-02-19T22:08:00.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:07:59 smithi104 bash[21066]: cluster 2024-02-19T22:07:58.211133+0000 mgr.smithi044.ikbsam (mgr.14184) 582 : 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-02-19T22:08:02.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:01 smithi104 bash[21066]: cluster 2024-02-19T22:08:00.212947+0000 mgr.smithi044.ikbsam (mgr.14184) 583 : 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-02-19T22:08:02.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:01 smithi044 bash[16231]: cluster 2024-02-19T22:08:00.212947+0000 mgr.smithi044.ikbsam (mgr.14184) 583 : 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-02-19T22:08:02.913 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:02.913 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:03.589 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:03.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:03 smithi044 bash[16231]: cluster 2024-02-19T22:08:02.214417+0000 mgr.smithi044.ikbsam (mgr.14184) 584 : 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-02-19T22:08:03.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:03 smithi044 bash[16231]: audit 2024-02-19T22:08:02.904293+0000 mgr.smithi044.ikbsam (mgr.14184) 585 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:04.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:03 smithi104 bash[21066]: cluster 2024-02-19T22:08:02.214417+0000 mgr.smithi044.ikbsam (mgr.14184) 584 : 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-02-19T22:08:04.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:03 smithi104 bash[21066]: audit 2024-02-19T22:08:02.904293+0000 mgr.smithi044.ikbsam (mgr.14184) 585 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:04.590 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:06.012 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:05 smithi044 bash[16231]: cluster 2024-02-19T22:08:04.216032+0000 mgr.smithi044.ikbsam (mgr.14184) 586 : cluster [DBG] pgmap v437: 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-02-19T22:08:06.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:05 smithi104 bash[21066]: cluster 2024-02-19T22:08:04.216032+0000 mgr.smithi044.ikbsam (mgr.14184) 586 : cluster [DBG] pgmap v437: 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-02-19T22:08:07.859 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:07.859 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:08.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:07 smithi104 bash[21066]: cluster 2024-02-19T22:08:06.217748+0000 mgr.smithi044.ikbsam (mgr.14184) 587 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:08.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:07 smithi044 bash[16231]: cluster 2024-02-19T22:08:06.217748+0000 mgr.smithi044.ikbsam (mgr.14184) 587 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:08.507 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:09.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:08 smithi104 bash[21066]: audit 2024-02-19T22:08:07.844502+0000 mgr.smithi044.ikbsam (mgr.14184) 588 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:09.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:08 smithi044 bash[16231]: audit 2024-02-19T22:08:07.844502+0000 mgr.smithi044.ikbsam (mgr.14184) 588 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:09.509 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:10.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:09 smithi104 bash[21066]: cluster 2024-02-19T22:08:08.219541+0000 mgr.smithi044.ikbsam (mgr.14184) 589 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:10.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:09 smithi044 bash[16231]: cluster 2024-02-19T22:08:08.219541+0000 mgr.smithi044.ikbsam (mgr.14184) 589 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:12.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:11 smithi104 bash[21066]: cluster 2024-02-19T22:08:10.221428+0000 mgr.smithi044.ikbsam (mgr.14184) 590 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:12.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:11 smithi044 bash[16231]: cluster 2024-02-19T22:08:10.221428+0000 mgr.smithi044.ikbsam (mgr.14184) 590 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:12.940 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:12.940 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:13.621 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:13.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:13 smithi044 bash[16231]: cluster 2024-02-19T22:08:12.222865+0000 mgr.smithi044.ikbsam (mgr.14184) 591 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:13.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:13 smithi044 bash[16231]: audit 2024-02-19T22:08:12.931103+0000 mgr.smithi044.ikbsam (mgr.14184) 592 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:14.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:13 smithi104 bash[21066]: cluster 2024-02-19T22:08:12.222865+0000 mgr.smithi044.ikbsam (mgr.14184) 591 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:14.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:13 smithi104 bash[21066]: audit 2024-02-19T22:08:12.931103+0000 mgr.smithi044.ikbsam (mgr.14184) 592 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:14.622 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:16.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:15 smithi044 bash[16231]: cluster 2024-02-19T22:08:14.224528+0000 mgr.smithi044.ikbsam (mgr.14184) 593 : cluster [DBG] pgmap v442: 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-02-19T22:08:16.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:15 smithi104 bash[21066]: cluster 2024-02-19T22:08:14.224528+0000 mgr.smithi044.ikbsam (mgr.14184) 593 : cluster [DBG] pgmap v442: 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-02-19T22:08:17.861 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:17.861 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:18.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:17 smithi104 bash[21066]: cluster 2024-02-19T22:08:16.226360+0000 mgr.smithi044.ikbsam (mgr.14184) 594 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:18.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:17 smithi044 bash[16231]: cluster 2024-02-19T22:08:16.226360+0000 mgr.smithi044.ikbsam (mgr.14184) 594 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:18.516 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:19.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:18 smithi104 bash[21066]: audit 2024-02-19T22:08:17.848305+0000 mgr.smithi044.ikbsam (mgr.14184) 595 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:19.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:18 smithi044 bash[16231]: audit 2024-02-19T22:08:17.848305+0000 mgr.smithi044.ikbsam (mgr.14184) 595 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:19.517 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:20.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:19 smithi104 bash[21066]: cluster 2024-02-19T22:08:18.228386+0000 mgr.smithi044.ikbsam (mgr.14184) 596 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:20.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:19 smithi044 bash[16231]: cluster 2024-02-19T22:08:18.228386+0000 mgr.smithi044.ikbsam (mgr.14184) 596 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.180772+0000 mon.smithi044 (mon.0) 803 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.479709+0000 mon.smithi044 (mon.0) 804 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.481008+0000 mon.smithi044 (mon.0) 805 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.484778+0000 mon.smithi044 (mon.0) 806 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.485293+0000 mon.smithi044 (mon.0) 807 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.486526+0000 mon.smithi044 (mon.0) 808 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.486916+0000 mon.smithi044 (mon.0) 809 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.488678+0000 mon.smithi044 (mon.0) 810 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.966 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.493143+0000 mon.smithi044 (mon.0) 811 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.496049+0000 mon.smithi044 (mon.0) 812 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.504386+0000 mon.smithi044 (mon.0) 813 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.505784+0000 mon.smithi044 (mon.0) 814 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.507209+0000 mon.smithi044 (mon.0) 815 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.515579+0000 mon.smithi044 (mon.0) 816 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.521362+0000 mon.smithi044 (mon.0) 817 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:08:20.967 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:20 smithi044 bash[16231]: audit 2024-02-19T22:08:20.534235+0000 mon.smithi044 (mon.0) 818 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.180772+0000 mon.smithi044 (mon.0) 803 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.479709+0000 mon.smithi044 (mon.0) 804 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.481008+0000 mon.smithi044 (mon.0) 805 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.484778+0000 mon.smithi044 (mon.0) 806 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.485293+0000 mon.smithi044 (mon.0) 807 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.486526+0000 mon.smithi044 (mon.0) 808 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.486916+0000 mon.smithi044 (mon.0) 809 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.488678+0000 mon.smithi044 (mon.0) 810 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.493143+0000 mon.smithi044 (mon.0) 811 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.496049+0000 mon.smithi044 (mon.0) 812 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.504386+0000 mon.smithi044 (mon.0) 813 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.505784+0000 mon.smithi044 (mon.0) 814 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:08:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.507209+0000 mon.smithi044 (mon.0) 815 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:08:21.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.515579+0000 mon.smithi044 (mon.0) 816 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:21.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.521362+0000 mon.smithi044 (mon.0) 817 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:08:21.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:20 smithi104 bash[21066]: audit 2024-02-19T22:08:20.534235+0000 mon.smithi044 (mon.0) 818 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cluster 2024-02-19T22:08:20.230313+0000 mgr.smithi044.ikbsam (mgr.14184) 597 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cephadm 2024-02-19T22:08:20.487653+0000 mgr.smithi044.ikbsam (mgr.14184) 598 : cephadm [INF] Adjusting osd_memory_target on smithi044 to 3018M 2024-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cephadm 2024-02-19T22:08:20.496975+0000 mgr.smithi044.ikbsam (mgr.14184) 599 : cephadm [INF] Adjusting osd_memory_target on smithi104 to 3529M 2024-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cluster 2024-02-19T22:08:20.516390+0000 mgr.smithi044.ikbsam (mgr.14184) 600 : cluster [DBG] pgmap v446: 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-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cephadm 2024-02-19T22:08:20.537773+0000 mgr.smithi044.ikbsam (mgr.14184) 601 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.fczeqn on smithi104 2024-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cluster 2024-02-19T22:08:20.830588+0000 mon.smithi044 (mon.0) 819 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:08:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:21 smithi104 bash[21066]: cluster 2024-02-19T22:08:20.830658+0000 mon.smithi044 (mon.0) 820 : cluster [INF] Cluster is now healthy 2024-02-19T22:08:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cluster 2024-02-19T22:08:20.230313+0000 mgr.smithi044.ikbsam (mgr.14184) 597 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:08:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cephadm 2024-02-19T22:08:20.487653+0000 mgr.smithi044.ikbsam (mgr.14184) 598 : cephadm [INF] Adjusting osd_memory_target on smithi044 to 3018M 2024-02-19T22:08:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cephadm 2024-02-19T22:08:20.496975+0000 mgr.smithi044.ikbsam (mgr.14184) 599 : cephadm [INF] Adjusting osd_memory_target on smithi104 to 3529M 2024-02-19T22:08:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cluster 2024-02-19T22:08:20.516390+0000 mgr.smithi044.ikbsam (mgr.14184) 600 : cluster [DBG] pgmap v446: 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-02-19T22:08:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cephadm 2024-02-19T22:08:20.537773+0000 mgr.smithi044.ikbsam (mgr.14184) 601 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.fczeqn on smithi104 2024-02-19T22:08:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cluster 2024-02-19T22:08:20.830588+0000 mon.smithi044 (mon.0) 819 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:08:22.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:21 smithi044 bash[16231]: cluster 2024-02-19T22:08:20.830658+0000 mon.smithi044 (mon.0) 820 : cluster [INF] Cluster is now healthy 2024-02-19T22:08:23.004 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:23.004 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:06:11.368827Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.abbjfy on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:23.627 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:23.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:23 smithi044 bash[16231]: cluster 2024-02-19T22:08:22.517387+0000 mgr.smithi044.ikbsam (mgr.14184) 602 : cluster [DBG] pgmap v447: 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-02-19T22:08:24.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:23 smithi104 bash[21066]: cluster 2024-02-19T22:08:22.517387+0000 mgr.smithi044.ikbsam (mgr.14184) 602 : cluster [DBG] pgmap v447: 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-02-19T22:08:24.628 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:24.863 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:24 smithi044 bash[16231]: audit 2024-02-19T22:08:22.990852+0000 mgr.smithi044.ikbsam (mgr.14184) 603 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:24.863 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:24 smithi044 bash[16231]: audit 2024-02-19T22:08:24.571653+0000 mon.smithi044 (mon.0) 821 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.fczeqn"}]: dispatch 2024-02-19T22:08:25.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:24 smithi104 bash[21066]: audit 2024-02-19T22:08:22.990852+0000 mgr.smithi044.ikbsam (mgr.14184) 603 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:24 smithi104 bash[21066]: audit 2024-02-19T22:08:24.571653+0000 mon.smithi044 (mon.0) 821 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.fczeqn"}]: dispatch 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: cluster 2024-02-19T22:08:24.518669+0000 mgr.smithi044.ikbsam (mgr.14184) 604 : cluster [DBG] pgmap v448: 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-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: cephadm 2024-02-19T22:08:24.570573+0000 mgr.smithi044.ikbsam (mgr.14184) 605 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.125 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.fczeqn ... 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.126 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.fczeqn ... 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: cephadm 2024-02-19T22:08:24.571073+0000 mgr.smithi044.ikbsam (mgr.14184) 606 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: cephadm 2024-02-19T22:08:24.573631+0000 mgr.smithi044.ikbsam (mgr.14184) 607 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:26.127 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.fczeqn ... 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:25 smithi044 bash[16231]: cephadm 2024-02-19T22:08:24.578616+0000 mgr.smithi044.ikbsam (mgr.14184) 608 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.stkldk on smithi044 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: cluster 2024-02-19T22:08:24.518669+0000 mgr.smithi044.ikbsam (mgr.14184) 604 : cluster [DBG] pgmap v448: 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-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: cephadm 2024-02-19T22:08:24.570573+0000 mgr.smithi044.ikbsam (mgr.14184) 605 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.fczeqn ... 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.fczeqn ... 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: cephadm 2024-02-19T22:08:24.571073+0000 mgr.smithi044.ikbsam (mgr.14184) 606 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: cephadm 2024-02-19T22:08:24.573631+0000 mgr.smithi044.ikbsam (mgr.14184) 607 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.fczeqn ... 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:26.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:25 smithi104 bash[21066]: cephadm 2024-02-19T22:08:24.578616+0000 mgr.smithi044.ikbsam (mgr.14184) 608 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.stkldk on smithi044 2024-02-19T22:08:28.039 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:28.039 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:15.764679Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.akgudh on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-akgudh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.akgudh\nDeploy daemon haproxy.nfs.foo.smithi104.akgudh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.168027Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.aflwwk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-aflwwk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.aflwwk\nDeploy daemon haproxy.nfs.foo.smithi044.aflwwk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:07:20.172254Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.aedtsy on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:28.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:27 smithi104 bash[21066]: cluster 2024-02-19T22:08:26.519511+0000 mgr.smithi044.ikbsam (mgr.14184) 609 : cluster [DBG] pgmap v449: 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-02-19T22:08:28.152 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:27 smithi044 bash[16231]: cluster 2024-02-19T22:08:26.519511+0000 mgr.smithi044.ikbsam (mgr.14184) 609 : cluster [DBG] pgmap v449: 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-02-19T22:08:28.813 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:29.814 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: audit 2024-02-19T22:08:28.023980+0000 mgr.smithi044.ikbsam (mgr.14184) 610 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cluster 2024-02-19T22:08:28.520800+0000 mgr.smithi044.ikbsam (mgr.14184) 611 : cluster [DBG] pgmap v450: 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-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: audit 2024-02-19T22:08:28.635970+0000 mon.smithi044 (mon.0) 822 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cephadm 2024-02-19T22:08:28.871775+0000 mgr.smithi044.ikbsam (mgr.14184) 612 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:29.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.stkldk ... 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:29.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.stkldk ... 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cephadm 2024-02-19T22:08:28.872052+0000 mgr.smithi044.ikbsam (mgr.14184) 613 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: audit 2024-02-19T22:08:28.875248+0000 mon.smithi044 (mon.0) 823 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.stkldk"}]: dispatch 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cephadm 2024-02-19T22:08:28.876300+0000 mgr.smithi044.ikbsam (mgr.14184) 614 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.stkldk ... 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cephadm 2024-02-19T22:08:28.878346+0000 mgr.smithi044.ikbsam (mgr.14184) 615 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cephadm 2024-02-19T22:08:28.880085+0000 mgr.smithi044.ikbsam (mgr.14184) 616 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: cluster 2024-02-19T22:08:28.881285+0000 mgr.smithi044.ikbsam (mgr.14184) 617 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 118 B/s rd, 0 op/s 2024-02-19T22:08:29.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:29 smithi044 bash[16231]: audit 2024-02-19T22:08:29.250601+0000 mon.smithi044 (mon.0) 824 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: audit 2024-02-19T22:08:28.023980+0000 mgr.smithi044.ikbsam (mgr.14184) 610 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cluster 2024-02-19T22:08:28.520800+0000 mgr.smithi044.ikbsam (mgr.14184) 611 : cluster [DBG] pgmap v450: 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-02-19T22:08:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: audit 2024-02-19T22:08:28.635970+0000 mon.smithi044 (mon.0) 822 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cephadm 2024-02-19T22:08:28.871775+0000 mgr.smithi044.ikbsam (mgr.14184) 612 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.stkldk ... 2024-02-19T22:08:30.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:30.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:30.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:30.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:30.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:30.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:08:30.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:08:30.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:08:30.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:08:30.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:08:30.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:30.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:30.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:30.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:30.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.stkldk ... 2024-02-19T22:08:30.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:30.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:30.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:30.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:30.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:30.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cephadm 2024-02-19T22:08:28.872052+0000 mgr.smithi044.ikbsam (mgr.14184) 613 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: audit 2024-02-19T22:08:28.875248+0000 mon.smithi044 (mon.0) 823 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.stkldk"}]: dispatch 2024-02-19T22:08:30.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cephadm 2024-02-19T22:08:28.876300+0000 mgr.smithi044.ikbsam (mgr.14184) 614 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:30.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:30.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk 2024-02-19T22:08:30.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.stkldk ... 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:08:30.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:08:30.137 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:08:30.137 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cephadm 2024-02-19T22:08:28.878346+0000 mgr.smithi044.ikbsam (mgr.14184) 615 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:08:30.137 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cephadm 2024-02-19T22:08:28.880085+0000 mgr.smithi044.ikbsam (mgr.14184) 616 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:08:30.137 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: cluster 2024-02-19T22:08:28.881285+0000 mgr.smithi044.ikbsam (mgr.14184) 617 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 118 B/s rd, 0 op/s 2024-02-19T22:08:30.137 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:29 smithi104 bash[21066]: audit 2024-02-19T22:08:29.250601+0000 mon.smithi044 (mon.0) 824 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:30.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:30 smithi044 bash[16231]: cluster 2024-02-19T22:08:29.870973+0000 mon.smithi044 (mon.0) 825 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:08:31.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:30 smithi104 bash[21066]: cluster 2024-02-19T22:08:29.870973+0000 mon.smithi044 (mon.0) 825 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:08:31.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:31 smithi044 bash[16231]: cluster 2024-02-19T22:08:30.882562+0000 mgr.smithi044.ikbsam (mgr.14184) 618 : cluster [DBG] pgmap v452: 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-02-19T22:08:32.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:31 smithi104 bash[21066]: cluster 2024-02-19T22:08:30.882562+0000 mgr.smithi044.ikbsam (mgr.14184) 618 : cluster [DBG] pgmap v452: 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-02-19T22:08:33.277 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:33.277 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:33.938 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:34.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:33 smithi104 bash[21066]: cluster 2024-02-19T22:08:32.885249+0000 mgr.smithi044.ikbsam (mgr.14184) 619 : cluster [DBG] pgmap v453: 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-02-19T22:08:34.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:33 smithi044 bash[16231]: cluster 2024-02-19T22:08:32.885249+0000 mgr.smithi044.ikbsam (mgr.14184) 619 : cluster [DBG] pgmap v453: 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-02-19T22:08:34.939 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:35.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:34 smithi104 bash[21066]: audit 2024-02-19T22:08:33.263534+0000 mgr.smithi044.ikbsam (mgr.14184) 620 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:35.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:34 smithi044 bash[16231]: audit 2024-02-19T22:08:33.263534+0000 mgr.smithi044.ikbsam (mgr.14184) 620 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:36.326 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:35 smithi044 bash[16231]: cluster 2024-02-19T22:08:34.887198+0000 mgr.smithi044.ikbsam (mgr.14184) 621 : cluster [DBG] pgmap v454: 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-02-19T22:08:36.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:35 smithi104 bash[21066]: cluster 2024-02-19T22:08:34.887198+0000 mgr.smithi044.ikbsam (mgr.14184) 621 : cluster [DBG] pgmap v454: 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-02-19T22:08:37.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:36 smithi104 bash[21066]: cluster 2024-02-19T22:08:36.888188+0000 mgr.smithi044.ikbsam (mgr.14184) 622 : cluster [DBG] pgmap v455: 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-02-19T22:08:37.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:36 smithi044 bash[16231]: cluster 2024-02-19T22:08:36.888188+0000 mgr.smithi044.ikbsam (mgr.14184) 622 : cluster [DBG] pgmap v455: 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-02-19T22:08:38.153 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:38.154 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:38.773 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:39.774 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:40.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:39 smithi044 bash[16231]: audit 2024-02-19T22:08:38.138992+0000 mgr.smithi044.ikbsam (mgr.14184) 623 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:40.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:39 smithi044 bash[16231]: cluster 2024-02-19T22:08:38.890046+0000 mgr.smithi044.ikbsam (mgr.14184) 624 : cluster [DBG] pgmap v456: 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-02-19T22:08:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:39 smithi104 bash[21066]: audit 2024-02-19T22:08:38.138992+0000 mgr.smithi044.ikbsam (mgr.14184) 623 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:39 smithi104 bash[21066]: cluster 2024-02-19T22:08:38.890046+0000 mgr.smithi044.ikbsam (mgr.14184) 624 : cluster [DBG] pgmap v456: 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-02-19T22:08:42.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:41 smithi104 bash[21066]: cluster 2024-02-19T22:08:40.892014+0000 mgr.smithi044.ikbsam (mgr.14184) 625 : 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-02-19T22:08:42.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:41 smithi044 bash[16231]: cluster 2024-02-19T22:08:40.892014+0000 mgr.smithi044.ikbsam (mgr.14184) 625 : 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-02-19T22:08:43.127 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:43.127 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:43.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:43 smithi104 bash[21066]: cluster 2024-02-19T22:08:42.894003+0000 mgr.smithi044.ikbsam (mgr.14184) 626 : 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-02-19T22:08:43.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:43 smithi044 bash[16231]: cluster 2024-02-19T22:08:42.894003+0000 mgr.smithi044.ikbsam (mgr.14184) 626 : 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-02-19T22:08:43.789 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:44.790 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:44.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:44 smithi044 bash[16231]: audit 2024-02-19T22:08:43.110184+0000 mgr.smithi044.ikbsam (mgr.14184) 627 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:44.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:44 smithi044 bash[16231]: audit 2024-02-19T22:08:43.636081+0000 mon.smithi044 (mon.0) 826 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:44 smithi104 bash[21066]: audit 2024-02-19T22:08:43.110184+0000 mgr.smithi044.ikbsam (mgr.14184) 627 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:44 smithi104 bash[21066]: audit 2024-02-19T22:08:43.636081+0000 mon.smithi044 (mon.0) 826 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:08:45.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:45 smithi044 bash[16231]: cluster 2024-02-19T22:08:44.895291+0000 mgr.smithi044.ikbsam (mgr.14184) 628 : 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-02-19T22:08:46.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:45 smithi104 bash[21066]: cluster 2024-02-19T22:08:44.895291+0000 mgr.smithi044.ikbsam (mgr.14184) 628 : 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-02-19T22:08:47.999 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:47.999 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:48.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:47 smithi104 bash[21066]: cluster 2024-02-19T22:08:46.896265+0000 mgr.smithi044.ikbsam (mgr.14184) 629 : 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-02-19T22:08:48.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:47 smithi044 bash[16231]: cluster 2024-02-19T22:08:46.896265+0000 mgr.smithi044.ikbsam (mgr.14184) 629 : 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-02-19T22:08:48.655 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:49 smithi104 bash[21066]: audit 2024-02-19T22:08:47.984219+0000 mgr.smithi044.ikbsam (mgr.14184) 630 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:49 smithi104 bash[21066]: cluster 2024-02-19T22:08:48.898091+0000 mgr.smithi044.ikbsam (mgr.14184) 631 : 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-02-19T22:08:49.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:49 smithi044 bash[16231]: audit 2024-02-19T22:08:47.984219+0000 mgr.smithi044.ikbsam (mgr.14184) 630 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:49.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:49 smithi044 bash[16231]: cluster 2024-02-19T22:08:48.898091+0000 mgr.smithi044.ikbsam (mgr.14184) 631 : 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-02-19T22:08:49.656 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:52.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:51 smithi104 bash[21066]: cluster 2024-02-19T22:08:50.899251+0000 mgr.smithi044.ikbsam (mgr.14184) 632 : 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-02-19T22:08:52.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:51 smithi044 bash[16231]: cluster 2024-02-19T22:08:50.899251+0000 mgr.smithi044.ikbsam (mgr.14184) 632 : 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-02-19T22:08:53.074 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:53.074 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:53.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:52 smithi104 bash[21066]: cluster 2024-02-19T22:08:52.900856+0000 mgr.smithi044.ikbsam (mgr.14184) 633 : 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-02-19T22:08:53.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:52 smithi044 bash[16231]: cluster 2024-02-19T22:08:52.900856+0000 mgr.smithi044.ikbsam (mgr.14184) 633 : 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-02-19T22:08:53.748 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:54.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:53 smithi044 bash[16231]: audit 2024-02-19T22:08:53.064342+0000 mgr.smithi044.ikbsam (mgr.14184) 634 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:54.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:53 smithi104 bash[21066]: audit 2024-02-19T22:08:53.064342+0000 mgr.smithi044.ikbsam (mgr.14184) 634 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:54.749 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:08:55.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:54 smithi044 bash[16231]: cluster 2024-02-19T22:08:54.902025+0000 mgr.smithi044.ikbsam (mgr.14184) 635 : 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-02-19T22:08:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:54 smithi104 bash[21066]: cluster 2024-02-19T22:08:54.902025+0000 mgr.smithi044.ikbsam (mgr.14184) 635 : 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-02-19T22:08:57.326 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:57 smithi044 bash[16231]: cluster 2024-02-19T22:08:56.902761+0000 mgr.smithi044.ikbsam (mgr.14184) 636 : 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-02-19T22:08:57.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:57 smithi104 bash[21066]: cluster 2024-02-19T22:08:56.902761+0000 mgr.smithi044.ikbsam (mgr.14184) 636 : 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-02-19T22:08:57.789 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:08:57.789 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:08:58.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:58 smithi044 bash[16231]: audit 2024-02-19T22:08:57.772095+0000 mgr.smithi044.ikbsam (mgr.14184) 637 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:58.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:58 smithi104 bash[21066]: audit 2024-02-19T22:08:57.772095+0000 mgr.smithi044.ikbsam (mgr.14184) 637 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:08:58.433 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:08:59.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:08:59 smithi104 bash[21066]: cluster 2024-02-19T22:08:58.904560+0000 mgr.smithi044.ikbsam (mgr.14184) 638 : 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-02-19T22:08:59.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:08:59 smithi044 bash[16231]: cluster 2024-02-19T22:08:58.904560+0000 mgr.smithi044.ikbsam (mgr.14184) 638 : 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-02-19T22:08:59.433 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:01.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:01 smithi044 bash[16231]: cluster 2024-02-19T22:09:00.906440+0000 mgr.smithi044.ikbsam (mgr.14184) 639 : 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-02-19T22:09:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:01 smithi104 bash[21066]: cluster 2024-02-19T22:09:00.906440+0000 mgr.smithi044.ikbsam (mgr.14184) 639 : 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-02-19T22:09:02.710 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:02.710 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:03 smithi104 bash[21066]: audit 2024-02-19T22:09:02.700540+0000 mgr.smithi044.ikbsam (mgr.14184) 640 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:03 smithi104 bash[21066]: cluster 2024-02-19T22:09:02.908006+0000 mgr.smithi044.ikbsam (mgr.14184) 641 : 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-02-19T22:09:03.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:03 smithi044 bash[16231]: audit 2024-02-19T22:09:02.700540+0000 mgr.smithi044.ikbsam (mgr.14184) 640 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:03.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:03 smithi044 bash[16231]: cluster 2024-02-19T22:09:02.908006+0000 mgr.smithi044.ikbsam (mgr.14184) 641 : 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-02-19T22:09:03.355 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:04.356 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:05 smithi104 bash[21066]: cluster 2024-02-19T22:09:04.910070+0000 mgr.smithi044.ikbsam (mgr.14184) 642 : 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-02-19T22:09:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:05 smithi044 bash[16231]: cluster 2024-02-19T22:09:04.910070+0000 mgr.smithi044.ikbsam (mgr.14184) 642 : 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-02-19T22:09:07.349 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:07 smithi044 bash[16231]: cluster 2024-02-19T22:09:06.911148+0000 mgr.smithi044.ikbsam (mgr.14184) 643 : 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-02-19T22:09:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:07 smithi104 bash[21066]: cluster 2024-02-19T22:09:06.911148+0000 mgr.smithi044.ikbsam (mgr.14184) 643 : 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-02-19T22:09:07.786 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:07.786 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:08.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:08 smithi044 bash[16231]: audit 2024-02-19T22:09:07.768517+0000 mgr.smithi044.ikbsam (mgr.14184) 644 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:08.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:08 smithi104 bash[21066]: audit 2024-02-19T22:09:07.768517+0000 mgr.smithi044.ikbsam (mgr.14184) 644 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:08.460 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:09.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:09 smithi104 bash[21066]: cluster 2024-02-19T22:09:08.912889+0000 mgr.smithi044.ikbsam (mgr.14184) 645 : 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-02-19T22:09:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:09 smithi044 bash[16231]: cluster 2024-02-19T22:09:08.912889+0000 mgr.smithi044.ikbsam (mgr.14184) 645 : 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-02-19T22:09:09.462 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:11.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:11 smithi044 bash[16231]: cluster 2024-02-19T22:09:10.914750+0000 mgr.smithi044.ikbsam (mgr.14184) 646 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:11 smithi104 bash[21066]: cluster 2024-02-19T22:09:10.914750+0000 mgr.smithi044.ikbsam (mgr.14184) 646 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:12.718 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:12.718 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:13 smithi104 bash[21066]: audit 2024-02-19T22:09:12.704159+0000 mgr.smithi044.ikbsam (mgr.14184) 647 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:13 smithi104 bash[21066]: cluster 2024-02-19T22:09:12.916301+0000 mgr.smithi044.ikbsam (mgr.14184) 648 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:13 smithi044 bash[16231]: audit 2024-02-19T22:09:12.704159+0000 mgr.smithi044.ikbsam (mgr.14184) 647 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:13 smithi044 bash[16231]: cluster 2024-02-19T22:09:12.916301+0000 mgr.smithi044.ikbsam (mgr.14184) 648 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:13.378 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:14.379 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:15.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:15 smithi104 bash[21066]: cluster 2024-02-19T22:09:14.918306+0000 mgr.smithi044.ikbsam (mgr.14184) 649 : cluster [DBG] pgmap v474: 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-02-19T22:09:15.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:15 smithi044 bash[16231]: cluster 2024-02-19T22:09:14.918306+0000 mgr.smithi044.ikbsam (mgr.14184) 649 : cluster [DBG] pgmap v474: 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-02-19T22:09:17.321 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:17 smithi044 bash[16231]: cluster 2024-02-19T22:09:16.919439+0000 mgr.smithi044.ikbsam (mgr.14184) 650 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:17.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:17 smithi104 bash[21066]: cluster 2024-02-19T22:09:16.919439+0000 mgr.smithi044.ikbsam (mgr.14184) 650 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:17.683 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:17.683 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:18.275 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:18 smithi044 bash[16231]: audit 2024-02-19T22:09:17.671823+0000 mgr.smithi044.ikbsam (mgr.14184) 651 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:18.276 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:18.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:18 smithi104 bash[21066]: audit 2024-02-19T22:09:17.671823+0000 mgr.smithi044.ikbsam (mgr.14184) 651 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:19.277 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:19.290 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:19 smithi044 bash[16231]: cluster 2024-02-19T22:09:18.921197+0000 mgr.smithi044.ikbsam (mgr.14184) 652 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:19 smithi104 bash[21066]: cluster 2024-02-19T22:09:18.921197+0000 mgr.smithi044.ikbsam (mgr.14184) 652 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:21.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:21 smithi104 bash[21066]: cluster 2024-02-19T22:09:20.923138+0000 mgr.smithi044.ikbsam (mgr.14184) 653 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:21.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:21 smithi044 bash[16231]: cluster 2024-02-19T22:09:20.923138+0000 mgr.smithi044.ikbsam (mgr.14184) 653 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:22.656 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:22.657 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:23.317 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:23.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:23 smithi044 bash[16231]: audit 2024-02-19T22:09:22.641015+0000 mgr.smithi044.ikbsam (mgr.14184) 654 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:23.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:23 smithi044 bash[16231]: cluster 2024-02-19T22:09:22.924711+0000 mgr.smithi044.ikbsam (mgr.14184) 655 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:23.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:23 smithi104 bash[21066]: audit 2024-02-19T22:09:22.641015+0000 mgr.smithi044.ikbsam (mgr.14184) 654 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:23.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:23 smithi104 bash[21066]: cluster 2024-02-19T22:09:22.924711+0000 mgr.smithi044.ikbsam (mgr.14184) 655 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:24.318 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:25 smithi104 bash[21066]: cluster 2024-02-19T22:09:24.926734+0000 mgr.smithi044.ikbsam (mgr.14184) 656 : cluster [DBG] pgmap v479: 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-02-19T22:09:25.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:25 smithi044 bash[16231]: cluster 2024-02-19T22:09:24.926734+0000 mgr.smithi044.ikbsam (mgr.14184) 656 : cluster [DBG] pgmap v479: 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-02-19T22:09:27.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:27 smithi104 bash[21066]: cluster 2024-02-19T22:09:26.927797+0000 mgr.smithi044.ikbsam (mgr.14184) 657 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:27.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:27 smithi044 bash[16231]: cluster 2024-02-19T22:09:26.927797+0000 mgr.smithi044.ikbsam (mgr.14184) 657 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:27.485 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:27.485 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:28.148 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:28.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:28 smithi104 bash[21066]: audit 2024-02-19T22:09:27.475747+0000 mgr.smithi044.ikbsam (mgr.14184) 658 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:28.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:28 smithi044 bash[16231]: audit 2024-02-19T22:09:27.475747+0000 mgr.smithi044.ikbsam (mgr.14184) 658 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:29.149 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:29.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:29 smithi104 bash[21066]: audit 2024-02-19T22:09:28.884429+0000 mon.smithi044 (mon.0) 827 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:09:29.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:29 smithi104 bash[21066]: cluster 2024-02-19T22:09:28.929084+0000 mgr.smithi044.ikbsam (mgr.14184) 659 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:29.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:29 smithi044 bash[16231]: audit 2024-02-19T22:09:28.884429+0000 mon.smithi044 (mon.0) 827 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:09:29.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:29 smithi044 bash[16231]: cluster 2024-02-19T22:09:28.929084+0000 mgr.smithi044.ikbsam (mgr.14184) 659 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:30.376 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: audit 2024-02-19T22:09:29.225517+0000 mon.smithi044 (mon.0) 828 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:09:30.377 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: audit 2024-02-19T22:09:29.226853+0000 mon.smithi044 (mon.0) 829 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:09:30.377 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: audit 2024-02-19T22:09:29.235368+0000 mon.smithi044 (mon.0) 830 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:09:30.377 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: cluster 2024-02-19T22:09:29.237229+0000 mgr.smithi044.ikbsam (mgr.14184) 660 : cluster [DBG] pgmap v482: 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-02-19T22:09:30.377 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: audit 2024-02-19T22:09:29.245511+0000 mon.smithi044 (mon.0) 831 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:09:30.377 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: audit 2024-02-19T22:09:29.262792+0000 mon.smithi044 (mon.0) 832 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:09:30.377 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:30 smithi044 bash[16231]: cephadm 2024-02-19T22:09:29.267057+0000 mgr.smithi044.ikbsam (mgr.14184) 661 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.sboxxt on smithi104 2024-02-19T22:09:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: audit 2024-02-19T22:09:29.225517+0000 mon.smithi044 (mon.0) 828 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:09:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: audit 2024-02-19T22:09:29.226853+0000 mon.smithi044 (mon.0) 829 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:09:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: audit 2024-02-19T22:09:29.235368+0000 mon.smithi044 (mon.0) 830 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:09:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: cluster 2024-02-19T22:09:29.237229+0000 mgr.smithi044.ikbsam (mgr.14184) 660 : cluster [DBG] pgmap v482: 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-02-19T22:09:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: audit 2024-02-19T22:09:29.245511+0000 mon.smithi044 (mon.0) 831 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:09:30.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: audit 2024-02-19T22:09:29.262792+0000 mon.smithi044 (mon.0) 832 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:09:30.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:30 smithi104 bash[21066]: cephadm 2024-02-19T22:09:29.267057+0000 mgr.smithi044.ikbsam (mgr.14184) 661 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.sboxxt on smithi104 2024-02-19T22:09:31.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:31 smithi104 bash[21066]: cluster 2024-02-19T22:09:30.232125+0000 mon.smithi044 (mon.0) 833 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:09:31.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:31 smithi104 bash[21066]: cluster 2024-02-19T22:09:30.232187+0000 mon.smithi044 (mon.0) 834 : cluster [INF] Cluster is now healthy 2024-02-19T22:09:31.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:31 smithi044 bash[16231]: cluster 2024-02-19T22:09:30.232125+0000 mon.smithi044 (mon.0) 833 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:09:31.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:31 smithi044 bash[16231]: cluster 2024-02-19T22:09:30.232187+0000 mon.smithi044 (mon.0) 834 : cluster [INF] Cluster is now healthy 2024-02-19T22:09:32.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:32 smithi104 bash[21066]: cluster 2024-02-19T22:09:31.238400+0000 mgr.smithi044.ikbsam (mgr.14184) 662 : cluster [DBG] pgmap v483: 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-02-19T22:09:32.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:32 smithi044 bash[16231]: cluster 2024-02-19T22:09:31.238400+0000 mgr.smithi044.ikbsam (mgr.14184) 662 : cluster [DBG] pgmap v483: 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-02-19T22:09:32.625 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:32.625 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:07:20.176474Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.kckslp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:24.573309Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.fczeqn on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-fczeqn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.fczeqn\nDeploy daemon haproxy.nfs.foo.smithi104.fczeqn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.876152Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.stkldk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-stkldk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.stkldk\nDeploy daemon haproxy.nfs.foo.smithi044.stkldk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:08:28.878223Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.faigwz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:33.299 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:33.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:33 smithi104 bash[21066]: audit 2024-02-19T22:09:32.607643+0000 mgr.smithi044.ikbsam (mgr.14184) 663 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:33.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:33 smithi044 bash[16231]: audit 2024-02-19T22:09:32.607643+0000 mgr.smithi044.ikbsam (mgr.14184) 663 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:34.300 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: cluster 2024-02-19T22:09:33.239881+0000 mgr.smithi044.ikbsam (mgr.14184) 664 : cluster [DBG] pgmap v484: 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-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: cephadm 2024-02-19T22:09:33.263175+0000 mgr.smithi044.ikbsam (mgr.14184) 665 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:34.315 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.316 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: cephadm 2024-02-19T22:09:33.263643+0000 mgr.smithi044.ikbsam (mgr.14184) 666 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: audit 2024-02-19T22:09:33.264323+0000 mon.smithi044 (mon.0) 835 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.sboxxt"}]: dispatch 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: cephadm 2024-02-19T22:09:33.266066+0000 mgr.smithi044.ikbsam (mgr.14184) 667 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:34.317 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.318 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:34 smithi044 bash[16231]: cephadm 2024-02-19T22:09:33.269717+0000 mgr.smithi044.ikbsam (mgr.14184) 668 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.edlmkk on smithi044 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: cluster 2024-02-19T22:09:33.239881+0000 mgr.smithi044.ikbsam (mgr.14184) 664 : cluster [DBG] pgmap v484: 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-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: cephadm 2024-02-19T22:09:33.263175+0000 mgr.smithi044.ikbsam (mgr.14184) 665 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:34.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: cephadm 2024-02-19T22:09:33.263643+0000 mgr.smithi044.ikbsam (mgr.14184) 666 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: audit 2024-02-19T22:09:33.264323+0000 mon.smithi044 (mon.0) 835 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.sboxxt"}]: dispatch 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: cephadm 2024-02-19T22:09:33.266066+0000 mgr.smithi044.ikbsam (mgr.14184) 667 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:34.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:34 smithi104 bash[21066]: cephadm 2024-02-19T22:09:33.269717+0000 mgr.smithi044.ikbsam (mgr.14184) 668 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.edlmkk on smithi044 2024-02-19T22:09:36.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:36 smithi104 bash[21066]: cluster 2024-02-19T22:09:35.241529+0000 mgr.smithi044.ikbsam (mgr.14184) 669 : cluster [DBG] pgmap v485: 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-02-19T22:09:36.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:36 smithi044 bash[16231]: cluster 2024-02-19T22:09:35.241529+0000 mgr.smithi044.ikbsam (mgr.14184) 669 : cluster [DBG] pgmap v485: 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-02-19T22:09:37.454 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:37 smithi044 bash[16231]: audit 2024-02-19T22:09:37.290302+0000 mon.smithi044 (mon.0) 836 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.edlmkk"}]: dispatch 2024-02-19T22:09:37.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:37 smithi104 bash[21066]: audit 2024-02-19T22:09:37.290302+0000 mon.smithi044 (mon.0) 836 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.edlmkk"}]: dispatch 2024-02-19T22:09:37.930 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:37.931 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:38.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cluster 2024-02-19T22:09:37.242742+0000 mgr.smithi044.ikbsam (mgr.14184) 670 : cluster [DBG] pgmap v486: 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-02-19T22:09:38.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cephadm 2024-02-19T22:09:37.289584+0000 mgr.smithi044.ikbsam (mgr.14184) 671 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:38.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:38.615 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.616 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.616 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:38.616 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.616 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:09:38.617 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:38.617 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.617 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:38.617 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:38.617 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:38.617 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.617 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cephadm 2024-02-19T22:09:37.289824+0000 mgr.smithi044.ikbsam (mgr.14184) 672 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cephadm 2024-02-19T22:09:37.291555+0000 mgr.smithi044.ikbsam (mgr.14184) 673 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cephadm 2024-02-19T22:09:37.293554+0000 mgr.smithi044.ikbsam (mgr.14184) 674 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cephadm 2024-02-19T22:09:37.295428+0000 mgr.smithi044.ikbsam (mgr.14184) 675 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:09:38.618 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cluster 2024-02-19T22:09:37.296388+0000 mgr.smithi044.ikbsam (mgr.14184) 676 : cluster [DBG] pgmap v487: 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-02-19T22:09:38.619 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: cluster 2024-02-19T22:09:37.301575+0000 mon.smithi044 (mon.0) 837 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:09:38.619 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:38 smithi044 bash[16231]: audit 2024-02-19T22:09:37.914857+0000 mgr.smithi044.ikbsam (mgr.14184) 677 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cluster 2024-02-19T22:09:37.242742+0000 mgr.smithi044.ikbsam (mgr.14184) 670 : cluster [DBG] pgmap v486: 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-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cephadm 2024-02-19T22:09:37.289584+0000 mgr.smithi044.ikbsam (mgr.14184) 671 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:38.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cephadm 2024-02-19T22:09:37.289824+0000 mgr.smithi044.ikbsam (mgr.14184) 672 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cephadm 2024-02-19T22:09:37.291555+0000 mgr.smithi044.ikbsam (mgr.14184) 673 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:09:38.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cephadm 2024-02-19T22:09:37.293554+0000 mgr.smithi044.ikbsam (mgr.14184) 674 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cephadm 2024-02-19T22:09:37.295428+0000 mgr.smithi044.ikbsam (mgr.14184) 675 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cluster 2024-02-19T22:09:37.296388+0000 mgr.smithi044.ikbsam (mgr.14184) 676 : cluster [DBG] pgmap v487: 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-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: cluster 2024-02-19T22:09:37.301575+0000 mon.smithi044 (mon.0) 837 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:09:38.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:38 smithi104 bash[21066]: audit 2024-02-19T22:09:37.914857+0000 mgr.smithi044.ikbsam (mgr.14184) 677 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:39.618 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:40.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:40 smithi104 bash[21066]: cluster 2024-02-19T22:09:39.298044+0000 mgr.smithi044.ikbsam (mgr.14184) 678 : cluster [DBG] pgmap v488: 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-02-19T22:09:40.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:40 smithi104 bash[21066]: audit 2024-02-19T22:09:39.313324+0000 mon.smithi044 (mon.0) 838 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:09:40.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:40 smithi044 bash[16231]: cluster 2024-02-19T22:09:39.298044+0000 mgr.smithi044.ikbsam (mgr.14184) 678 : cluster [DBG] pgmap v488: 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-02-19T22:09:40.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:40 smithi044 bash[16231]: audit 2024-02-19T22:09:39.313324+0000 mon.smithi044 (mon.0) 838 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:09:42.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:42 smithi104 bash[21066]: cluster 2024-02-19T22:09:41.299661+0000 mgr.smithi044.ikbsam (mgr.14184) 679 : cluster [DBG] pgmap v489: 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-02-19T22:09:42.641 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:42 smithi044 bash[16231]: cluster 2024-02-19T22:09:41.299661+0000 mgr.smithi044.ikbsam (mgr.14184) 679 : cluster [DBG] pgmap v489: 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-02-19T22:09:42.991 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:42.991 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:43.660 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:44.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:44 smithi104 bash[21066]: audit 2024-02-19T22:09:42.981813+0000 mgr.smithi044.ikbsam (mgr.14184) 680 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:44.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:44 smithi104 bash[21066]: cluster 2024-02-19T22:09:43.301545+0000 mgr.smithi044.ikbsam (mgr.14184) 681 : cluster [DBG] pgmap v490: 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-02-19T22:09:44.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:44 smithi044 bash[16231]: audit 2024-02-19T22:09:42.981813+0000 mgr.smithi044.ikbsam (mgr.14184) 680 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:44.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:44 smithi044 bash[16231]: cluster 2024-02-19T22:09:43.301545+0000 mgr.smithi044.ikbsam (mgr.14184) 681 : cluster [DBG] pgmap v490: 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-02-19T22:09:44.661 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:46.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:46 smithi044 bash[16231]: cluster 2024-02-19T22:09:45.303444+0000 mgr.smithi044.ikbsam (mgr.14184) 682 : cluster [DBG] pgmap v491: 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-02-19T22:09:46.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:46 smithi104 bash[21066]: cluster 2024-02-19T22:09:45.303444+0000 mgr.smithi044.ikbsam (mgr.14184) 682 : cluster [DBG] pgmap v491: 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-02-19T22:09:48.031 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:48.031 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:48.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:48 smithi044 bash[16231]: cluster 2024-02-19T22:09:47.304943+0000 mgr.smithi044.ikbsam (mgr.14184) 683 : cluster [DBG] pgmap v492: 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-02-19T22:09:48.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:48 smithi104 bash[21066]: cluster 2024-02-19T22:09:47.304943+0000 mgr.smithi044.ikbsam (mgr.14184) 683 : cluster [DBG] pgmap v492: 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-02-19T22:09:48.643 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:49.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:49 smithi104 bash[21066]: audit 2024-02-19T22:09:48.013461+0000 mgr.smithi044.ikbsam (mgr.14184) 684 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:49.644 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:49.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:49 smithi044 bash[16231]: audit 2024-02-19T22:09:48.013461+0000 mgr.smithi044.ikbsam (mgr.14184) 684 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:50.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:50 smithi104 bash[21066]: cluster 2024-02-19T22:09:49.306553+0000 mgr.smithi044.ikbsam (mgr.14184) 685 : 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-02-19T22:09:50.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:50 smithi044 bash[16231]: cluster 2024-02-19T22:09:49.306553+0000 mgr.smithi044.ikbsam (mgr.14184) 685 : 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-02-19T22:09:52.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:52 smithi104 bash[21066]: cluster 2024-02-19T22:09:51.308173+0000 mgr.smithi044.ikbsam (mgr.14184) 686 : 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-02-19T22:09:52.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:52 smithi044 bash[16231]: cluster 2024-02-19T22:09:51.308173+0000 mgr.smithi044.ikbsam (mgr.14184) 686 : 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-02-19T22:09:52.924 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:52.924 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:53.549 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:53.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:53 smithi104 bash[21066]: audit 2024-02-19T22:09:52.906841+0000 mgr.smithi044.ikbsam (mgr.14184) 687 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:53.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:53 smithi044 bash[16231]: audit 2024-02-19T22:09:52.906841+0000 mgr.smithi044.ikbsam (mgr.14184) 687 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:54.550 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:09:54.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:54 smithi104 bash[21066]: cluster 2024-02-19T22:09:53.310099+0000 mgr.smithi044.ikbsam (mgr.14184) 688 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:54.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:54 smithi044 bash[16231]: cluster 2024-02-19T22:09:53.310099+0000 mgr.smithi044.ikbsam (mgr.14184) 688 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:09:56.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:56 smithi044 bash[16231]: cluster 2024-02-19T22:09:55.312000+0000 mgr.smithi044.ikbsam (mgr.14184) 689 : cluster [DBG] pgmap v496: 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-02-19T22:09:56.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:56 smithi104 bash[21066]: cluster 2024-02-19T22:09:55.312000+0000 mgr.smithi044.ikbsam (mgr.14184) 689 : cluster [DBG] pgmap v496: 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-02-19T22:09:57.911 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:09:57.911 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:09:58.568 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:09:58.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:58 smithi044 bash[16231]: cluster 2024-02-19T22:09:57.313416+0000 mgr.smithi044.ikbsam (mgr.14184) 690 : 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-02-19T22:09:58.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:09:58 smithi044 bash[16231]: audit 2024-02-19T22:09:57.893741+0000 mgr.smithi044.ikbsam (mgr.14184) 691 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:58.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:58 smithi104 bash[21066]: cluster 2024-02-19T22:09:57.313416+0000 mgr.smithi044.ikbsam (mgr.14184) 690 : 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-02-19T22:09:58.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:09:58 smithi104 bash[21066]: audit 2024-02-19T22:09:57.893741+0000 mgr.smithi044.ikbsam (mgr.14184) 691 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:09:59.569 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:00.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:09:59.315061+0000 mgr.smithi044.ikbsam (mgr.14184) 692 : 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-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000194+0000 mon.smithi044 (mon.0) 839 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000256+0000 mon.smithi044 (mon.0) 840 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000314+0000 mon.smithi044 (mon.0) 841 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000350+0000 mon.smithi044 (mon.0) 842 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000391+0000 mon.smithi044 (mon.0) 843 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000432+0000 mon.smithi044 (mon.0) 844 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000474+0000 mon.smithi044 (mon.0) 845 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000517+0000 mon.smithi044 (mon.0) 846 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000563+0000 mon.smithi044 (mon.0) 847 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000595+0000 mon.smithi044 (mon.0) 848 : 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=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000633+0000 mon.smithi044 (mon.0) 849 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000678+0000 mon.smithi044 (mon.0) 850 : 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-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000718+0000 mon.smithi044 (mon.0) 851 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000754+0000 mon.smithi044 (mon.0) 852 : 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=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000815+0000 mon.smithi044 (mon.0) 853 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000864+0000 mon.smithi044 (mon.0) 854 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000907+0000 mon.smithi044 (mon.0) 855 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000952+0000 mon.smithi044 (mon.0) 856 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.000986+0000 mon.smithi044 (mon.0) 857 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001053+0000 mon.smithi044 (mon.0) 858 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001108+0000 mon.smithi044 (mon.0) 859 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001152+0000 mon.smithi044 (mon.0) 860 : 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=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001190+0000 mon.smithi044 (mon.0) 861 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001230+0000 mon.smithi044 (mon.0) 862 : 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-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001271+0000 mon.smithi044 (mon.0) 863 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-19T22:10:00.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001314+0000 mon.smithi044 (mon.0) 864 : 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=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001347+0000 mon.smithi044 (mon.0) 865 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:00.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:00.001387+0000 mon.smithi044 (mon.0) 866 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:00.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:09:59.315061+0000 mgr.smithi044.ikbsam (mgr.14184) 692 : 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-02-19T22:10:00.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000194+0000 mon.smithi044 (mon.0) 839 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-02-19T22:10:00.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000256+0000 mon.smithi044 (mon.0) 840 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000314+0000 mon.smithi044 (mon.0) 841 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000350+0000 mon.smithi044 (mon.0) 842 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000391+0000 mon.smithi044 (mon.0) 843 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000432+0000 mon.smithi044 (mon.0) 844 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000474+0000 mon.smithi044 (mon.0) 845 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000517+0000 mon.smithi044 (mon.0) 846 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000563+0000 mon.smithi044 (mon.0) 847 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi104.sboxxt ... 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000595+0000 mon.smithi044 (mon.0) 848 : 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=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000633+0000 mon.smithi044 (mon.0) 849 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000678+0000 mon.smithi044 (mon.0) 850 : 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-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000718+0000 mon.smithi044 (mon.0) 851 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000754+0000 mon.smithi044 (mon.0) 852 : 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=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000815+0000 mon.smithi044 (mon.0) 853 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000864+0000 mon.smithi044 (mon.0) 854 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000907+0000 mon.smithi044 (mon.0) 855 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk 2024-02-19T22:10:00.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000952+0000 mon.smithi044 (mon.0) 856 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.000986+0000 mon.smithi044 (mon.0) 857 : cluster [WRN] /usr/bin/docker: stdout 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001053+0000 mon.smithi044 (mon.0) 858 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001108+0000 mon.smithi044 (mon.0) 859 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi044.edlmkk ... 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001152+0000 mon.smithi044 (mon.0) 860 : 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=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001190+0000 mon.smithi044 (mon.0) 861 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001230+0000 mon.smithi044 (mon.0) 862 : 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-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001271+0000 mon.smithi044 (mon.0) 863 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001314+0000 mon.smithi044 (mon.0) 864 : 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=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001347+0000 mon.smithi044 (mon.0) 865 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:00.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:00.001387+0000 mon.smithi044 (mon.0) 866 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:02.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:02 smithi044 bash[16231]: cluster 2024-02-19T22:10:01.317190+0000 mgr.smithi044.ikbsam (mgr.14184) 693 : 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-02-19T22:10:02.783 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:02 smithi104 bash[21066]: cluster 2024-02-19T22:10:01.317190+0000 mgr.smithi044.ikbsam (mgr.14184) 693 : 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-02-19T22:10:02.879 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:02.879 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:03.556 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:03.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:03 smithi044 bash[16231]: audit 2024-02-19T22:10:02.864185+0000 mgr.smithi044.ikbsam (mgr.14184) 694 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:03.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:03 smithi104 bash[21066]: audit 2024-02-19T22:10:02.864185+0000 mgr.smithi044.ikbsam (mgr.14184) 694 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:04.557 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:04.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:04 smithi104 bash[21066]: cluster 2024-02-19T22:10:03.318987+0000 mgr.smithi044.ikbsam (mgr.14184) 695 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:04.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:04 smithi044 bash[16231]: cluster 2024-02-19T22:10:03.318987+0000 mgr.smithi044.ikbsam (mgr.14184) 695 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:06.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:06 smithi104 bash[21066]: cluster 2024-02-19T22:10:05.320461+0000 mgr.smithi044.ikbsam (mgr.14184) 696 : cluster [DBG] pgmap v501: 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-02-19T22:10:06.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:06 smithi044 bash[16231]: cluster 2024-02-19T22:10:05.320461+0000 mgr.smithi044.ikbsam (mgr.14184) 696 : cluster [DBG] pgmap v501: 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-02-19T22:10:08.207 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:08.207 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:08.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:08 smithi044 bash[16231]: cluster 2024-02-19T22:10:07.321904+0000 mgr.smithi044.ikbsam (mgr.14184) 697 : 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-02-19T22:10:08.838 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:08.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:08 smithi104 bash[21066]: cluster 2024-02-19T22:10:07.321904+0000 mgr.smithi044.ikbsam (mgr.14184) 697 : 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-02-19T22:10:09.839 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:09.851 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:09 smithi044 bash[16231]: audit 2024-02-19T22:10:08.190310+0000 mgr.smithi044.ikbsam (mgr.14184) 698 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:09.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:09 smithi104 bash[21066]: audit 2024-02-19T22:10:08.190310+0000 mgr.smithi044.ikbsam (mgr.14184) 698 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:10.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:10 smithi104 bash[21066]: cluster 2024-02-19T22:10:09.323530+0000 mgr.smithi044.ikbsam (mgr.14184) 699 : 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-02-19T22:10:10.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:10 smithi044 bash[16231]: cluster 2024-02-19T22:10:09.323530+0000 mgr.smithi044.ikbsam (mgr.14184) 699 : 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-02-19T22:10:12.747 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:12 smithi044 bash[16231]: cluster 2024-02-19T22:10:11.325265+0000 mgr.smithi044.ikbsam (mgr.14184) 700 : 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-02-19T22:10:12.783 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:12 smithi104 bash[21066]: cluster 2024-02-19T22:10:11.325265+0000 mgr.smithi044.ikbsam (mgr.14184) 700 : 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-02-19T22:10:13.191 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:13.192 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:13.826 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:14.827 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:14.840 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:14 smithi044 bash[16231]: audit 2024-02-19T22:10:13.173795+0000 mgr.smithi044.ikbsam (mgr.14184) 701 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:14.840 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:14 smithi044 bash[16231]: cluster 2024-02-19T22:10:13.326917+0000 mgr.smithi044.ikbsam (mgr.14184) 702 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:14.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:14 smithi104 bash[21066]: audit 2024-02-19T22:10:13.173795+0000 mgr.smithi044.ikbsam (mgr.14184) 701 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:14.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:14 smithi104 bash[21066]: cluster 2024-02-19T22:10:13.326917+0000 mgr.smithi044.ikbsam (mgr.14184) 702 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:16.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:16 smithi044 bash[16231]: cluster 2024-02-19T22:10:15.328793+0000 mgr.smithi044.ikbsam (mgr.14184) 703 : cluster [DBG] pgmap v506: 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-02-19T22:10:16.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:16 smithi104 bash[21066]: cluster 2024-02-19T22:10:15.328793+0000 mgr.smithi044.ikbsam (mgr.14184) 703 : cluster [DBG] pgmap v506: 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-02-19T22:10:18.235 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:18.235 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:18.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:18 smithi044 bash[16231]: cluster 2024-02-19T22:10:17.330269+0000 mgr.smithi044.ikbsam (mgr.14184) 704 : 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-02-19T22:10:18.874 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:18.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:18 smithi104 bash[21066]: cluster 2024-02-19T22:10:17.330269+0000 mgr.smithi044.ikbsam (mgr.14184) 704 : 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-02-19T22:10:19.875 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:19.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:19 smithi104 bash[21066]: audit 2024-02-19T22:10:18.225386+0000 mgr.smithi044.ikbsam (mgr.14184) 705 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:19.888 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:19 smithi044 bash[16231]: audit 2024-02-19T22:10:18.225386+0000 mgr.smithi044.ikbsam (mgr.14184) 705 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:20.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:20 smithi104 bash[21066]: cluster 2024-02-19T22:10:19.332039+0000 mgr.smithi044.ikbsam (mgr.14184) 706 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:20.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:20 smithi044 bash[16231]: cluster 2024-02-19T22:10:19.332039+0000 mgr.smithi044.ikbsam (mgr.14184) 706 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:22.773 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:22 smithi044 bash[16231]: cluster 2024-02-19T22:10:21.333719+0000 mgr.smithi044.ikbsam (mgr.14184) 707 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:22.783 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:22 smithi104 bash[21066]: cluster 2024-02-19T22:10:21.333719+0000 mgr.smithi044.ikbsam (mgr.14184) 707 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:23.241 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:23.241 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:23.887 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:24 smithi104 bash[21066]: audit 2024-02-19T22:10:23.231263+0000 mgr.smithi044.ikbsam (mgr.14184) 708 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:24 smithi104 bash[21066]: cluster 2024-02-19T22:10:23.335504+0000 mgr.smithi044.ikbsam (mgr.14184) 709 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:24.888 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:24.901 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:24 smithi044 bash[16231]: audit 2024-02-19T22:10:23.231263+0000 mgr.smithi044.ikbsam (mgr.14184) 708 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:24.901 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:24 smithi044 bash[16231]: cluster 2024-02-19T22:10:23.335504+0000 mgr.smithi044.ikbsam (mgr.14184) 709 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:26.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:26 smithi044 bash[16231]: cluster 2024-02-19T22:10:25.337440+0000 mgr.smithi044.ikbsam (mgr.14184) 710 : cluster [DBG] pgmap v511: 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-02-19T22:10:26.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:26 smithi104 bash[21066]: cluster 2024-02-19T22:10:25.337440+0000 mgr.smithi044.ikbsam (mgr.14184) 710 : cluster [DBG] pgmap v511: 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-02-19T22:10:28.193 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:28.193 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:28.872 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:28 smithi044 bash[16231]: cluster 2024-02-19T22:10:27.339245+0000 mgr.smithi044.ikbsam (mgr.14184) 711 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:28.873 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:28.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:28 smithi104 bash[21066]: cluster 2024-02-19T22:10:27.339245+0000 mgr.smithi044.ikbsam (mgr.14184) 711 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:29.874 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:29.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:29 smithi104 bash[21066]: audit 2024-02-19T22:10:28.183341+0000 mgr.smithi044.ikbsam (mgr.14184) 712 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:29.886 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:29 smithi044 bash[16231]: audit 2024-02-19T22:10:28.183341+0000 mgr.smithi044.ikbsam (mgr.14184) 712 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:30.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:30 smithi104 bash[21066]: cluster 2024-02-19T22:10:29.340923+0000 mgr.smithi044.ikbsam (mgr.14184) 713 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:30.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:30 smithi044 bash[16231]: cluster 2024-02-19T22:10:29.340923+0000 mgr.smithi044.ikbsam (mgr.14184) 713 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:10:32.783 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:32 smithi104 bash[21066]: cluster 2024-02-19T22:10:31.342553+0000 mgr.smithi044.ikbsam (mgr.14184) 714 : 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-02-19T22:10:32.829 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:32 smithi044 bash[16231]: cluster 2024-02-19T22:10:31.342553+0000 mgr.smithi044.ikbsam (mgr.14184) 714 : 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-02-19T22:10:33.188 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:33.188 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:33.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:34.829 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:34.840 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:34 smithi044 bash[16231]: audit 2024-02-19T22:10:33.176111+0000 mgr.smithi044.ikbsam (mgr.14184) 715 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:34.840 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:34 smithi044 bash[16231]: cluster 2024-02-19T22:10:33.344379+0000 mgr.smithi044.ikbsam (mgr.14184) 716 : 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-02-19T22:10:34.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:34 smithi104 bash[21066]: audit 2024-02-19T22:10:33.176111+0000 mgr.smithi044.ikbsam (mgr.14184) 715 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:34.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:34 smithi104 bash[21066]: cluster 2024-02-19T22:10:33.344379+0000 mgr.smithi044.ikbsam (mgr.14184) 716 : 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-02-19T22:10:36.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:36 smithi104 bash[21066]: cluster 2024-02-19T22:10:35.346314+0000 mgr.smithi044.ikbsam (mgr.14184) 717 : 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-02-19T22:10:36.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:36 smithi044 bash[16231]: cluster 2024-02-19T22:10:35.346314+0000 mgr.smithi044.ikbsam (mgr.14184) 717 : 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-02-19T22:10:37.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:37 smithi104 bash[21066]: audit 2024-02-19T22:10:37.299481+0000 mon.smithi044 (mon.0) 867 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:10:37.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:37 smithi044 bash[16231]: audit 2024-02-19T22:10:37.299481+0000 mon.smithi044 (mon.0) 867 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:10:38.142 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:38.142 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:08:28.879962Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.iekrtp on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:38.785 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: cluster 2024-02-19T22:10:37.347917+0000 mgr.smithi044.ikbsam (mgr.14184) 718 : 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-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: audit 2024-02-19T22:10:37.608935+0000 mon.smithi044 (mon.0) 868 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: audit 2024-02-19T22:10:37.610038+0000 mon.smithi044 (mon.0) 869 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: audit 2024-02-19T22:10:37.615676+0000 mon.smithi044 (mon.0) 870 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: cluster 2024-02-19T22:10:37.616375+0000 mgr.smithi044.ikbsam (mgr.14184) 719 : cluster [DBG] pgmap v518: 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-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: audit 2024-02-19T22:10:37.621033+0000 mon.smithi044 (mon.0) 871 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: audit 2024-02-19T22:10:37.635963+0000 mon.smithi044 (mon.0) 872 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:38.786 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:38 smithi044 bash[16231]: cephadm 2024-02-19T22:10:37.638849+0000 mgr.smithi044.ikbsam (mgr.14184) 720 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.vhwald on smithi104 2024-02-19T22:10:38.787 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: cluster 2024-02-19T22:10:37.347917+0000 mgr.smithi044.ikbsam (mgr.14184) 718 : 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-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: audit 2024-02-19T22:10:37.608935+0000 mon.smithi044 (mon.0) 868 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: audit 2024-02-19T22:10:37.610038+0000 mon.smithi044 (mon.0) 869 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: audit 2024-02-19T22:10:37.615676+0000 mon.smithi044 (mon.0) 870 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: cluster 2024-02-19T22:10:37.616375+0000 mgr.smithi044.ikbsam (mgr.14184) 719 : cluster [DBG] pgmap v518: 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-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: audit 2024-02-19T22:10:37.621033+0000 mon.smithi044 (mon.0) 871 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: audit 2024-02-19T22:10:37.635963+0000 mon.smithi044 (mon.0) 872 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:38.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:38 smithi104 bash[21066]: cephadm 2024-02-19T22:10:37.638849+0000 mgr.smithi044.ikbsam (mgr.14184) 720 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.vhwald on smithi104 2024-02-19T22:10:39.789 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:39.802 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:39 smithi044 bash[16231]: audit 2024-02-19T22:10:38.124561+0000 mgr.smithi044.ikbsam (mgr.14184) 721 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:39.802 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:39 smithi044 bash[16231]: cluster 2024-02-19T22:10:38.613807+0000 mon.smithi044 (mon.0) 873 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:10:39.802 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:39 smithi044 bash[16231]: cluster 2024-02-19T22:10:38.613872+0000 mon.smithi044 (mon.0) 874 : cluster [INF] Cluster is now healthy 2024-02-19T22:10:39.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:39 smithi104 bash[21066]: audit 2024-02-19T22:10:38.124561+0000 mgr.smithi044.ikbsam (mgr.14184) 721 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:39.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:39 smithi104 bash[21066]: cluster 2024-02-19T22:10:38.613807+0000 mon.smithi044 (mon.0) 873 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:10:39.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:39 smithi104 bash[21066]: cluster 2024-02-19T22:10:38.613872+0000 mon.smithi044 (mon.0) 874 : cluster [INF] Cluster is now healthy 2024-02-19T22:10:40.867 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:40 smithi044 bash[16231]: cluster 2024-02-19T22:10:39.617751+0000 mgr.smithi044.ikbsam (mgr.14184) 722 : cluster [DBG] pgmap v519: 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-02-19T22:10:40.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:40 smithi104 bash[21066]: cluster 2024-02-19T22:10:39.617751+0000 mgr.smithi044.ikbsam (mgr.14184) 722 : cluster [DBG] pgmap v519: 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-02-19T22:10:41.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:41 smithi104 bash[21066]: audit 2024-02-19T22:10:41.517174+0000 mon.smithi044 (mon.0) 875 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.vhwald"}]: dispatch 2024-02-19T22:10:41.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:41 smithi044 bash[16231]: audit 2024-02-19T22:10:41.517174+0000 mon.smithi044 (mon.0) 875 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.vhwald"}]: dispatch 2024-02-19T22:10:42.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: cephadm 2024-02-19T22:10:41.515665+0000 mgr.smithi044.ikbsam (mgr.14184) 723 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.vhwald ... 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:10:42.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.vhwald ... 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:42.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: cephadm 2024-02-19T22:10:41.516335+0000 mgr.smithi044.ikbsam (mgr.14184) 724 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: cephadm 2024-02-19T22:10:41.518975+0000 mgr.smithi044.ikbsam (mgr.14184) 725 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.vhwald ... 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:42.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.884 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: cephadm 2024-02-19T22:10:41.523970+0000 mgr.smithi044.ikbsam (mgr.14184) 726 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.bvktpl on smithi044 2024-02-19T22:10:42.884 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:42 smithi104 bash[21066]: cluster 2024-02-19T22:10:41.619104+0000 mgr.smithi044.ikbsam (mgr.14184) 727 : cluster [DBG] pgmap v520: 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-02-19T22:10:42.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: cephadm 2024-02-19T22:10:41.515665+0000 mgr.smithi044.ikbsam (mgr.14184) 723 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.vhwald ... 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:10:42.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.vhwald ... 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:42.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: cephadm 2024-02-19T22:10:41.516335+0000 mgr.smithi044.ikbsam (mgr.14184) 724 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: cephadm 2024-02-19T22:10:41.518975+0000 mgr.smithi044.ikbsam (mgr.14184) 725 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.vhwald ... 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:42.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:42.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:42.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:42.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: cephadm 2024-02-19T22:10:41.523970+0000 mgr.smithi044.ikbsam (mgr.14184) 726 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.bvktpl on smithi044 2024-02-19T22:10:42.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:42 smithi044 bash[16231]: cluster 2024-02-19T22:10:41.619104+0000 mgr.smithi044.ikbsam (mgr.14184) 727 : cluster [DBG] pgmap v520: 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-02-19T22:10:43.112 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:43.112 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:33.265873Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.sboxxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-sboxxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.sboxxt\nDeploy daemon haproxy.nfs.foo.smithi104.sboxxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.291398Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.edlmkk on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-edlmkk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.edlmkk\nDeploy daemon haproxy.nfs.foo.smithi044.edlmkk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:09:37.293426Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.bnucpw on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:43.778 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:44.779 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:44.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:44 smithi044 bash[16231]: audit 2024-02-19T22:10:43.097255+0000 mgr.smithi044.ikbsam (mgr.14184) 728 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:44.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:44 smithi044 bash[16231]: cluster 2024-02-19T22:10:43.620627+0000 mgr.smithi044.ikbsam (mgr.14184) 729 : cluster [DBG] pgmap v521: 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-02-19T22:10:44.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:44 smithi044 bash[16231]: audit 2024-02-19T22:10:43.639885+0000 mon.smithi044 (mon.0) 876 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:45.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:44 smithi104 bash[21066]: audit 2024-02-19T22:10:43.097255+0000 mgr.smithi044.ikbsam (mgr.14184) 728 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:45.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:44 smithi104 bash[21066]: cluster 2024-02-19T22:10:43.620627+0000 mgr.smithi044.ikbsam (mgr.14184) 729 : cluster [DBG] pgmap v521: 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-02-19T22:10:45.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:44 smithi104 bash[21066]: audit 2024-02-19T22:10:43.639885+0000 mon.smithi044 (mon.0) 876 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cluster 2024-02-19T22:10:45.622273+0000 mgr.smithi044.ikbsam (mgr.14184) 730 : cluster [DBG] pgmap v522: 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-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cephadm 2024-02-19T22:10:45.835516+0000 mgr.smithi044.ikbsam (mgr.14184) 731 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:46.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.bvktpl ... 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:46.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.bvktpl ... 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cephadm 2024-02-19T22:10:45.835863+0000 mgr.smithi044.ikbsam (mgr.14184) 732 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: audit 2024-02-19T22:10:45.836498+0000 mon.smithi044 (mon.0) 877 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.bvktpl"}]: dispatch 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cephadm 2024-02-19T22:10:45.837678+0000 mgr.smithi044.ikbsam (mgr.14184) 733 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:46.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.bvktpl ... 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cephadm 2024-02-19T22:10:45.840692+0000 mgr.smithi044.ikbsam (mgr.14184) 734 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cephadm 2024-02-19T22:10:45.842900+0000 mgr.smithi044.ikbsam (mgr.14184) 735 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:46.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:46 smithi044 bash[16231]: cluster 2024-02-19T22:10:45.844107+0000 mgr.smithi044.ikbsam (mgr.14184) 736 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 B/s rd, 0 op/s 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cluster 2024-02-19T22:10:45.622273+0000 mgr.smithi044.ikbsam (mgr.14184) 730 : cluster [DBG] pgmap v522: 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-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cephadm 2024-02-19T22:10:45.835516+0000 mgr.smithi044.ikbsam (mgr.14184) 731 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.bvktpl ... 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.bvktpl ... 2024-02-19T22:10:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:47.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cephadm 2024-02-19T22:10:45.835863+0000 mgr.smithi044.ikbsam (mgr.14184) 732 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: audit 2024-02-19T22:10:45.836498+0000 mon.smithi044 (mon.0) 877 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.bvktpl"}]: dispatch 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cephadm 2024-02-19T22:10:45.837678+0000 mgr.smithi044.ikbsam (mgr.14184) 733 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.bvktpl ... 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:10:47.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:10:47.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:10:47.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:10:47.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cephadm 2024-02-19T22:10:45.840692+0000 mgr.smithi044.ikbsam (mgr.14184) 734 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:47.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cephadm 2024-02-19T22:10:45.842900+0000 mgr.smithi044.ikbsam (mgr.14184) 735 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:10:47.136 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:46 smithi104 bash[21066]: cluster 2024-02-19T22:10:45.844107+0000 mgr.smithi044.ikbsam (mgr.14184) 736 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 B/s rd, 0 op/s 2024-02-19T22:10:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:47 smithi104 bash[21066]: cluster 2024-02-19T22:10:46.641638+0000 mon.smithi044 (mon.0) 878 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:10:48.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:47 smithi044 bash[16231]: cluster 2024-02-19T22:10:46.641638+0000 mon.smithi044 (mon.0) 878 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:10:48.277 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:48.277 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:48.926 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:48 smithi044 bash[16231]: cluster 2024-02-19T22:10:47.845503+0000 mgr.smithi044.ikbsam (mgr.14184) 737 : cluster [DBG] pgmap v524: 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-02-19T22:10:48.927 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:49.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:48 smithi104 bash[21066]: cluster 2024-02-19T22:10:47.845503+0000 mgr.smithi044.ikbsam (mgr.14184) 737 : cluster [DBG] pgmap v524: 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-02-19T22:10:49.928 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:49.941 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:49 smithi044 bash[16231]: audit 2024-02-19T22:10:48.259185+0000 mgr.smithi044.ikbsam (mgr.14184) 738 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:49.941 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:49 smithi044 bash[16231]: audit 2024-02-19T22:10:49.379370+0000 mon.smithi044 (mon.0) 879 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:49 smithi104 bash[21066]: audit 2024-02-19T22:10:48.259185+0000 mgr.smithi044.ikbsam (mgr.14184) 738 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:49 smithi104 bash[21066]: audit 2024-02-19T22:10:49.379370+0000 mon.smithi044 (mon.0) 879 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:51.068 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:50 smithi044 bash[16231]: cluster 2024-02-19T22:10:49.847345+0000 mgr.smithi044.ikbsam (mgr.14184) 739 : cluster [DBG] pgmap v525: 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-02-19T22:10:51.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:50 smithi104 bash[21066]: cluster 2024-02-19T22:10:49.847345+0000 mgr.smithi044.ikbsam (mgr.14184) 739 : cluster [DBG] pgmap v525: 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-02-19T22:10:53.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:52 smithi104 bash[21066]: cluster 2024-02-19T22:10:51.848771+0000 mgr.smithi044.ikbsam (mgr.14184) 740 : cluster [DBG] pgmap v526: 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-02-19T22:10:53.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:52 smithi044 bash[16231]: cluster 2024-02-19T22:10:51.848771+0000 mgr.smithi044.ikbsam (mgr.14184) 740 : cluster [DBG] pgmap v526: 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-02-19T22:10:53.279 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:53.280 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:53.945 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:54.946 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:10:55.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:54 smithi104 bash[21066]: audit 2024-02-19T22:10:53.264847+0000 mgr.smithi044.ikbsam (mgr.14184) 741 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:55.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:54 smithi104 bash[21066]: cluster 2024-02-19T22:10:53.850567+0000 mgr.smithi044.ikbsam (mgr.14184) 742 : cluster [DBG] pgmap v527: 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-02-19T22:10:55.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:54 smithi044 bash[16231]: audit 2024-02-19T22:10:53.264847+0000 mgr.smithi044.ikbsam (mgr.14184) 741 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:10:55.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:54 smithi044 bash[16231]: cluster 2024-02-19T22:10:53.850567+0000 mgr.smithi044.ikbsam (mgr.14184) 742 : cluster [DBG] pgmap v527: 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-02-19T22:10:57.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:56 smithi104 bash[21066]: cluster 2024-02-19T22:10:55.852454+0000 mgr.smithi044.ikbsam (mgr.14184) 743 : cluster [DBG] pgmap v528: 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-02-19T22:10:57.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:56 smithi044 bash[16231]: cluster 2024-02-19T22:10:55.852454+0000 mgr.smithi044.ikbsam (mgr.14184) 743 : cluster [DBG] pgmap v528: 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-02-19T22:10:58.347 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:10:58.347 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:10:59.045 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:10:59.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:58 smithi104 bash[21066]: cluster 2024-02-19T22:10:57.853976+0000 mgr.smithi044.ikbsam (mgr.14184) 744 : 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-02-19T22:10:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:58 smithi104 bash[21066]: audit 2024-02-19T22:10:58.640501+0000 mon.smithi044 (mon.0) 880 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:10:59.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:58 smithi044 bash[16231]: cluster 2024-02-19T22:10:57.853976+0000 mgr.smithi044.ikbsam (mgr.14184) 744 : 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-02-19T22:10:59.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:58 smithi044 bash[16231]: audit 2024-02-19T22:10:58.640501+0000 mon.smithi044 (mon.0) 880 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:00.047 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:00.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:10:59 smithi104 bash[21066]: audit 2024-02-19T22:10:58.336857+0000 mgr.smithi044.ikbsam (mgr.14184) 745 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:00.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:10:59 smithi044 bash[16231]: audit 2024-02-19T22:10:58.336857+0000 mgr.smithi044.ikbsam (mgr.14184) 745 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:01.213 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:00 smithi044 bash[16231]: cluster 2024-02-19T22:10:59.855889+0000 mgr.smithi044.ikbsam (mgr.14184) 746 : 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-02-19T22:11:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:00 smithi104 bash[21066]: cluster 2024-02-19T22:10:59.855889+0000 mgr.smithi044.ikbsam (mgr.14184) 746 : 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-02-19T22:11:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:02 smithi104 bash[21066]: cluster 2024-02-19T22:11:01.857412+0000 mgr.smithi044.ikbsam (mgr.14184) 747 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:03.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:02 smithi044 bash[16231]: cluster 2024-02-19T22:11:01.857412+0000 mgr.smithi044.ikbsam (mgr.14184) 747 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:03.310 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:03.310 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:03.978 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:04.979 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:04 smithi104 bash[21066]: audit 2024-02-19T22:11:03.295957+0000 mgr.smithi044.ikbsam (mgr.14184) 748 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:04 smithi104 bash[21066]: cluster 2024-02-19T22:11:03.859178+0000 mgr.smithi044.ikbsam (mgr.14184) 749 : 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-02-19T22:11:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:04 smithi044 bash[16231]: audit 2024-02-19T22:11:03.295957+0000 mgr.smithi044.ikbsam (mgr.14184) 748 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:04 smithi044 bash[16231]: cluster 2024-02-19T22:11:03.859178+0000 mgr.smithi044.ikbsam (mgr.14184) 749 : 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-02-19T22:11:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:06 smithi104 bash[21066]: cluster 2024-02-19T22:11:05.861084+0000 mgr.smithi044.ikbsam (mgr.14184) 750 : cluster [DBG] pgmap v533: 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-02-19T22:11:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:06 smithi044 bash[16231]: cluster 2024-02-19T22:11:05.861084+0000 mgr.smithi044.ikbsam (mgr.14184) 750 : cluster [DBG] pgmap v533: 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-02-19T22:11:08.385 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:08.385 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:09.057 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:09.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:08 smithi104 bash[21066]: cluster 2024-02-19T22:11:07.862506+0000 mgr.smithi044.ikbsam (mgr.14184) 751 : 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-02-19T22:11:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:08 smithi044 bash[16231]: cluster 2024-02-19T22:11:07.862506+0000 mgr.smithi044.ikbsam (mgr.14184) 751 : 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-02-19T22:11:10.058 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:09 smithi104 bash[21066]: audit 2024-02-19T22:11:08.374609+0000 mgr.smithi044.ikbsam (mgr.14184) 752 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:09 smithi044 bash[16231]: audit 2024-02-19T22:11:08.374609+0000 mgr.smithi044.ikbsam (mgr.14184) 752 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:11.297 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:10 smithi044 bash[16231]: cluster 2024-02-19T22:11:09.864452+0000 mgr.smithi044.ikbsam (mgr.14184) 753 : 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-02-19T22:11:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:10 smithi104 bash[21066]: cluster 2024-02-19T22:11:09.864452+0000 mgr.smithi044.ikbsam (mgr.14184) 753 : 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-02-19T22:11:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:12 smithi104 bash[21066]: cluster 2024-02-19T22:11:11.865902+0000 mgr.smithi044.ikbsam (mgr.14184) 754 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:12 smithi044 bash[16231]: cluster 2024-02-19T22:11:11.865902+0000 mgr.smithi044.ikbsam (mgr.14184) 754 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:13.224 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:13.224 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:13.896 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:14.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:14 smithi044 bash[16231]: audit 2024-02-19T22:11:13.214323+0000 mgr.smithi044.ikbsam (mgr.14184) 755 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:14.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:14 smithi044 bash[16231]: cluster 2024-02-19T22:11:13.867805+0000 mgr.smithi044.ikbsam (mgr.14184) 756 : 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-02-19T22:11:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:14 smithi104 bash[21066]: audit 2024-02-19T22:11:13.214323+0000 mgr.smithi044.ikbsam (mgr.14184) 755 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:14.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:14 smithi104 bash[21066]: cluster 2024-02-19T22:11:13.867805+0000 mgr.smithi044.ikbsam (mgr.14184) 756 : 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-02-19T22:11:14.897 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:17.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:16 smithi104 bash[21066]: cluster 2024-02-19T22:11:15.869751+0000 mgr.smithi044.ikbsam (mgr.14184) 757 : cluster [DBG] pgmap v538: 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-02-19T22:11:17.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:16 smithi044 bash[16231]: cluster 2024-02-19T22:11:15.869751+0000 mgr.smithi044.ikbsam (mgr.14184) 757 : cluster [DBG] pgmap v538: 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-02-19T22:11:18.231 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:18.231 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:18.890 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:19.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:18 smithi044 bash[16231]: cluster 2024-02-19T22:11:17.871497+0000 mgr.smithi044.ikbsam (mgr.14184) 758 : 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-02-19T22:11:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:18 smithi104 bash[21066]: cluster 2024-02-19T22:11:17.871497+0000 mgr.smithi044.ikbsam (mgr.14184) 758 : 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-02-19T22:11:19.891 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:20.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:19 smithi044 bash[16231]: audit 2024-02-19T22:11:18.216228+0000 mgr.smithi044.ikbsam (mgr.14184) 759 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:20.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:19 smithi104 bash[21066]: audit 2024-02-19T22:11:18.216228+0000 mgr.smithi044.ikbsam (mgr.14184) 759 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:21.339 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:20 smithi044 bash[16231]: cluster 2024-02-19T22:11:19.873536+0000 mgr.smithi044.ikbsam (mgr.14184) 760 : 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-02-19T22:11:21.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:20 smithi104 bash[21066]: cluster 2024-02-19T22:11:19.873536+0000 mgr.smithi044.ikbsam (mgr.14184) 760 : 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-02-19T22:11:23.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:22 smithi104 bash[21066]: cluster 2024-02-19T22:11:21.874956+0000 mgr.smithi044.ikbsam (mgr.14184) 761 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:23.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:22 smithi044 bash[16231]: cluster 2024-02-19T22:11:21.874956+0000 mgr.smithi044.ikbsam (mgr.14184) 761 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:23.240 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:23.240 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:23.913 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:24.914 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:24 smithi104 bash[21066]: audit 2024-02-19T22:11:23.227034+0000 mgr.smithi044.ikbsam (mgr.14184) 762 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:24 smithi104 bash[21066]: cluster 2024-02-19T22:11:23.876867+0000 mgr.smithi044.ikbsam (mgr.14184) 763 : 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-02-19T22:11:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:24 smithi044 bash[16231]: audit 2024-02-19T22:11:23.227034+0000 mgr.smithi044.ikbsam (mgr.14184) 762 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:24 smithi044 bash[16231]: cluster 2024-02-19T22:11:23.876867+0000 mgr.smithi044.ikbsam (mgr.14184) 763 : 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-02-19T22:11:27.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:26 smithi104 bash[21066]: cluster 2024-02-19T22:11:25.878737+0000 mgr.smithi044.ikbsam (mgr.14184) 764 : cluster [DBG] pgmap v543: 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-02-19T22:11:27.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:26 smithi044 bash[16231]: cluster 2024-02-19T22:11:25.878737+0000 mgr.smithi044.ikbsam (mgr.14184) 764 : cluster [DBG] pgmap v543: 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-02-19T22:11:28.334 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:28.334 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:29.031 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:29.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:28 smithi104 bash[21066]: cluster 2024-02-19T22:11:27.880315+0000 mgr.smithi044.ikbsam (mgr.14184) 765 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:29.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:28 smithi044 bash[16231]: cluster 2024-02-19T22:11:27.880315+0000 mgr.smithi044.ikbsam (mgr.14184) 765 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:30.031 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:30.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:29 smithi104 bash[21066]: audit 2024-02-19T22:11:28.323728+0000 mgr.smithi044.ikbsam (mgr.14184) 766 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:30.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:29 smithi044 bash[16231]: audit 2024-02-19T22:11:28.323728+0000 mgr.smithi044.ikbsam (mgr.14184) 766 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:31.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:30 smithi104 bash[21066]: cluster 2024-02-19T22:11:29.882274+0000 mgr.smithi044.ikbsam (mgr.14184) 767 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:31.380 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:30 smithi044 bash[16231]: cluster 2024-02-19T22:11:29.882274+0000 mgr.smithi044.ikbsam (mgr.14184) 767 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:32 smithi104 bash[21066]: cluster 2024-02-19T22:11:31.883541+0000 mgr.smithi044.ikbsam (mgr.14184) 768 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:33.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:32 smithi044 bash[16231]: cluster 2024-02-19T22:11:31.883541+0000 mgr.smithi044.ikbsam (mgr.14184) 768 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:33.274 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:33.275 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:33.944 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:33 smithi104 bash[21066]: audit 2024-02-19T22:11:33.258032+0000 mgr.smithi044.ikbsam (mgr.14184) 769 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:33 smithi104 bash[21066]: cluster 2024-02-19T22:11:33.885372+0000 mgr.smithi044.ikbsam (mgr.14184) 770 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:33 smithi044 bash[16231]: audit 2024-02-19T22:11:33.258032+0000 mgr.smithi044.ikbsam (mgr.14184) 769 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:33 smithi044 bash[16231]: cluster 2024-02-19T22:11:33.885372+0000 mgr.smithi044.ikbsam (mgr.14184) 770 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:34.946 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:37.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:36 smithi104 bash[21066]: cluster 2024-02-19T22:11:35.887270+0000 mgr.smithi044.ikbsam (mgr.14184) 771 : cluster [DBG] pgmap v548: 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-02-19T22:11:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:36 smithi044 bash[16231]: cluster 2024-02-19T22:11:35.887270+0000 mgr.smithi044.ikbsam (mgr.14184) 771 : cluster [DBG] pgmap v548: 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-02-19T22:11:38.391 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:38.391 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:39.051 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:39.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:38 smithi104 bash[21066]: cluster 2024-02-19T22:11:37.888704+0000 mgr.smithi044.ikbsam (mgr.14184) 772 : 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-02-19T22:11:39.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:38 smithi044 bash[16231]: cluster 2024-02-19T22:11:37.888704+0000 mgr.smithi044.ikbsam (mgr.14184) 772 : 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-02-19T22:11:40.052 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:39 smithi104 bash[21066]: audit 2024-02-19T22:11:38.372883+0000 mgr.smithi044.ikbsam (mgr.14184) 773 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:39 smithi044 bash[16231]: audit 2024-02-19T22:11:38.372883+0000 mgr.smithi044.ikbsam (mgr.14184) 773 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:41.246 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:40 smithi044 bash[16231]: cluster 2024-02-19T22:11:39.890822+0000 mgr.smithi044.ikbsam (mgr.14184) 774 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:40 smithi104 bash[21066]: cluster 2024-02-19T22:11:39.890822+0000 mgr.smithi044.ikbsam (mgr.14184) 774 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:43.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:42 smithi104 bash[21066]: cluster 2024-02-19T22:11:41.892290+0000 mgr.smithi044.ikbsam (mgr.14184) 775 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:43.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:42 smithi044 bash[16231]: cluster 2024-02-19T22:11:41.892290+0000 mgr.smithi044.ikbsam (mgr.14184) 775 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:43.353 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:43.353 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:44.019 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:45.020 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:44 smithi104 bash[21066]: audit 2024-02-19T22:11:43.333865+0000 mgr.smithi044.ikbsam (mgr.14184) 776 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:45.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:44 smithi104 bash[21066]: cluster 2024-02-19T22:11:43.894065+0000 mgr.smithi044.ikbsam (mgr.14184) 777 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:44 smithi044 bash[16231]: audit 2024-02-19T22:11:43.333865+0000 mgr.smithi044.ikbsam (mgr.14184) 776 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:44 smithi044 bash[16231]: cluster 2024-02-19T22:11:43.894065+0000 mgr.smithi044.ikbsam (mgr.14184) 777 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:11:46.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:45 smithi104 bash[21066]: audit 2024-02-19T22:11:45.846697+0000 mon.smithi044 (mon.0) 881 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:11:46.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:45 smithi044 bash[16231]: audit 2024-02-19T22:11:45.846697+0000 mon.smithi044 (mon.0) 881 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:11:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:46 smithi104 bash[21066]: cluster 2024-02-19T22:11:45.895928+0000 mgr.smithi044.ikbsam (mgr.14184) 778 : cluster [DBG] pgmap v553: 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-02-19T22:11:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:46 smithi104 bash[21066]: audit 2024-02-19T22:11:46.189964+0000 mon.smithi044 (mon.0) 882 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:11:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:46 smithi104 bash[21066]: audit 2024-02-19T22:11:46.191094+0000 mon.smithi044 (mon.0) 883 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:11:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:46 smithi104 bash[21066]: audit 2024-02-19T22:11:46.197712+0000 mon.smithi044 (mon.0) 884 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:46 smithi104 bash[21066]: audit 2024-02-19T22:11:46.206190+0000 mon.smithi044 (mon.0) 885 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:11:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:46 smithi104 bash[21066]: audit 2024-02-19T22:11:46.219596+0000 mon.smithi044 (mon.0) 886 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:47.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:46 smithi044 bash[16231]: cluster 2024-02-19T22:11:45.895928+0000 mgr.smithi044.ikbsam (mgr.14184) 778 : cluster [DBG] pgmap v553: 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-02-19T22:11:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:46 smithi044 bash[16231]: audit 2024-02-19T22:11:46.189964+0000 mon.smithi044 (mon.0) 882 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:11:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:46 smithi044 bash[16231]: audit 2024-02-19T22:11:46.191094+0000 mon.smithi044 (mon.0) 883 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:11:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:46 smithi044 bash[16231]: audit 2024-02-19T22:11:46.197712+0000 mon.smithi044 (mon.0) 884 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:46 smithi044 bash[16231]: audit 2024-02-19T22:11:46.206190+0000 mon.smithi044 (mon.0) 885 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:11:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:46 smithi044 bash[16231]: audit 2024-02-19T22:11:46.219596+0000 mon.smithi044 (mon.0) 886 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:48.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:47 smithi104 bash[21066]: cluster 2024-02-19T22:11:46.198380+0000 mgr.smithi044.ikbsam (mgr.14184) 779 : cluster [DBG] pgmap v554: 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-02-19T22:11:48.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:47 smithi104 bash[21066]: cephadm 2024-02-19T22:11:46.223601+0000 mgr.smithi044.ikbsam (mgr.14184) 780 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.whxyai on smithi104 2024-02-19T22:11:48.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:47 smithi104 bash[21066]: cluster 2024-02-19T22:11:47.195471+0000 mon.smithi044 (mon.0) 887 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:11:48.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:47 smithi104 bash[21066]: cluster 2024-02-19T22:11:47.195546+0000 mon.smithi044 (mon.0) 888 : cluster [INF] Cluster is now healthy 2024-02-19T22:11:48.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:47 smithi044 bash[16231]: cluster 2024-02-19T22:11:46.198380+0000 mgr.smithi044.ikbsam (mgr.14184) 779 : cluster [DBG] pgmap v554: 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-02-19T22:11:48.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:47 smithi044 bash[16231]: cephadm 2024-02-19T22:11:46.223601+0000 mgr.smithi044.ikbsam (mgr.14184) 780 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.whxyai on smithi104 2024-02-19T22:11:48.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:47 smithi044 bash[16231]: cluster 2024-02-19T22:11:47.195471+0000 mon.smithi044 (mon.0) 887 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:11:48.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:47 smithi044 bash[16231]: cluster 2024-02-19T22:11:47.195546+0000 mon.smithi044 (mon.0) 888 : cluster [INF] Cluster is now healthy 2024-02-19T22:11:48.413 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:48.413 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:09:37.295299Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rdnlwo on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:49.109 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:49 smithi104 bash[21066]: cluster 2024-02-19T22:11:48.199583+0000 mgr.smithi044.ikbsam (mgr.14184) 781 : cluster [DBG] pgmap v555: 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-02-19T22:11:49.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:49 smithi104 bash[21066]: audit 2024-02-19T22:11:48.397507+0000 mgr.smithi044.ikbsam (mgr.14184) 782 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:49 smithi044 bash[16231]: cluster 2024-02-19T22:11:48.199583+0000 mgr.smithi044.ikbsam (mgr.14184) 781 : cluster [DBG] pgmap v555: 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-02-19T22:11:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:49 smithi044 bash[16231]: audit 2024-02-19T22:11:48.397507+0000 mgr.smithi044.ikbsam (mgr.14184) 782 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:50.110 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:50 smithi104 bash[21066]: audit 2024-02-19T22:11:50.182374+0000 mon.smithi044 (mon.0) 889 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.whxyai"}]: dispatch 2024-02-19T22:11:50.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:50 smithi044 bash[16231]: audit 2024-02-19T22:11:50.182374+0000 mon.smithi044 (mon.0) 889 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.whxyai"}]: dispatch 2024-02-19T22:11:51.610 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: cephadm 2024-02-19T22:11:50.181510+0000 mgr.smithi044.ikbsam (mgr.14184) 783 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.610 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:51.610 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.610 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.610 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.whxyai ... 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:11:51.611 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.whxyai ... 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.612 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: cephadm 2024-02-19T22:11:50.181824+0000 mgr.smithi044.ikbsam (mgr.14184) 784 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: cephadm 2024-02-19T22:11:50.183898+0000 mgr.smithi044.ikbsam (mgr.14184) 785 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.whxyai ... 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.613 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: cephadm 2024-02-19T22:11:50.186781+0000 mgr.smithi044.ikbsam (mgr.14184) 786 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.quynfh on smithi044 2024-02-19T22:11:51.614 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:51 smithi044 bash[16231]: cluster 2024-02-19T22:11:50.201119+0000 mgr.smithi044.ikbsam (mgr.14184) 787 : cluster [DBG] pgmap v556: 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-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: cephadm 2024-02-19T22:11:50.181510+0000 mgr.smithi044.ikbsam (mgr.14184) 783 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.whxyai ... 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.whxyai ... 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: cephadm 2024-02-19T22:11:50.181824+0000 mgr.smithi044.ikbsam (mgr.14184) 784 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: cephadm 2024-02-19T22:11:50.183898+0000 mgr.smithi044.ikbsam (mgr.14184) 785 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.whxyai ... 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: cephadm 2024-02-19T22:11:50.186781+0000 mgr.smithi044.ikbsam (mgr.14184) 786 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.quynfh on smithi044 2024-02-19T22:11:51.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:51 smithi104 bash[21066]: cluster 2024-02-19T22:11:50.201119+0000 mgr.smithi044.ikbsam (mgr.14184) 787 : cluster [DBG] pgmap v556: 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-02-19T22:11:53.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:53 smithi044 bash[16231]: cluster 2024-02-19T22:11:52.202183+0000 mgr.smithi044.ikbsam (mgr.14184) 788 : cluster [DBG] pgmap v557: 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-02-19T22:11:53.498 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:53.498 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:41.518739Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vhwald on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vhwald\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vhwald\nDeploy daemon haproxy.nfs.foo.smithi104.vhwald ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.837523Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.bvktpl on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-bvktpl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.bvktpl\nDeploy daemon haproxy.nfs.foo.smithi044.bvktpl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:10:45.840540Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.xnyvob on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:53.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:53 smithi104 bash[21066]: cluster 2024-02-19T22:11:52.202183+0000 mgr.smithi044.ikbsam (mgr.14184) 788 : cluster [DBG] pgmap v557: 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-02-19T22:11:54.209 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:54.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:54 smithi104 bash[21066]: audit 2024-02-19T22:11:53.483177+0000 mgr.smithi044.ikbsam (mgr.14184) 789 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:54 smithi104 bash[21066]: audit 2024-02-19T22:11:54.254084+0000 mon.smithi044 (mon.0) 890 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.quynfh"}]: dispatch 2024-02-19T22:11:54.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:54 smithi044 bash[16231]: audit 2024-02-19T22:11:53.483177+0000 mgr.smithi044.ikbsam (mgr.14184) 789 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:54.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:54 smithi044 bash[16231]: audit 2024-02-19T22:11:54.254084+0000 mon.smithi044 (mon.0) 890 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.quynfh"}]: dispatch 2024-02-19T22:11:55.210 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:11:55.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cluster 2024-02-19T22:11:54.203408+0000 mgr.smithi044.ikbsam (mgr.14184) 790 : cluster [DBG] pgmap v558: 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-02-19T22:11:55.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cephadm 2024-02-19T22:11:54.252988+0000 mgr.smithi044.ikbsam (mgr.14184) 791 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:55.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.quynfh ... 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:55.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.quynfh ... 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cephadm 2024-02-19T22:11:54.253470+0000 mgr.smithi044.ikbsam (mgr.14184) 792 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cephadm 2024-02-19T22:11:54.255560+0000 mgr.smithi044.ikbsam (mgr.14184) 793 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.quynfh ... 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cephadm 2024-02-19T22:11:54.259633+0000 mgr.smithi044.ikbsam (mgr.14184) 794 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cephadm 2024-02-19T22:11:54.261691+0000 mgr.smithi044.ikbsam (mgr.14184) 795 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cluster 2024-02-19T22:11:54.262517+0000 mgr.smithi044.ikbsam (mgr.14184) 796 : cluster [DBG] pgmap v559: 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-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: cluster 2024-02-19T22:11:54.264531+0000 mon.smithi044 (mon.0) 891 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:11:55.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:55 smithi104 bash[21066]: audit 2024-02-19T22:11:54.439911+0000 mon.smithi044 (mon.0) 892 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cluster 2024-02-19T22:11:54.203408+0000 mgr.smithi044.ikbsam (mgr.14184) 790 : cluster [DBG] pgmap v558: 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-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cephadm 2024-02-19T22:11:54.252988+0000 mgr.smithi044.ikbsam (mgr.14184) 791 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.quynfh ... 2024-02-19T22:11:55.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.quynfh ... 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cephadm 2024-02-19T22:11:54.253470+0000 mgr.smithi044.ikbsam (mgr.14184) 792 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cephadm 2024-02-19T22:11:54.255560+0000 mgr.smithi044.ikbsam (mgr.14184) 793 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.quynfh ... 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cephadm 2024-02-19T22:11:54.259633+0000 mgr.smithi044.ikbsam (mgr.14184) 794 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cephadm 2024-02-19T22:11:54.261691+0000 mgr.smithi044.ikbsam (mgr.14184) 795 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cluster 2024-02-19T22:11:54.262517+0000 mgr.smithi044.ikbsam (mgr.14184) 796 : cluster [DBG] pgmap v559: 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-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: cluster 2024-02-19T22:11:54.264531+0000 mon.smithi044 (mon.0) 891 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:11:55.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:55 smithi044 bash[16231]: audit 2024-02-19T22:11:54.439911+0000 mon.smithi044 (mon.0) 892 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:11:57.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:57 smithi104 bash[21066]: cluster 2024-02-19T22:11:56.264257+0000 mgr.smithi044.ikbsam (mgr.14184) 797 : cluster [DBG] pgmap v560: 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-02-19T22:11:57.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:57 smithi044 bash[16231]: cluster 2024-02-19T22:11:56.264257+0000 mgr.smithi044.ikbsam (mgr.14184) 797 : cluster [DBG] pgmap v560: 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-02-19T22:11:58.719 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:11:58.719 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:11:59.381 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:11:59.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:59 smithi104 bash[21066]: cluster 2024-02-19T22:11:58.266808+0000 mgr.smithi044.ikbsam (mgr.14184) 798 : cluster [DBG] pgmap v561: 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-02-19T22:11:59.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:11:59 smithi104 bash[21066]: audit 2024-02-19T22:11:58.701927+0000 mgr.smithi044.ikbsam (mgr.14184) 799 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:11:59.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:59 smithi044 bash[16231]: cluster 2024-02-19T22:11:58.266808+0000 mgr.smithi044.ikbsam (mgr.14184) 798 : cluster [DBG] pgmap v561: 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-02-19T22:11:59.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:11:59 smithi044 bash[16231]: audit 2024-02-19T22:11:58.701927+0000 mgr.smithi044.ikbsam (mgr.14184) 799 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:00.382 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:01.610 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:01 smithi044 bash[16231]: cluster 2024-02-19T22:12:00.268740+0000 mgr.smithi044.ikbsam (mgr.14184) 800 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 22 KiB/s rd, 0 B/s wr, 36 op/s 2024-02-19T22:12:01.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:01 smithi104 bash[21066]: cluster 2024-02-19T22:12:00.268740+0000 mgr.smithi044.ikbsam (mgr.14184) 800 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 22 KiB/s rd, 0 B/s wr, 36 op/s 2024-02-19T22:12:03.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:03 smithi104 bash[21066]: cluster 2024-02-19T22:12:02.269969+0000 mgr.smithi044.ikbsam (mgr.14184) 801 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 26 KiB/s rd, 0 B/s wr, 43 op/s 2024-02-19T22:12:03.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:03 smithi044 bash[16231]: cluster 2024-02-19T22:12:02.269969+0000 mgr.smithi044.ikbsam (mgr.14184) 801 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 26 KiB/s rd, 0 B/s wr, 43 op/s 2024-02-19T22:12:03.843 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:03.843 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:04.517 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:04.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:04 smithi104 bash[21066]: audit 2024-02-19T22:12:03.824541+0000 mgr.smithi044.ikbsam (mgr.14184) 802 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:04.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:04 smithi044 bash[16231]: audit 2024-02-19T22:12:03.824541+0000 mgr.smithi044.ikbsam (mgr.14184) 802 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:05.518 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:05.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:05 smithi104 bash[21066]: cluster 2024-02-19T22:12:04.271671+0000 mgr.smithi044.ikbsam (mgr.14184) 803 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 51 KiB/s rd, 0 B/s wr, 85 op/s 2024-02-19T22:12:05.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:05 smithi044 bash[16231]: cluster 2024-02-19T22:12:04.271671+0000 mgr.smithi044.ikbsam (mgr.14184) 803 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 51 KiB/s rd, 0 B/s wr, 85 op/s 2024-02-19T22:12:07.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:07 smithi104 bash[21066]: cluster 2024-02-19T22:12:06.273380+0000 mgr.smithi044.ikbsam (mgr.14184) 804 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 0 B/s wr, 72 op/s 2024-02-19T22:12:07.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:07 smithi044 bash[16231]: cluster 2024-02-19T22:12:06.273380+0000 mgr.smithi044.ikbsam (mgr.14184) 804 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 0 B/s wr, 72 op/s 2024-02-19T22:12:08.860 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:08.860 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:09.540 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:09.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:09 smithi104 bash[21066]: cluster 2024-02-19T22:12:08.275132+0000 mgr.smithi044.ikbsam (mgr.14184) 805 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 0 B/s wr, 72 op/s 2024-02-19T22:12:09.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:09 smithi104 bash[21066]: audit 2024-02-19T22:12:08.844557+0000 mgr.smithi044.ikbsam (mgr.14184) 806 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:09.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:09 smithi044 bash[16231]: cluster 2024-02-19T22:12:08.275132+0000 mgr.smithi044.ikbsam (mgr.14184) 805 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 0 B/s wr, 72 op/s 2024-02-19T22:12:09.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:09 smithi044 bash[16231]: audit 2024-02-19T22:12:08.844557+0000 mgr.smithi044.ikbsam (mgr.14184) 806 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:10.541 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:11.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:11 smithi104 bash[21066]: cluster 2024-02-19T22:12:10.276998+0000 mgr.smithi044.ikbsam (mgr.14184) 807 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 0 B/s wr, 72 op/s 2024-02-19T22:12:11.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:11 smithi044 bash[16231]: cluster 2024-02-19T22:12:10.276998+0000 mgr.smithi044.ikbsam (mgr.14184) 807 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 44 KiB/s rd, 0 B/s wr, 72 op/s 2024-02-19T22:12:13.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:13 smithi104 bash[21066]: cluster 2024-02-19T22:12:12.278410+0000 mgr.smithi044.ikbsam (mgr.14184) 808 : cluster [DBG] pgmap v568: 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-02-19T22:12:13.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:13 smithi044 bash[16231]: cluster 2024-02-19T22:12:12.278410+0000 mgr.smithi044.ikbsam (mgr.14184) 808 : cluster [DBG] pgmap v568: 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-02-19T22:12:13.839 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:13.839 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:14.509 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:14.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:14 smithi104 bash[21066]: audit 2024-02-19T22:12:13.822868+0000 mgr.smithi044.ikbsam (mgr.14184) 809 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:14.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:14 smithi044 bash[16231]: audit 2024-02-19T22:12:13.822868+0000 mgr.smithi044.ikbsam (mgr.14184) 809 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:15.510 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:15.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:15 smithi104 bash[21066]: cluster 2024-02-19T22:12:14.280077+0000 mgr.smithi044.ikbsam (mgr.14184) 810 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 22 KiB/s rd, 0 B/s wr, 35 op/s 2024-02-19T22:12:15.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:15 smithi044 bash[16231]: cluster 2024-02-19T22:12:14.280077+0000 mgr.smithi044.ikbsam (mgr.14184) 810 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 22 KiB/s rd, 0 B/s wr, 35 op/s 2024-02-19T22:12:17.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:17 smithi104 bash[21066]: cluster 2024-02-19T22:12:16.281742+0000 mgr.smithi044.ikbsam (mgr.14184) 811 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 852 B/s rd, 0 B/s wr, 1 op/s 2024-02-19T22:12:17.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:17 smithi044 bash[16231]: cluster 2024-02-19T22:12:16.281742+0000 mgr.smithi044.ikbsam (mgr.14184) 811 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 852 B/s rd, 0 B/s wr, 1 op/s 2024-02-19T22:12:18.799 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:18.799 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:19.456 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:19.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:19 smithi104 bash[21066]: cluster 2024-02-19T22:12:18.283524+0000 mgr.smithi044.ikbsam (mgr.14184) 812 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:19.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:19 smithi104 bash[21066]: audit 2024-02-19T22:12:18.780526+0000 mgr.smithi044.ikbsam (mgr.14184) 813 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:19.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:19 smithi044 bash[16231]: cluster 2024-02-19T22:12:18.283524+0000 mgr.smithi044.ikbsam (mgr.14184) 812 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:19.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:19 smithi044 bash[16231]: audit 2024-02-19T22:12:18.780526+0000 mgr.smithi044.ikbsam (mgr.14184) 813 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:20.457 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:21.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:21 smithi104 bash[21066]: cluster 2024-02-19T22:12:20.285468+0000 mgr.smithi044.ikbsam (mgr.14184) 814 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:21.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:21 smithi044 bash[16231]: cluster 2024-02-19T22:12:20.285468+0000 mgr.smithi044.ikbsam (mgr.14184) 814 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:23.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:23 smithi044 bash[16231]: cluster 2024-02-19T22:12:22.286818+0000 mgr.smithi044.ikbsam (mgr.14184) 815 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:23.756 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:23.756 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:23.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:23 smithi104 bash[21066]: cluster 2024-02-19T22:12:22.286818+0000 mgr.smithi044.ikbsam (mgr.14184) 815 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:24.457 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:24.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:24 smithi044 bash[16231]: audit 2024-02-19T22:12:23.738144+0000 mgr.smithi044.ikbsam (mgr.14184) 816 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:24.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:24 smithi104 bash[21066]: audit 2024-02-19T22:12:23.738144+0000 mgr.smithi044.ikbsam (mgr.14184) 816 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:25.458 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:25.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:25 smithi044 bash[16231]: cluster 2024-02-19T22:12:24.288395+0000 mgr.smithi044.ikbsam (mgr.14184) 817 : cluster [DBG] pgmap v574: 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-02-19T22:12:25.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:25 smithi104 bash[21066]: cluster 2024-02-19T22:12:24.288395+0000 mgr.smithi044.ikbsam (mgr.14184) 817 : cluster [DBG] pgmap v574: 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-02-19T22:12:27.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:27 smithi044 bash[16231]: cluster 2024-02-19T22:12:26.289599+0000 mgr.smithi044.ikbsam (mgr.14184) 818 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:27.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:27 smithi104 bash[21066]: cluster 2024-02-19T22:12:26.289599+0000 mgr.smithi044.ikbsam (mgr.14184) 818 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:28.781 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:28.781 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:29.442 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:29.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:29 smithi044 bash[16231]: cluster 2024-02-19T22:12:28.291296+0000 mgr.smithi044.ikbsam (mgr.14184) 819 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:29.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:29 smithi044 bash[16231]: audit 2024-02-19T22:12:28.762457+0000 mgr.smithi044.ikbsam (mgr.14184) 820 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:29.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:29 smithi104 bash[21066]: cluster 2024-02-19T22:12:28.291296+0000 mgr.smithi044.ikbsam (mgr.14184) 819 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:29.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:29 smithi104 bash[21066]: audit 2024-02-19T22:12:28.762457+0000 mgr.smithi044.ikbsam (mgr.14184) 820 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:30.443 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:31.667 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:31 smithi044 bash[16231]: cluster 2024-02-19T22:12:30.293317+0000 mgr.smithi044.ikbsam (mgr.14184) 821 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:31.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:31 smithi104 bash[21066]: cluster 2024-02-19T22:12:30.293317+0000 mgr.smithi044.ikbsam (mgr.14184) 821 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:33.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:33 smithi044 bash[16231]: cluster 2024-02-19T22:12:32.294872+0000 mgr.smithi044.ikbsam (mgr.14184) 822 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:33.747 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:33.747 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:33.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:33 smithi104 bash[21066]: cluster 2024-02-19T22:12:32.294872+0000 mgr.smithi044.ikbsam (mgr.14184) 822 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:34.453 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:34.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:34 smithi104 bash[21066]: audit 2024-02-19T22:12:33.728156+0000 mgr.smithi044.ikbsam (mgr.14184) 823 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:34.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:34 smithi044 bash[16231]: audit 2024-02-19T22:12:33.728156+0000 mgr.smithi044.ikbsam (mgr.14184) 823 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:35.454 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:35.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:35 smithi104 bash[21066]: cluster 2024-02-19T22:12:34.296562+0000 mgr.smithi044.ikbsam (mgr.14184) 824 : cluster [DBG] pgmap v579: 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-02-19T22:12:35.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:35 smithi044 bash[16231]: cluster 2024-02-19T22:12:34.296562+0000 mgr.smithi044.ikbsam (mgr.14184) 824 : cluster [DBG] pgmap v579: 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-02-19T22:12:37.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:37 smithi104 bash[21066]: cluster 2024-02-19T22:12:36.298272+0000 mgr.smithi044.ikbsam (mgr.14184) 825 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:37.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:37 smithi044 bash[16231]: cluster 2024-02-19T22:12:36.298272+0000 mgr.smithi044.ikbsam (mgr.14184) 825 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:38.763 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:38.763 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:39.434 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:39.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:39 smithi104 bash[21066]: cluster 2024-02-19T22:12:38.300071+0000 mgr.smithi044.ikbsam (mgr.14184) 826 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:39.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:39 smithi104 bash[21066]: audit 2024-02-19T22:12:38.752259+0000 mgr.smithi044.ikbsam (mgr.14184) 827 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:39.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:39 smithi044 bash[16231]: cluster 2024-02-19T22:12:38.300071+0000 mgr.smithi044.ikbsam (mgr.14184) 826 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:39.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:39 smithi044 bash[16231]: audit 2024-02-19T22:12:38.752259+0000 mgr.smithi044.ikbsam (mgr.14184) 827 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:40.436 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:41.811 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:41 smithi044 bash[16231]: cluster 2024-02-19T22:12:40.301941+0000 mgr.smithi044.ikbsam (mgr.14184) 828 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:41.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:41 smithi104 bash[21066]: cluster 2024-02-19T22:12:40.301941+0000 mgr.smithi044.ikbsam (mgr.14184) 828 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:12:43.657 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:43.657 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:43.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:43 smithi044 bash[16231]: cluster 2024-02-19T22:12:42.303460+0000 mgr.smithi044.ikbsam (mgr.14184) 829 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 B/s wr, 0 op/s 2024-02-19T22:12:43.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:43 smithi104 bash[21066]: cluster 2024-02-19T22:12:42.303460+0000 mgr.smithi044.ikbsam (mgr.14184) 829 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 B/s wr, 0 op/s 2024-02-19T22:12:44.306 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:44.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:44 smithi044 bash[16231]: audit 2024-02-19T22:12:43.645784+0000 mgr.smithi044.ikbsam (mgr.14184) 830 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:44.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:44 smithi104 bash[21066]: audit 2024-02-19T22:12:43.645784+0000 mgr.smithi044.ikbsam (mgr.14184) 830 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:45.307 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:45.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:45 smithi044 bash[16231]: cluster 2024-02-19T22:12:44.305176+0000 mgr.smithi044.ikbsam (mgr.14184) 831 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-19T22:12:45.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:45 smithi104 bash[21066]: cluster 2024-02-19T22:12:44.305176+0000 mgr.smithi044.ikbsam (mgr.14184) 831 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-19T22:12:47.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:47 smithi104 bash[21066]: cluster 2024-02-19T22:12:46.306847+0000 mgr.smithi044.ikbsam (mgr.14184) 832 : cluster [DBG] pgmap v585: 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-02-19T22:12:47.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:47 smithi044 bash[16231]: cluster 2024-02-19T22:12:46.306847+0000 mgr.smithi044.ikbsam (mgr.14184) 832 : cluster [DBG] pgmap v585: 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-02-19T22:12:48.645 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:48.645 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:49.296 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:49.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:49 smithi104 bash[21066]: cluster 2024-02-19T22:12:48.308658+0000 mgr.smithi044.ikbsam (mgr.14184) 833 : cluster [DBG] pgmap v586: 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-02-19T22:12:49.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:49 smithi104 bash[21066]: audit 2024-02-19T22:12:48.634584+0000 mgr.smithi044.ikbsam (mgr.14184) 834 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:49.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:49 smithi044 bash[16231]: cluster 2024-02-19T22:12:48.308658+0000 mgr.smithi044.ikbsam (mgr.14184) 833 : cluster [DBG] pgmap v586: 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-02-19T22:12:49.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:49 smithi044 bash[16231]: audit 2024-02-19T22:12:48.634584+0000 mgr.smithi044.ikbsam (mgr.14184) 834 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:50.297 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:51.748 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:51 smithi044 bash[16231]: cluster 2024-02-19T22:12:50.310708+0000 mgr.smithi044.ikbsam (mgr.14184) 835 : cluster [DBG] pgmap v587: 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-02-19T22:12:52.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:51 smithi104 bash[21066]: cluster 2024-02-19T22:12:50.310708+0000 mgr.smithi044.ikbsam (mgr.14184) 835 : cluster [DBG] pgmap v587: 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-02-19T22:12:53.595 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:53.595 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:10:45.842791Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fdghxl on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:53.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:53 smithi044 bash[16231]: cluster 2024-02-19T22:12:52.312339+0000 mgr.smithi044.ikbsam (mgr.14184) 836 : cluster [DBG] pgmap v588: 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-02-19T22:12:54.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:53 smithi104 bash[21066]: cluster 2024-02-19T22:12:52.312339+0000 mgr.smithi044.ikbsam (mgr.14184) 836 : cluster [DBG] pgmap v588: 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-02-19T22:12:54.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:53.584575+0000 mgr.smithi044.ikbsam (mgr.14184) 837 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:54.265483+0000 mon.smithi044 (mon.0) 893 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:54.578098+0000 mon.smithi044 (mon.0) 894 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:54.579326+0000 mon.smithi044 (mon.0) 895 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:54.587287+0000 mon.smithi044 (mon.0) 896 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:54.595824+0000 mon.smithi044 (mon.0) 897 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:12:54.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:54 smithi044 bash[16231]: audit 2024-02-19T22:12:54.611879+0000 mon.smithi044 (mon.0) 898 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:53.584575+0000 mgr.smithi044.ikbsam (mgr.14184) 837 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:54.265483+0000 mon.smithi044 (mon.0) 893 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:54.578098+0000 mon.smithi044 (mon.0) 894 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:54.579326+0000 mon.smithi044 (mon.0) 895 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:54.587287+0000 mon.smithi044 (mon.0) 896 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:54.595824+0000 mon.smithi044 (mon.0) 897 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:12:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:54 smithi104 bash[21066]: audit 2024-02-19T22:12:54.611879+0000 mon.smithi044 (mon.0) 898 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:12:55.230 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:12:55.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:55 smithi044 bash[16231]: cluster 2024-02-19T22:12:54.314115+0000 mgr.smithi044.ikbsam (mgr.14184) 838 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.9 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-19T22:12:55.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:55 smithi044 bash[16231]: cluster 2024-02-19T22:12:54.588256+0000 mgr.smithi044.ikbsam (mgr.14184) 839 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-19T22:12:55.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:55 smithi044 bash[16231]: cephadm 2024-02-19T22:12:54.615693+0000 mgr.smithi044.ikbsam (mgr.14184) 840 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.mrbgxt on smithi104 2024-02-19T22:12:55.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:55 smithi044 bash[16231]: cluster 2024-02-19T22:12:54.632514+0000 mon.smithi044 (mon.0) 899 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:12:55.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:55 smithi044 bash[16231]: cluster 2024-02-19T22:12:54.632602+0000 mon.smithi044 (mon.0) 900 : cluster [INF] Cluster is now healthy 2024-02-19T22:12:56.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:55 smithi104 bash[21066]: cluster 2024-02-19T22:12:54.314115+0000 mgr.smithi044.ikbsam (mgr.14184) 838 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.9 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-19T22:12:56.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:55 smithi104 bash[21066]: cluster 2024-02-19T22:12:54.588256+0000 mgr.smithi044.ikbsam (mgr.14184) 839 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 0 B/s wr, 3 op/s 2024-02-19T22:12:56.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:55 smithi104 bash[21066]: cephadm 2024-02-19T22:12:54.615693+0000 mgr.smithi044.ikbsam (mgr.14184) 840 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.mrbgxt on smithi104 2024-02-19T22:12:56.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:55 smithi104 bash[21066]: cluster 2024-02-19T22:12:54.632514+0000 mon.smithi044 (mon.0) 899 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:12:56.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:55 smithi104 bash[21066]: cluster 2024-02-19T22:12:54.632602+0000 mon.smithi044 (mon.0) 900 : cluster [INF] Cluster is now healthy 2024-02-19T22:12:57.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:57 smithi044 bash[16231]: cluster 2024-02-19T22:12:56.589669+0000 mgr.smithi044.ikbsam (mgr.14184) 841 : cluster [DBG] pgmap v591: 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-02-19T22:12:58.025 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:57 smithi104 bash[21066]: cluster 2024-02-19T22:12:56.589669+0000 mgr.smithi044.ikbsam (mgr.14184) 841 : cluster [DBG] pgmap v591: 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-02-19T22:12:58.560 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:12:58.560 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:50.183743Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.whxyai on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-whxyai\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.whxyai\nDeploy daemon haproxy.nfs.foo.smithi104.whxyai ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.255344Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.quynfh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-quynfh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.quynfh\nDeploy daemon haproxy.nfs.foo.smithi044.quynfh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:11:54.259419Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.qbjbcu on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:12:59.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:58 smithi104 bash[21066]: audit 2024-02-19T22:12:58.394131+0000 mon.smithi044 (mon.0) 901 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.mrbgxt"}]: dispatch 2024-02-19T22:12:59.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:58 smithi104 bash[21066]: audit 2024-02-19T22:12:58.640352+0000 mon.smithi044 (mon.0) 902 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:12:59.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:58 smithi044 bash[16231]: audit 2024-02-19T22:12:58.394131+0000 mon.smithi044 (mon.0) 901 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.mrbgxt"}]: dispatch 2024-02-19T22:12:59.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:58 smithi044 bash[16231]: audit 2024-02-19T22:12:58.640352+0000 mon.smithi044 (mon.0) 902 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:12:59.277 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:00.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: cephadm 2024-02-19T22:12:58.392933+0000 mgr.smithi044.ikbsam (mgr.14184) 842 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.mrbgxt ... 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:13:00.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.mrbgxt ... 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: cephadm 2024-02-19T22:12:58.393509+0000 mgr.smithi044.ikbsam (mgr.14184) 843 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: cephadm 2024-02-19T22:12:58.395739+0000 mgr.smithi044.ikbsam (mgr.14184) 844 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.mrbgxt ... 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: cephadm 2024-02-19T22:12:58.399781+0000 mgr.smithi044.ikbsam (mgr.14184) 845 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.cuisvc on smithi044 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: audit 2024-02-19T22:12:58.545859+0000 mgr.smithi044.ikbsam (mgr.14184) 846 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:00.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:12:59 smithi104 bash[21066]: cluster 2024-02-19T22:12:58.590753+0000 mgr.smithi044.ikbsam (mgr.14184) 847 : cluster [DBG] pgmap v592: 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-02-19T22:13:00.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: cephadm 2024-02-19T22:12:58.392933+0000 mgr.smithi044.ikbsam (mgr.14184) 842 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:00.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.mrbgxt ... 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:00.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:13:00.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.mrbgxt ... 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:00.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:00.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:00.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: cephadm 2024-02-19T22:12:58.393509+0000 mgr.smithi044.ikbsam (mgr.14184) 843 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: cephadm 2024-02-19T22:12:58.395739+0000 mgr.smithi044.ikbsam (mgr.14184) 844 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.162 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.mrbgxt ... 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:00.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: cephadm 2024-02-19T22:12:58.399781+0000 mgr.smithi044.ikbsam (mgr.14184) 845 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.cuisvc on smithi044 2024-02-19T22:13:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: audit 2024-02-19T22:12:58.545859+0000 mgr.smithi044.ikbsam (mgr.14184) 846 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:00.164 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:12:59 smithi044 bash[16231]: cluster 2024-02-19T22:12:58.590753+0000 mgr.smithi044.ikbsam (mgr.14184) 847 : cluster [DBG] pgmap v592: 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-02-19T22:13:00.277 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:01.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:01 smithi044 bash[16231]: cluster 2024-02-19T22:13:00.592442+0000 mgr.smithi044.ikbsam (mgr.14184) 848 : cluster [DBG] pgmap v593: 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-02-19T22:13:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:01 smithi104 bash[21066]: cluster 2024-02-19T22:13:00.592442+0000 mgr.smithi044.ikbsam (mgr.14184) 848 : cluster [DBG] pgmap v593: 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-02-19T22:13:03.734 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:03.734 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:04.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cluster 2024-02-19T22:13:02.593670+0000 mgr.smithi044.ikbsam (mgr.14184) 849 : cluster [DBG] pgmap v594: 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-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cephadm 2024-02-19T22:13:02.885104+0000 mgr.smithi044.ikbsam (mgr.14184) 850 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.cuisvc ... 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:13:04.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.cuisvc ... 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:04.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cephadm 2024-02-19T22:13:02.885411+0000 mgr.smithi044.ikbsam (mgr.14184) 851 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: audit 2024-02-19T22:13:02.885891+0000 mon.smithi044 (mon.0) 903 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.cuisvc"}]: dispatch 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cephadm 2024-02-19T22:13:02.886897+0000 mgr.smithi044.ikbsam (mgr.14184) 852 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.cuisvc ... 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cephadm 2024-02-19T22:13:02.891212+0000 mgr.smithi044.ikbsam (mgr.14184) 853 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:13:04.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cephadm 2024-02-19T22:13:02.894119+0000 mgr.smithi044.ikbsam (mgr.14184) 854 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:13:04.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:03 smithi104 bash[21066]: cluster 2024-02-19T22:13:02.895294+0000 mgr.smithi044.ikbsam (mgr.14184) 855 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cluster 2024-02-19T22:13:02.593670+0000 mgr.smithi044.ikbsam (mgr.14184) 849 : cluster [DBG] pgmap v594: 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-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cephadm 2024-02-19T22:13:02.885104+0000 mgr.smithi044.ikbsam (mgr.14184) 850 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.cuisvc ... 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.cuisvc ... 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cephadm 2024-02-19T22:13:02.885411+0000 mgr.smithi044.ikbsam (mgr.14184) 851 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: audit 2024-02-19T22:13:02.885891+0000 mon.smithi044 (mon.0) 903 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.cuisvc"}]: dispatch 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cephadm 2024-02-19T22:13:02.886897+0000 mgr.smithi044.ikbsam (mgr.14184) 852 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc 2024-02-19T22:13:04.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.cuisvc ... 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cephadm 2024-02-19T22:13:02.891212+0000 mgr.smithi044.ikbsam (mgr.14184) 853 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cephadm 2024-02-19T22:13:02.894119+0000 mgr.smithi044.ikbsam (mgr.14184) 854 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:13:04.163 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:03 smithi044 bash[16231]: cluster 2024-02-19T22:13:02.895294+0000 mgr.smithi044.ikbsam (mgr.14184) 855 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:13:04.444 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:04.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:04 smithi044 bash[16231]: cluster 2024-02-19T22:13:03.669645+0000 mon.smithi044 (mon.0) 904 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:13:04.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:04 smithi044 bash[16231]: audit 2024-02-19T22:13:03.716551+0000 mgr.smithi044.ikbsam (mgr.14184) 856 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:04.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:04 smithi044 bash[16231]: audit 2024-02-19T22:13:04.500137+0000 mon.smithi044 (mon.0) 905 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:13:05.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:04 smithi104 bash[21066]: cluster 2024-02-19T22:13:03.669645+0000 mon.smithi044 (mon.0) 904 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:13:05.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:04 smithi104 bash[21066]: audit 2024-02-19T22:13:03.716551+0000 mgr.smithi044.ikbsam (mgr.14184) 856 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:05.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:04 smithi104 bash[21066]: audit 2024-02-19T22:13:04.500137+0000 mon.smithi044 (mon.0) 905 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:13:05.445 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:05.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:05 smithi044 bash[16231]: cluster 2024-02-19T22:13:04.897336+0000 mgr.smithi044.ikbsam (mgr.14184) 857 : cluster [DBG] pgmap v596: 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-02-19T22:13:06.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:05 smithi104 bash[21066]: cluster 2024-02-19T22:13:04.897336+0000 mgr.smithi044.ikbsam (mgr.14184) 857 : cluster [DBG] pgmap v596: 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-02-19T22:13:08.278 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:07 smithi044 bash[16231]: cluster 2024-02-19T22:13:06.898443+0000 mgr.smithi044.ikbsam (mgr.14184) 858 : cluster [DBG] pgmap v597: 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-02-19T22:13:08.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:07 smithi104 bash[21066]: cluster 2024-02-19T22:13:06.898443+0000 mgr.smithi044.ikbsam (mgr.14184) 858 : cluster [DBG] pgmap v597: 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-02-19T22:13:08.731 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:08.731 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:09.405 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:09 smithi104 bash[21066]: audit 2024-02-19T22:13:08.718628+0000 mgr.smithi044.ikbsam (mgr.14184) 859 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:10.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:09 smithi104 bash[21066]: cluster 2024-02-19T22:13:08.900315+0000 mgr.smithi044.ikbsam (mgr.14184) 860 : cluster [DBG] pgmap v598: 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-02-19T22:13:10.406 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:09 smithi044 bash[16231]: audit 2024-02-19T22:13:08.718628+0000 mgr.smithi044.ikbsam (mgr.14184) 859 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:09 smithi044 bash[16231]: cluster 2024-02-19T22:13:08.900315+0000 mgr.smithi044.ikbsam (mgr.14184) 860 : cluster [DBG] pgmap v598: 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-02-19T22:13:12.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:11 smithi044 bash[16231]: cluster 2024-02-19T22:13:10.902157+0000 mgr.smithi044.ikbsam (mgr.14184) 861 : cluster [DBG] pgmap v599: 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-02-19T22:13:12.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:11 smithi104 bash[21066]: cluster 2024-02-19T22:13:10.902157+0000 mgr.smithi044.ikbsam (mgr.14184) 861 : cluster [DBG] pgmap v599: 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-02-19T22:13:13.706 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:13.706 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:14.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:13 smithi044 bash[16231]: cluster 2024-02-19T22:13:12.903843+0000 mgr.smithi044.ikbsam (mgr.14184) 862 : cluster [DBG] pgmap v600: 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-02-19T22:13:14.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:13 smithi044 bash[16231]: audit 2024-02-19T22:13:13.642779+0000 mon.smithi044 (mon.0) 906 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:13:14.356 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:13 smithi104 bash[21066]: cluster 2024-02-19T22:13:12.903843+0000 mgr.smithi044.ikbsam (mgr.14184) 862 : cluster [DBG] pgmap v600: 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-02-19T22:13:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:13 smithi104 bash[21066]: audit 2024-02-19T22:13:13.642779+0000 mon.smithi044 (mon.0) 906 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:13:15.356 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:15.368 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:14 smithi044 bash[16231]: audit 2024-02-19T22:13:13.680834+0000 mgr.smithi044.ikbsam (mgr.14184) 863 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:15.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:14 smithi104 bash[21066]: audit 2024-02-19T22:13:13.680834+0000 mgr.smithi044.ikbsam (mgr.14184) 863 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:16.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:15 smithi104 bash[21066]: cluster 2024-02-19T22:13:14.905719+0000 mgr.smithi044.ikbsam (mgr.14184) 864 : cluster [DBG] pgmap v601: 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-02-19T22:13:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:15 smithi044 bash[16231]: cluster 2024-02-19T22:13:14.905719+0000 mgr.smithi044.ikbsam (mgr.14184) 864 : cluster [DBG] pgmap v601: 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-02-19T22:13:18.314 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:17 smithi044 bash[16231]: cluster 2024-02-19T22:13:16.906753+0000 mgr.smithi044.ikbsam (mgr.14184) 865 : 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-02-19T22:13:18.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:17 smithi104 bash[21066]: cluster 2024-02-19T22:13:16.906753+0000 mgr.smithi044.ikbsam (mgr.14184) 865 : 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-02-19T22:13:18.674 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:18.674 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:19.370 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:20.371 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:20.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:20 smithi104 bash[21066]: audit 2024-02-19T22:13:18.656066+0000 mgr.smithi044.ikbsam (mgr.14184) 866 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:20.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:20 smithi104 bash[21066]: cluster 2024-02-19T22:13:18.908531+0000 mgr.smithi044.ikbsam (mgr.14184) 867 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:20.383 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:20 smithi044 bash[16231]: audit 2024-02-19T22:13:18.656066+0000 mgr.smithi044.ikbsam (mgr.14184) 866 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:20.383 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:20 smithi044 bash[16231]: cluster 2024-02-19T22:13:18.908531+0000 mgr.smithi044.ikbsam (mgr.14184) 867 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:22.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:22 smithi104 bash[21066]: cluster 2024-02-19T22:13:20.910399+0000 mgr.smithi044.ikbsam (mgr.14184) 868 : 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-02-19T22:13:22.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:22 smithi044 bash[16231]: cluster 2024-02-19T22:13:20.910399+0000 mgr.smithi044.ikbsam (mgr.14184) 868 : 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-02-19T22:13:23.612 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:23.612 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:23.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:23 smithi044 bash[16231]: cluster 2024-02-19T22:13:22.912107+0000 mgr.smithi044.ikbsam (mgr.14184) 869 : 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-02-19T22:13:24.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:23 smithi104 bash[21066]: cluster 2024-02-19T22:13:22.912107+0000 mgr.smithi044.ikbsam (mgr.14184) 869 : 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-02-19T22:13:24.229 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:24.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:24 smithi044 bash[16231]: audit 2024-02-19T22:13:23.598922+0000 mgr.smithi044.ikbsam (mgr.14184) 870 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:25.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:24 smithi104 bash[21066]: audit 2024-02-19T22:13:23.598922+0000 mgr.smithi044.ikbsam (mgr.14184) 870 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:25.230 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:25.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:25 smithi044 bash[16231]: cluster 2024-02-19T22:13:24.913993+0000 mgr.smithi044.ikbsam (mgr.14184) 871 : cluster [DBG] pgmap v606: 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-02-19T22:13:26.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:25 smithi104 bash[21066]: cluster 2024-02-19T22:13:24.913993+0000 mgr.smithi044.ikbsam (mgr.14184) 871 : cluster [DBG] pgmap v606: 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-02-19T22:13:28.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:27 smithi104 bash[21066]: cluster 2024-02-19T22:13:26.915065+0000 mgr.smithi044.ikbsam (mgr.14184) 872 : 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-02-19T22:13:28.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:27 smithi044 bash[16231]: cluster 2024-02-19T22:13:26.915065+0000 mgr.smithi044.ikbsam (mgr.14184) 872 : 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-02-19T22:13:28.558 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:28.559 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:29.282 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:30.283 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:30.295 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:29 smithi044 bash[16231]: audit 2024-02-19T22:13:28.540188+0000 mgr.smithi044.ikbsam (mgr.14184) 873 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:30.295 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:29 smithi044 bash[16231]: cluster 2024-02-19T22:13:28.916916+0000 mgr.smithi044.ikbsam (mgr.14184) 874 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:30.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:29 smithi104 bash[21066]: audit 2024-02-19T22:13:28.540188+0000 mgr.smithi044.ikbsam (mgr.14184) 873 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:30.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:29 smithi104 bash[21066]: cluster 2024-02-19T22:13:28.916916+0000 mgr.smithi044.ikbsam (mgr.14184) 874 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:32.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:31 smithi104 bash[21066]: cluster 2024-02-19T22:13:30.918847+0000 mgr.smithi044.ikbsam (mgr.14184) 875 : 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-02-19T22:13:32.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:31 smithi044 bash[16231]: cluster 2024-02-19T22:13:30.918847+0000 mgr.smithi044.ikbsam (mgr.14184) 875 : 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-02-19T22:13:33.578 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:33.579 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:34.195 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:34.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:33 smithi104 bash[21066]: cluster 2024-02-19T22:13:32.920558+0000 mgr.smithi044.ikbsam (mgr.14184) 876 : 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-02-19T22:13:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:33 smithi044 bash[16231]: cluster 2024-02-19T22:13:32.920558+0000 mgr.smithi044.ikbsam (mgr.14184) 876 : 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-02-19T22:13:35.196 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:35.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:34 smithi104 bash[21066]: audit 2024-02-19T22:13:33.561506+0000 mgr.smithi044.ikbsam (mgr.14184) 877 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:35.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:34 smithi044 bash[16231]: audit 2024-02-19T22:13:33.561506+0000 mgr.smithi044.ikbsam (mgr.14184) 877 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:36.290 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:36 smithi044 bash[16231]: cluster 2024-02-19T22:13:34.922419+0000 mgr.smithi044.ikbsam (mgr.14184) 878 : cluster [DBG] pgmap v611: 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-02-19T22:13:36.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:36 smithi104 bash[21066]: cluster 2024-02-19T22:13:34.922419+0000 mgr.smithi044.ikbsam (mgr.14184) 878 : cluster [DBG] pgmap v611: 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-02-19T22:13:38.362 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:38.362 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:38.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:38 smithi104 bash[21066]: cluster 2024-02-19T22:13:36.923409+0000 mgr.smithi044.ikbsam (mgr.14184) 879 : 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-02-19T22:13:38.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:38 smithi044 bash[16231]: cluster 2024-02-19T22:13:36.923409+0000 mgr.smithi044.ikbsam (mgr.14184) 879 : 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-02-19T22:13:39.043 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:40.045 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:40.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:40 smithi104 bash[21066]: audit 2024-02-19T22:13:38.351531+0000 mgr.smithi044.ikbsam (mgr.14184) 880 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:40.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:40 smithi104 bash[21066]: cluster 2024-02-19T22:13:38.925203+0000 mgr.smithi044.ikbsam (mgr.14184) 881 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:40 smithi044 bash[16231]: audit 2024-02-19T22:13:38.351531+0000 mgr.smithi044.ikbsam (mgr.14184) 880 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:40.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:40 smithi044 bash[16231]: cluster 2024-02-19T22:13:38.925203+0000 mgr.smithi044.ikbsam (mgr.14184) 881 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:41.286 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:41 smithi044 bash[16231]: cluster 2024-02-19T22:13:40.927179+0000 mgr.smithi044.ikbsam (mgr.14184) 882 : 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-02-19T22:13:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:41 smithi104 bash[21066]: cluster 2024-02-19T22:13:40.927179+0000 mgr.smithi044.ikbsam (mgr.14184) 882 : 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-02-19T22:13:43.355 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:43.356 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:43.963 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:44.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:43 smithi104 bash[21066]: cluster 2024-02-19T22:13:42.929080+0000 mgr.smithi044.ikbsam (mgr.14184) 883 : 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-02-19T22:13:44.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:43 smithi044 bash[16231]: cluster 2024-02-19T22:13:42.929080+0000 mgr.smithi044.ikbsam (mgr.14184) 883 : 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-02-19T22:13:44.965 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:44 smithi104 bash[21066]: audit 2024-02-19T22:13:43.337515+0000 mgr.smithi044.ikbsam (mgr.14184) 884 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:44 smithi044 bash[16231]: audit 2024-02-19T22:13:43.337515+0000 mgr.smithi044.ikbsam (mgr.14184) 884 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:46.359 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:46 smithi044 bash[16231]: cluster 2024-02-19T22:13:44.930937+0000 mgr.smithi044.ikbsam (mgr.14184) 885 : cluster [DBG] pgmap v616: 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-02-19T22:13:46.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:46 smithi104 bash[21066]: cluster 2024-02-19T22:13:44.930937+0000 mgr.smithi044.ikbsam (mgr.14184) 885 : cluster [DBG] pgmap v616: 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-02-19T22:13:48.174 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:48.174 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:48.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:48 smithi104 bash[21066]: cluster 2024-02-19T22:13:46.932021+0000 mgr.smithi044.ikbsam (mgr.14184) 886 : 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-02-19T22:13:48.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:48 smithi044 bash[16231]: cluster 2024-02-19T22:13:46.932021+0000 mgr.smithi044.ikbsam (mgr.14184) 886 : 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-02-19T22:13:48.833 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:49.835 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:50.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:50 smithi044 bash[16231]: audit 2024-02-19T22:13:48.164048+0000 mgr.smithi044.ikbsam (mgr.14184) 887 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:50.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:50 smithi044 bash[16231]: cluster 2024-02-19T22:13:48.933844+0000 mgr.smithi044.ikbsam (mgr.14184) 888 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:50.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:50 smithi104 bash[21066]: audit 2024-02-19T22:13:48.164048+0000 mgr.smithi044.ikbsam (mgr.14184) 887 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:50.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:50 smithi104 bash[21066]: cluster 2024-02-19T22:13:48.933844+0000 mgr.smithi044.ikbsam (mgr.14184) 888 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:51.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:51 smithi044 bash[16231]: cluster 2024-02-19T22:13:50.935951+0000 mgr.smithi044.ikbsam (mgr.14184) 889 : 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-02-19T22:13:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:51 smithi104 bash[21066]: cluster 2024-02-19T22:13:50.935951+0000 mgr.smithi044.ikbsam (mgr.14184) 889 : 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-02-19T22:13:53.124 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:53.124 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:53.800 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:54.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:53 smithi044 bash[16231]: cluster 2024-02-19T22:13:52.937648+0000 mgr.smithi044.ikbsam (mgr.14184) 890 : 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-02-19T22:13:54.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:53 smithi104 bash[21066]: cluster 2024-02-19T22:13:52.937648+0000 mgr.smithi044.ikbsam (mgr.14184) 890 : 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-02-19T22:13:54.801 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:13:55.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:54 smithi044 bash[16231]: audit 2024-02-19T22:13:53.113745+0000 mgr.smithi044.ikbsam (mgr.14184) 891 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:54 smithi104 bash[21066]: audit 2024-02-19T22:13:53.113745+0000 mgr.smithi044.ikbsam (mgr.14184) 891 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:56.148 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:56 smithi044 bash[16231]: cluster 2024-02-19T22:13:54.939505+0000 mgr.smithi044.ikbsam (mgr.14184) 892 : cluster [DBG] pgmap v621: 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-02-19T22:13:56.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:56 smithi104 bash[21066]: cluster 2024-02-19T22:13:54.939505+0000 mgr.smithi044.ikbsam (mgr.14184) 892 : cluster [DBG] pgmap v621: 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-02-19T22:13:57.936 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:13:57.936 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:13:58.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:58 smithi104 bash[21066]: cluster 2024-02-19T22:13:56.940607+0000 mgr.smithi044.ikbsam (mgr.14184) 893 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:58.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:58 smithi044 bash[16231]: cluster 2024-02-19T22:13:56.940607+0000 mgr.smithi044.ikbsam (mgr.14184) 893 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:58.625 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:13:59.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:59 smithi104 bash[21066]: audit 2024-02-19T22:13:57.925810+0000 mgr.smithi044.ikbsam (mgr.14184) 894 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:59.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:13:59 smithi104 bash[21066]: cluster 2024-02-19T22:13:58.942416+0000 mgr.smithi044.ikbsam (mgr.14184) 895 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:59.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:59 smithi044 bash[16231]: audit 2024-02-19T22:13:57.925810+0000 mgr.smithi044.ikbsam (mgr.14184) 894 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:13:59.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:13:59 smithi044 bash[16231]: cluster 2024-02-19T22:13:58.942416+0000 mgr.smithi044.ikbsam (mgr.14184) 895 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:13:59.626 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:02 smithi104 bash[21066]: cluster 2024-02-19T22:14:00.944328+0000 mgr.smithi044.ikbsam (mgr.14184) 896 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:02.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:02 smithi044 bash[16231]: cluster 2024-02-19T22:14:00.944328+0000 mgr.smithi044.ikbsam (mgr.14184) 896 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:02.900 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:02.900 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:03 smithi104 bash[21066]: audit 2024-02-19T22:14:02.897663+0000 mon.smithi044 (mon.0) 907 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:14:03.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:03 smithi044 bash[16231]: audit 2024-02-19T22:14:02.897663+0000 mon.smithi044 (mon.0) 907 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:14:03.610 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:04.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:04 smithi104 bash[21066]: audit 2024-02-19T22:14:02.881830+0000 mgr.smithi044.ikbsam (mgr.14184) 897 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:04.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:04 smithi104 bash[21066]: cluster 2024-02-19T22:14:02.945739+0000 mgr.smithi044.ikbsam (mgr.14184) 898 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:04.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:04 smithi044 bash[16231]: audit 2024-02-19T22:14:02.881830+0000 mgr.smithi044.ikbsam (mgr.14184) 897 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:04.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:04 smithi044 bash[16231]: cluster 2024-02-19T22:14:02.945739+0000 mgr.smithi044.ikbsam (mgr.14184) 898 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:04.611 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:05 smithi104 bash[21066]: cluster 2024-02-19T22:14:04.947606+0000 mgr.smithi044.ikbsam (mgr.14184) 899 : cluster [DBG] pgmap v626: 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-02-19T22:14:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:05 smithi044 bash[16231]: cluster 2024-02-19T22:14:04.947606+0000 mgr.smithi044.ikbsam (mgr.14184) 899 : cluster [DBG] pgmap v626: 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-02-19T22:14:07.833 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:07.833 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:03:40.503954Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:03:40.504192Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:03:40.504424Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:03:40.503705Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:03:40.503359Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:03:40.505777Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:03:40.504666Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:03:40.504899Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:03:40.505670Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:08.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:08 smithi044 bash[16231]: cluster 2024-02-19T22:14:06.948647+0000 mgr.smithi044.ikbsam (mgr.14184) 900 : 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-02-19T22:14:08.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:08 smithi104 bash[21066]: cluster 2024-02-19T22:14:06.948647+0000 mgr.smithi044.ikbsam (mgr.14184) 900 : 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-02-19T22:14:08.565 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:09.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:09 smithi104 bash[21066]: audit 2024-02-19T22:14:07.822338+0000 mgr.smithi044.ikbsam (mgr.14184) 901 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:09 smithi044 bash[16231]: audit 2024-02-19T22:14:07.822338+0000 mgr.smithi044.ikbsam (mgr.14184) 901 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:09.566 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:10.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: cluster 2024-02-19T22:14:08.949826+0000 mgr.smithi044.ikbsam (mgr.14184) 902 : 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-02-19T22:14:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: audit 2024-02-19T22:14:09.232509+0000 mon.smithi044 (mon.0) 908 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: audit 2024-02-19T22:14:09.534333+0000 mon.smithi044 (mon.0) 909 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:14:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: audit 2024-02-19T22:14:09.535539+0000 mon.smithi044 (mon.0) 910 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:14:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: audit 2024-02-19T22:14:09.541742+0000 mon.smithi044 (mon.0) 911 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: audit 2024-02-19T22:14:09.548681+0000 mon.smithi044 (mon.0) 912 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:14:10.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:10 smithi104 bash[21066]: audit 2024-02-19T22:14:09.566965+0000 mon.smithi044 (mon.0) 913 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: cluster 2024-02-19T22:14:08.949826+0000 mgr.smithi044.ikbsam (mgr.14184) 902 : 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-02-19T22:14:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: audit 2024-02-19T22:14:09.232509+0000 mon.smithi044 (mon.0) 908 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: audit 2024-02-19T22:14:09.534333+0000 mon.smithi044 (mon.0) 909 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:14:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: audit 2024-02-19T22:14:09.535539+0000 mon.smithi044 (mon.0) 910 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:14:10.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: audit 2024-02-19T22:14:09.541742+0000 mon.smithi044 (mon.0) 911 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:10.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: audit 2024-02-19T22:14:09.548681+0000 mon.smithi044 (mon.0) 912 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:14:10.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:10 smithi044 bash[16231]: audit 2024-02-19T22:14:09.566965+0000 mon.smithi044 (mon.0) 913 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:11.107 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:11 smithi044 bash[16231]: cluster 2024-02-19T22:14:09.542922+0000 mgr.smithi044.ikbsam (mgr.14184) 903 : cluster [DBG] pgmap v629: 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-02-19T22:14:11.107 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:11 smithi044 bash[16231]: cephadm 2024-02-19T22:14:09.570667+0000 mgr.smithi044.ikbsam (mgr.14184) 904 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.jqnjtu on smithi104 2024-02-19T22:14:11.107 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:11 smithi044 bash[16231]: cluster 2024-02-19T22:14:10.539692+0000 mon.smithi044 (mon.0) 914 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:14:11.107 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:11 smithi044 bash[16231]: cluster 2024-02-19T22:14:10.539779+0000 mon.smithi044 (mon.0) 915 : cluster [INF] Cluster is now healthy 2024-02-19T22:14:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:11 smithi104 bash[21066]: cluster 2024-02-19T22:14:09.542922+0000 mgr.smithi044.ikbsam (mgr.14184) 903 : cluster [DBG] pgmap v629: 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-02-19T22:14:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:11 smithi104 bash[21066]: cephadm 2024-02-19T22:14:09.570667+0000 mgr.smithi044.ikbsam (mgr.14184) 904 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.jqnjtu on smithi104 2024-02-19T22:14:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:11 smithi104 bash[21066]: cluster 2024-02-19T22:14:10.539692+0000 mon.smithi044 (mon.0) 914 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:14:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:11 smithi104 bash[21066]: cluster 2024-02-19T22:14:10.539779+0000 mon.smithi044 (mon.0) 915 : cluster [INF] Cluster is now healthy 2024-02-19T22:14:12.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:12 smithi104 bash[21066]: cluster 2024-02-19T22:14:11.544342+0000 mgr.smithi044.ikbsam (mgr.14184) 905 : cluster [DBG] pgmap v630: 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-02-19T22:14:12.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:12 smithi044 bash[16231]: cluster 2024-02-19T22:14:11.544342+0000 mgr.smithi044.ikbsam (mgr.14184) 905 : cluster [DBG] pgmap v630: 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-02-19T22:14:13.080 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:13.081 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:11:54.261575Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.uleeee on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:12:58.395486Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.mrbgxt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-mrbgxt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.mrbgxt\nDeploy daemon haproxy.nfs.foo.smithi104.mrbgxt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.886754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.cuisvc on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-cuisvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.cuisvc\nDeploy daemon haproxy.nfs.foo.smithi044.cuisvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:13:02.890987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.wxnprf on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:13.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:13 smithi104 bash[21066]: audit 2024-02-19T22:14:13.417611+0000 mon.smithi044 (mon.0) 916 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.jqnjtu"}]: dispatch 2024-02-19T22:14:13.727 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:13 smithi044 bash[16231]: audit 2024-02-19T22:14:13.417611+0000 mon.smithi044 (mon.0) 916 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.jqnjtu"}]: dispatch 2024-02-19T22:14:13.730 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:14.731 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: audit 2024-02-19T22:14:13.064398+0000 mgr.smithi044.ikbsam (mgr.14184) 906 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: cephadm 2024-02-19T22:14:13.416174+0000 mgr.smithi044.ikbsam (mgr.14184) 907 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.jqnjtu ... 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:14.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.jqnjtu ... 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: cephadm 2024-02-19T22:14:13.416784+0000 mgr.smithi044.ikbsam (mgr.14184) 908 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: cephadm 2024-02-19T22:14:13.419493+0000 mgr.smithi044.ikbsam (mgr.14184) 909 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:14.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.jqnjtu ... 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: cephadm 2024-02-19T22:14:13.424307+0000 mgr.smithi044.ikbsam (mgr.14184) 910 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.rfzcmi on smithi044 2024-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: cluster 2024-02-19T22:14:13.545838+0000 mgr.smithi044.ikbsam (mgr.14184) 911 : cluster [DBG] pgmap v631: 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-02-19T22:14:14.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:14 smithi044 bash[16231]: audit 2024-02-19T22:14:13.641952+0000 mon.smithi044 (mon.0) 917 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: audit 2024-02-19T22:14:13.064398+0000 mgr.smithi044.ikbsam (mgr.14184) 906 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: cephadm 2024-02-19T22:14:13.416174+0000 mgr.smithi044.ikbsam (mgr.14184) 907 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.jqnjtu ... 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.jqnjtu ... 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: cephadm 2024-02-19T22:14:13.416784+0000 mgr.smithi044.ikbsam (mgr.14184) 908 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: cephadm 2024-02-19T22:14:13.419493+0000 mgr.smithi044.ikbsam (mgr.14184) 909 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.jqnjtu ... 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: cephadm 2024-02-19T22:14:13.424307+0000 mgr.smithi044.ikbsam (mgr.14184) 910 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.rfzcmi on smithi044 2024-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: cluster 2024-02-19T22:14:13.545838+0000 mgr.smithi044.ikbsam (mgr.14184) 911 : cluster [DBG] pgmap v631: 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-02-19T22:14:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:14 smithi104 bash[21066]: audit 2024-02-19T22:14:13.641952+0000 mon.smithi044 (mon.0) 917 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:16.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:16 smithi044 bash[16231]: cluster 2024-02-19T22:14:15.547464+0000 mgr.smithi044.ikbsam (mgr.14184) 912 : cluster [DBG] pgmap v632: 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-02-19T22:14:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:16 smithi104 bash[21066]: cluster 2024-02-19T22:14:15.547464+0000 mgr.smithi044.ikbsam (mgr.14184) 912 : cluster [DBG] pgmap v632: 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-02-19T22:14:17.875 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:17 smithi044 bash[16231]: audit 2024-02-19T22:14:17.635384+0000 mon.smithi044 (mon.0) 918 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.rfzcmi"}]: dispatch 2024-02-19T22:14:18.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:17 smithi104 bash[21066]: audit 2024-02-19T22:14:17.635384+0000 mon.smithi044 (mon.0) 918 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.rfzcmi"}]: dispatch 2024-02-19T22:14:18.348 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:18.348 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:19.088 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:19.088 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cluster 2024-02-19T22:14:17.548685+0000 mgr.smithi044.ikbsam (mgr.14184) 913 : cluster [DBG] pgmap v633: 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-02-19T22:14:19.088 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cephadm 2024-02-19T22:14:17.634227+0000 mgr.smithi044.ikbsam (mgr.14184) 914 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.088 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:19.088 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.088 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.088 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.rfzcmi ... 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:19.089 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.rfzcmi ... 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cephadm 2024-02-19T22:14:17.634806+0000 mgr.smithi044.ikbsam (mgr.14184) 915 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cephadm 2024-02-19T22:14:17.636873+0000 mgr.smithi044.ikbsam (mgr.14184) 916 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.090 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.rfzcmi ... 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cephadm 2024-02-19T22:14:17.641186+0000 mgr.smithi044.ikbsam (mgr.14184) 917 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cephadm 2024-02-19T22:14:17.643151+0000 mgr.smithi044.ikbsam (mgr.14184) 918 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cluster 2024-02-19T22:14:17.644195+0000 mgr.smithi044.ikbsam (mgr.14184) 919 : cluster [DBG] pgmap v634: 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-02-19T22:14:19.091 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:18 smithi044 bash[16231]: cluster 2024-02-19T22:14:17.649534+0000 mon.smithi044 (mon.0) 919 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cluster 2024-02-19T22:14:17.548685+0000 mgr.smithi044.ikbsam (mgr.14184) 913 : cluster [DBG] pgmap v633: 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-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cephadm 2024-02-19T22:14:17.634227+0000 mgr.smithi044.ikbsam (mgr.14184) 914 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.rfzcmi ... 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.rfzcmi ... 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cephadm 2024-02-19T22:14:17.634806+0000 mgr.smithi044.ikbsam (mgr.14184) 915 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cephadm 2024-02-19T22:14:17.636873+0000 mgr.smithi044.ikbsam (mgr.14184) 916 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi 2024-02-19T22:14:19.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.rfzcmi ... 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:14:19.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:14:19.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cephadm 2024-02-19T22:14:17.641186+0000 mgr.smithi044.ikbsam (mgr.14184) 917 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:14:19.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cephadm 2024-02-19T22:14:17.643151+0000 mgr.smithi044.ikbsam (mgr.14184) 918 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:14:19.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cluster 2024-02-19T22:14:17.644195+0000 mgr.smithi044.ikbsam (mgr.14184) 919 : cluster [DBG] pgmap v634: 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-02-19T22:14:19.135 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:18 smithi104 bash[21066]: cluster 2024-02-19T22:14:17.649534+0000 mon.smithi044 (mon.0) 919 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:14:20.089 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:20.102 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:19 smithi044 bash[16231]: audit 2024-02-19T22:14:18.330962+0000 mgr.smithi044.ikbsam (mgr.14184) 920 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:20.102 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:19 smithi044 bash[16231]: audit 2024-02-19T22:14:19.567261+0000 mon.smithi044 (mon.0) 920 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:20.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:19 smithi104 bash[21066]: audit 2024-02-19T22:14:18.330962+0000 mgr.smithi044.ikbsam (mgr.14184) 920 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:20.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:19 smithi104 bash[21066]: audit 2024-02-19T22:14:19.567261+0000 mon.smithi044 (mon.0) 920 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:20 smithi104 bash[21066]: cluster 2024-02-19T22:14:19.645848+0000 mgr.smithi044.ikbsam (mgr.14184) 921 : cluster [DBG] pgmap v635: 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-02-19T22:14:21.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:20 smithi044 bash[16231]: cluster 2024-02-19T22:14:19.645848+0000 mgr.smithi044.ikbsam (mgr.14184) 921 : cluster [DBG] pgmap v635: 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-02-19T22:14:23.066 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:22 smithi044 bash[16231]: cluster 2024-02-19T22:14:21.647669+0000 mgr.smithi044.ikbsam (mgr.14184) 922 : cluster [DBG] pgmap v636: 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-02-19T22:14:23.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:22 smithi104 bash[21066]: cluster 2024-02-19T22:14:21.647669+0000 mgr.smithi044.ikbsam (mgr.14184) 922 : cluster [DBG] pgmap v636: 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-02-19T22:14:23.524 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:23.524 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:24.156 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:24 smithi104 bash[21066]: audit 2024-02-19T22:14:23.509443+0000 mgr.smithi044.ikbsam (mgr.14184) 923 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:24 smithi104 bash[21066]: cluster 2024-02-19T22:14:23.649324+0000 mgr.smithi044.ikbsam (mgr.14184) 924 : cluster [DBG] pgmap v637: 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-02-19T22:14:25.157 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:25.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:24 smithi044 bash[16231]: audit 2024-02-19T22:14:23.509443+0000 mgr.smithi044.ikbsam (mgr.14184) 923 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:25.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:24 smithi044 bash[16231]: cluster 2024-02-19T22:14:23.649324+0000 mgr.smithi044.ikbsam (mgr.14184) 924 : cluster [DBG] pgmap v637: 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-02-19T22:14:26.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:26 smithi044 bash[16231]: cluster 2024-02-19T22:14:25.651168+0000 mgr.smithi044.ikbsam (mgr.14184) 925 : cluster [DBG] pgmap v638: 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-02-19T22:14:27.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:26 smithi104 bash[21066]: cluster 2024-02-19T22:14:25.651168+0000 mgr.smithi044.ikbsam (mgr.14184) 925 : cluster [DBG] pgmap v638: 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-02-19T22:14:28.406 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:28.406 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:28.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:28 smithi044 bash[16231]: cluster 2024-02-19T22:14:27.652662+0000 mgr.smithi044.ikbsam (mgr.14184) 926 : cluster [DBG] pgmap v639: 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-02-19T22:14:28.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:28 smithi044 bash[16231]: audit 2024-02-19T22:14:28.644899+0000 mon.smithi044 (mon.0) 921 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:29.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:28 smithi104 bash[21066]: cluster 2024-02-19T22:14:27.652662+0000 mgr.smithi044.ikbsam (mgr.14184) 926 : cluster [DBG] pgmap v639: 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-02-19T22:14:29.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:28 smithi104 bash[21066]: audit 2024-02-19T22:14:28.644899+0000 mon.smithi044 (mon.0) 921 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:14:29.158 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:29 smithi104 bash[21066]: audit 2024-02-19T22:14:28.389398+0000 mgr.smithi044.ikbsam (mgr.14184) 927 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:30.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:29 smithi044 bash[16231]: audit 2024-02-19T22:14:28.389398+0000 mgr.smithi044.ikbsam (mgr.14184) 927 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:30.159 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:31.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:30 smithi104 bash[21066]: cluster 2024-02-19T22:14:29.654323+0000 mgr.smithi044.ikbsam (mgr.14184) 928 : 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-02-19T22:14:31.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:30 smithi044 bash[16231]: cluster 2024-02-19T22:14:29.654323+0000 mgr.smithi044.ikbsam (mgr.14184) 928 : 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-02-19T22:14:33.041 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:32 smithi044 bash[16231]: cluster 2024-02-19T22:14:31.656566+0000 mgr.smithi044.ikbsam (mgr.14184) 929 : 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-02-19T22:14:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:32 smithi104 bash[21066]: cluster 2024-02-19T22:14:31.656566+0000 mgr.smithi044.ikbsam (mgr.14184) 929 : 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-02-19T22:14:33.503 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:33.503 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:34.218 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:35.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:34 smithi104 bash[21066]: audit 2024-02-19T22:14:33.485089+0000 mgr.smithi044.ikbsam (mgr.14184) 930 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:35.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:34 smithi104 bash[21066]: cluster 2024-02-19T22:14:33.658527+0000 mgr.smithi044.ikbsam (mgr.14184) 931 : 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-02-19T22:14:35.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:34 smithi044 bash[16231]: audit 2024-02-19T22:14:33.485089+0000 mgr.smithi044.ikbsam (mgr.14184) 930 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:35.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:34 smithi044 bash[16231]: cluster 2024-02-19T22:14:33.658527+0000 mgr.smithi044.ikbsam (mgr.14184) 931 : 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-02-19T22:14:35.219 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:37.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:36 smithi104 bash[21066]: cluster 2024-02-19T22:14:35.660453+0000 mgr.smithi044.ikbsam (mgr.14184) 932 : cluster [DBG] pgmap v643: 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-02-19T22:14:37.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:36 smithi044 bash[16231]: cluster 2024-02-19T22:14:35.660453+0000 mgr.smithi044.ikbsam (mgr.14184) 932 : cluster [DBG] pgmap v643: 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-02-19T22:14:38.464 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:38.464 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:38.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:38 smithi044 bash[16231]: cluster 2024-02-19T22:14:37.661900+0000 mgr.smithi044.ikbsam (mgr.14184) 933 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:39.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:38 smithi104 bash[21066]: cluster 2024-02-19T22:14:37.661900+0000 mgr.smithi044.ikbsam (mgr.14184) 933 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:39.132 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:40.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:39 smithi104 bash[21066]: audit 2024-02-19T22:14:38.448469+0000 mgr.smithi044.ikbsam (mgr.14184) 934 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:40.133 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:40.146 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:39 smithi044 bash[16231]: audit 2024-02-19T22:14:38.448469+0000 mgr.smithi044.ikbsam (mgr.14184) 934 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:41.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:40 smithi104 bash[21066]: cluster 2024-02-19T22:14:39.663653+0000 mgr.smithi044.ikbsam (mgr.14184) 935 : 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-02-19T22:14:41.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:40 smithi044 bash[16231]: cluster 2024-02-19T22:14:39.663653+0000 mgr.smithi044.ikbsam (mgr.14184) 935 : 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-02-19T22:14:43.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:42 smithi104 bash[21066]: cluster 2024-02-19T22:14:41.665444+0000 mgr.smithi044.ikbsam (mgr.14184) 936 : 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-02-19T22:14:43.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:42 smithi044 bash[16231]: cluster 2024-02-19T22:14:41.665444+0000 mgr.smithi044.ikbsam (mgr.14184) 936 : 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-02-19T22:14:43.262 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:43.262 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:43.922 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:44.923 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:44 smithi104 bash[21066]: audit 2024-02-19T22:14:43.245512+0000 mgr.smithi044.ikbsam (mgr.14184) 937 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:44 smithi104 bash[21066]: cluster 2024-02-19T22:14:43.667192+0000 mgr.smithi044.ikbsam (mgr.14184) 938 : 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-02-19T22:14:45.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:44 smithi044 bash[16231]: audit 2024-02-19T22:14:43.245512+0000 mgr.smithi044.ikbsam (mgr.14184) 937 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:45.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:44 smithi044 bash[16231]: cluster 2024-02-19T22:14:43.667192+0000 mgr.smithi044.ikbsam (mgr.14184) 938 : 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-02-19T22:14:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:46 smithi104 bash[21066]: cluster 2024-02-19T22:14:45.669223+0000 mgr.smithi044.ikbsam (mgr.14184) 939 : cluster [DBG] pgmap v648: 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-02-19T22:14:47.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:46 smithi044 bash[16231]: cluster 2024-02-19T22:14:45.669223+0000 mgr.smithi044.ikbsam (mgr.14184) 939 : cluster [DBG] pgmap v648: 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-02-19T22:14:48.206 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:48.206 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:48.942 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:49.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:48 smithi104 bash[21066]: cluster 2024-02-19T22:14:47.670827+0000 mgr.smithi044.ikbsam (mgr.14184) 940 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:49.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:48 smithi044 bash[16231]: cluster 2024-02-19T22:14:47.670827+0000 mgr.smithi044.ikbsam (mgr.14184) 940 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:49.944 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:50.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:49 smithi104 bash[21066]: audit 2024-02-19T22:14:48.195519+0000 mgr.smithi044.ikbsam (mgr.14184) 941 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:50.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:49 smithi044 bash[16231]: audit 2024-02-19T22:14:48.195519+0000 mgr.smithi044.ikbsam (mgr.14184) 941 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:51.094 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:50 smithi044 bash[16231]: cluster 2024-02-19T22:14:49.672501+0000 mgr.smithi044.ikbsam (mgr.14184) 942 : 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-02-19T22:14:51.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:50 smithi104 bash[21066]: cluster 2024-02-19T22:14:49.672501+0000 mgr.smithi044.ikbsam (mgr.14184) 942 : 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-02-19T22:14:53.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:52 smithi104 bash[21066]: cluster 2024-02-19T22:14:51.674227+0000 mgr.smithi044.ikbsam (mgr.14184) 943 : 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-02-19T22:14:53.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:52 smithi044 bash[16231]: cluster 2024-02-19T22:14:51.674227+0000 mgr.smithi044.ikbsam (mgr.14184) 943 : 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-02-19T22:14:53.179 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:53.179 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:53.873 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:54.873 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:14:55.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:54 smithi104 bash[21066]: audit 2024-02-19T22:14:53.164414+0000 mgr.smithi044.ikbsam (mgr.14184) 944 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:55.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:54 smithi104 bash[21066]: cluster 2024-02-19T22:14:53.675998+0000 mgr.smithi044.ikbsam (mgr.14184) 945 : 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-02-19T22:14:55.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:54 smithi044 bash[16231]: audit 2024-02-19T22:14:53.164414+0000 mgr.smithi044.ikbsam (mgr.14184) 944 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:14:55.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:54 smithi044 bash[16231]: cluster 2024-02-19T22:14:53.675998+0000 mgr.smithi044.ikbsam (mgr.14184) 945 : 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-02-19T22:14:57.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:56 smithi104 bash[21066]: cluster 2024-02-19T22:14:55.677937+0000 mgr.smithi044.ikbsam (mgr.14184) 946 : cluster [DBG] pgmap v653: 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-02-19T22:14:57.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:56 smithi044 bash[16231]: cluster 2024-02-19T22:14:55.677937+0000 mgr.smithi044.ikbsam (mgr.14184) 946 : cluster [DBG] pgmap v653: 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-02-19T22:14:58.424 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:14:58.424 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:14:59.097 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:58 smithi044 bash[16231]: cluster 2024-02-19T22:14:57.679413+0000 mgr.smithi044.ikbsam (mgr.14184) 947 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:14:59.098 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:14:59.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:58 smithi104 bash[21066]: cluster 2024-02-19T22:14:57.679413+0000 mgr.smithi044.ikbsam (mgr.14184) 947 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:00.099 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:00.112 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:14:59 smithi044 bash[16231]: audit 2024-02-19T22:14:58.406475+0000 mgr.smithi044.ikbsam (mgr.14184) 948 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:00.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:14:59 smithi104 bash[21066]: audit 2024-02-19T22:14:58.406475+0000 mgr.smithi044.ikbsam (mgr.14184) 948 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:01.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:00 smithi044 bash[16231]: cluster 2024-02-19T22:14:59.681106+0000 mgr.smithi044.ikbsam (mgr.14184) 949 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:01.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:00 smithi104 bash[21066]: cluster 2024-02-19T22:14:59.681106+0000 mgr.smithi044.ikbsam (mgr.14184) 949 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:02 smithi104 bash[21066]: cluster 2024-02-19T22:15:01.682775+0000 mgr.smithi044.ikbsam (mgr.14184) 950 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:03.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:02 smithi044 bash[16231]: cluster 2024-02-19T22:15:01.682775+0000 mgr.smithi044.ikbsam (mgr.14184) 950 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:03.317 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:03.317 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:03.941 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:04.941 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:05.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:04 smithi104 bash[21066]: audit 2024-02-19T22:15:03.303278+0000 mgr.smithi044.ikbsam (mgr.14184) 951 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:05.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:04 smithi104 bash[21066]: cluster 2024-02-19T22:15:03.684559+0000 mgr.smithi044.ikbsam (mgr.14184) 952 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:05.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:04 smithi044 bash[16231]: audit 2024-02-19T22:15:03.303278+0000 mgr.smithi044.ikbsam (mgr.14184) 951 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:05.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:04 smithi044 bash[16231]: cluster 2024-02-19T22:15:03.684559+0000 mgr.smithi044.ikbsam (mgr.14184) 952 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:07.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:06 smithi104 bash[21066]: cluster 2024-02-19T22:15:05.686501+0000 mgr.smithi044.ikbsam (mgr.14184) 953 : cluster [DBG] pgmap v658: 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-02-19T22:15:07.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:06 smithi044 bash[16231]: cluster 2024-02-19T22:15:05.686501+0000 mgr.smithi044.ikbsam (mgr.14184) 953 : cluster [DBG] pgmap v658: 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-02-19T22:15:08.219 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:08.219 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:08.852 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:08 smithi104 bash[21066]: cluster 2024-02-19T22:15:07.687957+0000 mgr.smithi044.ikbsam (mgr.14184) 954 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:09.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:08 smithi044 bash[16231]: cluster 2024-02-19T22:15:07.687957+0000 mgr.smithi044.ikbsam (mgr.14184) 954 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:09.853 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:10.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:09 smithi104 bash[21066]: audit 2024-02-19T22:15:08.204766+0000 mgr.smithi044.ikbsam (mgr.14184) 955 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:10.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:09 smithi044 bash[16231]: audit 2024-02-19T22:15:08.204766+0000 mgr.smithi044.ikbsam (mgr.14184) 955 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:11.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:10 smithi104 bash[21066]: cluster 2024-02-19T22:15:09.689668+0000 mgr.smithi044.ikbsam (mgr.14184) 956 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:11.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:10 smithi044 bash[16231]: cluster 2024-02-19T22:15:09.689668+0000 mgr.smithi044.ikbsam (mgr.14184) 956 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:13.000 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:13.000 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:12 smithi104 bash[21066]: cluster 2024-02-19T22:15:11.691430+0000 mgr.smithi044.ikbsam (mgr.14184) 957 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:12 smithi044 bash[16231]: cluster 2024-02-19T22:15:11.691430+0000 mgr.smithi044.ikbsam (mgr.14184) 957 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:13.665 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:14.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:13 smithi044 bash[16231]: audit 2024-02-19T22:15:12.986985+0000 mgr.smithi044.ikbsam (mgr.14184) 958 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:13 smithi104 bash[21066]: audit 2024-02-19T22:15:12.986985+0000 mgr.smithi044.ikbsam (mgr.14184) 958 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:14.666 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:15.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:14 smithi044 bash[16231]: cluster 2024-02-19T22:15:13.693118+0000 mgr.smithi044.ikbsam (mgr.14184) 959 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:15.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:14 smithi104 bash[21066]: cluster 2024-02-19T22:15:13.693118+0000 mgr.smithi044.ikbsam (mgr.14184) 959 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:17.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:16 smithi044 bash[16231]: cluster 2024-02-19T22:15:15.694941+0000 mgr.smithi044.ikbsam (mgr.14184) 960 : cluster [DBG] pgmap v663: 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-02-19T22:15:17.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:16 smithi104 bash[21066]: cluster 2024-02-19T22:15:15.694941+0000 mgr.smithi044.ikbsam (mgr.14184) 960 : cluster [DBG] pgmap v663: 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-02-19T22:15:17.859 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:17.859 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:18.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:17 smithi044 bash[16231]: audit 2024-02-19T22:15:17.651184+0000 mon.smithi044 (mon.0) 922 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:15:18.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:17 smithi104 bash[21066]: audit 2024-02-19T22:15:17.651184+0000 mon.smithi044 (mon.0) 922 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:15:18.528 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:18 smithi104 bash[21066]: cluster 2024-02-19T22:15:17.696284+0000 mgr.smithi044.ikbsam (mgr.14184) 961 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:18 smithi104 bash[21066]: audit 2024-02-19T22:15:17.847486+0000 mgr.smithi044.ikbsam (mgr.14184) 962 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:18 smithi104 bash[21066]: audit 2024-02-19T22:15:17.945655+0000 mon.smithi044 (mon.0) 923 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:18 smithi044 bash[16231]: cluster 2024-02-19T22:15:17.696284+0000 mgr.smithi044.ikbsam (mgr.14184) 961 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:18 smithi044 bash[16231]: audit 2024-02-19T22:15:17.847486+0000 mgr.smithi044.ikbsam (mgr.14184) 962 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:18 smithi044 bash[16231]: audit 2024-02-19T22:15:17.945655+0000 mon.smithi044 (mon.0) 923 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:19.528 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:21.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:20 smithi104 bash[21066]: cluster 2024-02-19T22:15:19.698022+0000 mgr.smithi044.ikbsam (mgr.14184) 963 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:21.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:20 smithi044 bash[16231]: cluster 2024-02-19T22:15:19.698022+0000 mgr.smithi044.ikbsam (mgr.14184) 963 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:22.760 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:22.760 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:04:54.791606Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:13:02.893998Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djcdin on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:04:54.791998Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:04:54.792273Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:04:54.792535Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:04:54.793075Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:04:54.792791Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:04:54.794113Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:23.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:22 smithi104 bash[21066]: cluster 2024-02-19T22:15:21.699762+0000 mgr.smithi044.ikbsam (mgr.14184) 964 : 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-02-19T22:15:23.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:22 smithi044 bash[16231]: cluster 2024-02-19T22:15:21.699762+0000 mgr.smithi044.ikbsam (mgr.14184) 964 : 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-02-19T22:15:23.433 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:24.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:22.744972+0000 mgr.smithi044.ikbsam (mgr.14184) 965 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:24.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:23.568043+0000 mon.smithi044 (mon.0) 924 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:24.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:23.860552+0000 mon.smithi044 (mon.0) 925 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:15:24.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:23.862568+0000 mon.smithi044 (mon.0) 926 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:15:24.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:23.873204+0000 mon.smithi044 (mon.0) 927 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:24.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:23.885121+0000 mon.smithi044 (mon.0) 928 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:15:24.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:23 smithi104 bash[21066]: audit 2024-02-19T22:15:23.903783+0000 mon.smithi044 (mon.0) 929 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:24.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:22.744972+0000 mgr.smithi044.ikbsam (mgr.14184) 965 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:24.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:23.568043+0000 mon.smithi044 (mon.0) 924 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:24.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:23.860552+0000 mon.smithi044 (mon.0) 925 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:15:24.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:23.862568+0000 mon.smithi044 (mon.0) 926 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:15:24.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:23.873204+0000 mon.smithi044 (mon.0) 927 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:24.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:23.885121+0000 mon.smithi044 (mon.0) 928 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:15:24.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:23 smithi044 bash[16231]: audit 2024-02-19T22:15:23.903783+0000 mon.smithi044 (mon.0) 929 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:24.433 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:24 smithi104 bash[21066]: cluster 2024-02-19T22:15:23.701573+0000 mgr.smithi044.ikbsam (mgr.14184) 966 : 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-02-19T22:15:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:24 smithi104 bash[21066]: cluster 2024-02-19T22:15:23.874534+0000 mgr.smithi044.ikbsam (mgr.14184) 967 : cluster [DBG] pgmap v668: 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-02-19T22:15:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:24 smithi104 bash[21066]: cephadm 2024-02-19T22:15:23.907710+0000 mgr.smithi044.ikbsam (mgr.14184) 968 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.vfnbvc on smithi104 2024-02-19T22:15:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:24 smithi104 bash[21066]: cluster 2024-02-19T22:15:24.563097+0000 mon.smithi044 (mon.0) 930 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:15:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:24 smithi104 bash[21066]: cluster 2024-02-19T22:15:24.563187+0000 mon.smithi044 (mon.0) 931 : cluster [INF] Cluster is now healthy 2024-02-19T22:15:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:24 smithi044 bash[16231]: cluster 2024-02-19T22:15:23.701573+0000 mgr.smithi044.ikbsam (mgr.14184) 966 : 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-02-19T22:15:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:24 smithi044 bash[16231]: cluster 2024-02-19T22:15:23.874534+0000 mgr.smithi044.ikbsam (mgr.14184) 967 : cluster [DBG] pgmap v668: 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-02-19T22:15:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:24 smithi044 bash[16231]: cephadm 2024-02-19T22:15:23.907710+0000 mgr.smithi044.ikbsam (mgr.14184) 968 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.vfnbvc on smithi104 2024-02-19T22:15:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:24 smithi044 bash[16231]: cluster 2024-02-19T22:15:24.563097+0000 mon.smithi044 (mon.0) 930 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:15:25.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:24 smithi044 bash[16231]: cluster 2024-02-19T22:15:24.563187+0000 mon.smithi044 (mon.0) 931 : cluster [INF] Cluster is now healthy 2024-02-19T22:15:27.304 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:26 smithi104 bash[21066]: cluster 2024-02-19T22:15:25.876214+0000 mgr.smithi044.ikbsam (mgr.14184) 969 : cluster [DBG] pgmap v669: 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-02-19T22:15:27.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:26 smithi044 bash[16231]: cluster 2024-02-19T22:15:25.876214+0000 mgr.smithi044.ikbsam (mgr.14184) 969 : cluster [DBG] pgmap v669: 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-02-19T22:15:27.895 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:27.895 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:13.419204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jqnjtu on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jqnjtu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jqnjtu\nDeploy daemon haproxy.nfs.foo.smithi104.jqnjtu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.636540Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.rfzcmi on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-rfzcmi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.rfzcmi\nDeploy daemon haproxy.nfs.foo.smithi044.rfzcmi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:14:17.640976Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ujcbqr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:28.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:27 smithi044 bash[16231]: audit 2024-02-19T22:15:27.739120+0000 mon.smithi044 (mon.0) 932 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.vfnbvc"}]: dispatch 2024-02-19T22:15:28.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:27 smithi104 bash[21066]: audit 2024-02-19T22:15:27.739120+0000 mon.smithi044 (mon.0) 932 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.vfnbvc"}]: dispatch 2024-02-19T22:15:28.631 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: cephadm 2024-02-19T22:15:27.737812+0000 mgr.smithi044.ikbsam (mgr.14184) 970 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.vfnbvc ... 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.vfnbvc ... 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: cephadm 2024-02-19T22:15:27.738405+0000 mgr.smithi044.ikbsam (mgr.14184) 971 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: cephadm 2024-02-19T22:15:27.740757+0000 mgr.smithi044.ikbsam (mgr.14184) 972 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.vfnbvc ... 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:29.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:29.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:29.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: cephadm 2024-02-19T22:15:27.745321+0000 mgr.smithi044.ikbsam (mgr.14184) 973 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.qqpkze on smithi044 2024-02-19T22:15:29.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: cluster 2024-02-19T22:15:27.877605+0000 mgr.smithi044.ikbsam (mgr.14184) 974 : cluster [DBG] pgmap v670: 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-02-19T22:15:29.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: audit 2024-02-19T22:15:27.879188+0000 mgr.smithi044.ikbsam (mgr.14184) 975 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:29.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:28 smithi104 bash[21066]: audit 2024-02-19T22:15:28.647393+0000 mon.smithi044 (mon.0) 933 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: cephadm 2024-02-19T22:15:27.737812+0000 mgr.smithi044.ikbsam (mgr.14184) 970 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.vfnbvc ... 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.vfnbvc ... 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: cephadm 2024-02-19T22:15:27.738405+0000 mgr.smithi044.ikbsam (mgr.14184) 971 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: cephadm 2024-02-19T22:15:27.740757+0000 mgr.smithi044.ikbsam (mgr.14184) 972 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.vfnbvc ... 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: cephadm 2024-02-19T22:15:27.745321+0000 mgr.smithi044.ikbsam (mgr.14184) 973 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.qqpkze on smithi044 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: cluster 2024-02-19T22:15:27.877605+0000 mgr.smithi044.ikbsam (mgr.14184) 974 : cluster [DBG] pgmap v670: 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-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: audit 2024-02-19T22:15:27.879188+0000 mgr.smithi044.ikbsam (mgr.14184) 975 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:29.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:28 smithi044 bash[16231]: audit 2024-02-19T22:15:28.647393+0000 mon.smithi044 (mon.0) 933 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:29.632 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:31.151 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:30 smithi044 bash[16231]: cluster 2024-02-19T22:15:29.879428+0000 mgr.smithi044.ikbsam (mgr.14184) 976 : cluster [DBG] pgmap v671: 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-02-19T22:15:31.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:30 smithi104 bash[21066]: cluster 2024-02-19T22:15:29.879428+0000 mgr.smithi044.ikbsam (mgr.14184) 976 : cluster [DBG] pgmap v671: 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-02-19T22:15:32.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:32 smithi104 bash[21066]: audit 2024-02-19T22:15:31.815423+0000 mon.smithi044 (mon.0) 934 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.qqpkze"}]: dispatch 2024-02-19T22:15:32.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:32 smithi044 bash[16231]: audit 2024-02-19T22:15:31.815423+0000 mon.smithi044 (mon.0) 934 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.qqpkze"}]: dispatch 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cephadm 2024-02-19T22:15:31.814526+0000 mgr.smithi044.ikbsam (mgr.14184) 977 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.qqpkze ... 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.qqpkze ... 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cephadm 2024-02-19T22:15:31.814812+0000 mgr.smithi044.ikbsam (mgr.14184) 978 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cephadm 2024-02-19T22:15:31.817067+0000 mgr.smithi044.ikbsam (mgr.14184) 979 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.qqpkze ... 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cephadm 2024-02-19T22:15:31.820058+0000 mgr.smithi044.ikbsam (mgr.14184) 980 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cephadm 2024-02-19T22:15:31.822422+0000 mgr.smithi044.ikbsam (mgr.14184) 981 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cluster 2024-02-19T22:15:31.823694+0000 mgr.smithi044.ikbsam (mgr.14184) 982 : cluster [DBG] pgmap v672: 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-02-19T22:15:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:33 smithi104 bash[21066]: cluster 2024-02-19T22:15:31.994525+0000 mon.smithi044 (mon.0) 935 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cephadm 2024-02-19T22:15:31.814526+0000 mgr.smithi044.ikbsam (mgr.14184) 977 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.qqpkze ... 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.qqpkze ... 2024-02-19T22:15:33.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cephadm 2024-02-19T22:15:31.814812+0000 mgr.smithi044.ikbsam (mgr.14184) 978 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cephadm 2024-02-19T22:15:31.817067+0000 mgr.smithi044.ikbsam (mgr.14184) 979 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.qqpkze ... 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cephadm 2024-02-19T22:15:31.820058+0000 mgr.smithi044.ikbsam (mgr.14184) 980 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cephadm 2024-02-19T22:15:31.822422+0000 mgr.smithi044.ikbsam (mgr.14184) 981 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cluster 2024-02-19T22:15:31.823694+0000 mgr.smithi044.ikbsam (mgr.14184) 982 : cluster [DBG] pgmap v672: 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-02-19T22:15:33.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:33 smithi044 bash[16231]: cluster 2024-02-19T22:15:31.994525+0000 mon.smithi044 (mon.0) 935 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:15:33.366 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:33.366 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:34.074 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:35.075 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:35.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:35 smithi104 bash[21066]: audit 2024-02-19T22:15:33.349732+0000 mgr.smithi044.ikbsam (mgr.14184) 983 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:35.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:35 smithi104 bash[21066]: cluster 2024-02-19T22:15:33.825426+0000 mgr.smithi044.ikbsam (mgr.14184) 984 : cluster [DBG] pgmap v673: 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-02-19T22:15:35.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:35 smithi104 bash[21066]: audit 2024-02-19T22:15:34.635611+0000 mon.smithi044 (mon.0) 936 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:35.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:35 smithi044 bash[16231]: audit 2024-02-19T22:15:33.349732+0000 mgr.smithi044.ikbsam (mgr.14184) 983 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:35.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:35 smithi044 bash[16231]: cluster 2024-02-19T22:15:33.825426+0000 mgr.smithi044.ikbsam (mgr.14184) 984 : cluster [DBG] pgmap v673: 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-02-19T22:15:35.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:35 smithi044 bash[16231]: audit 2024-02-19T22:15:34.635611+0000 mon.smithi044 (mon.0) 936 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:37.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:37 smithi104 bash[21066]: cluster 2024-02-19T22:15:35.827331+0000 mgr.smithi044.ikbsam (mgr.14184) 985 : cluster [DBG] pgmap v674: 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-02-19T22:15:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:37 smithi044 bash[16231]: cluster 2024-02-19T22:15:35.827331+0000 mgr.smithi044.ikbsam (mgr.14184) 985 : cluster [DBG] pgmap v674: 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-02-19T22:15:38.453 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:38.453 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:39.123 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:39.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:39 smithi104 bash[21066]: cluster 2024-02-19T22:15:37.828761+0000 mgr.smithi044.ikbsam (mgr.14184) 986 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:39.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:39 smithi044 bash[16231]: cluster 2024-02-19T22:15:37.828761+0000 mgr.smithi044.ikbsam (mgr.14184) 986 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:40.124 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:40 smithi104 bash[21066]: audit 2024-02-19T22:15:38.436703+0000 mgr.smithi044.ikbsam (mgr.14184) 987 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:40 smithi044 bash[16231]: audit 2024-02-19T22:15:38.436703+0000 mgr.smithi044.ikbsam (mgr.14184) 987 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:41.293 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:41 smithi044 bash[16231]: cluster 2024-02-19T22:15:39.830874+0000 mgr.smithi044.ikbsam (mgr.14184) 988 : 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-02-19T22:15:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:41 smithi104 bash[21066]: cluster 2024-02-19T22:15:39.830874+0000 mgr.smithi044.ikbsam (mgr.14184) 988 : 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-02-19T22:15:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:42 smithi104 bash[21066]: cluster 2024-02-19T22:15:41.831931+0000 mgr.smithi044.ikbsam (mgr.14184) 989 : 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-02-19T22:15:42.511 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:42 smithi044 bash[16231]: cluster 2024-02-19T22:15:41.831931+0000 mgr.smithi044.ikbsam (mgr.14184) 989 : 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-02-19T22:15:43.385 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:43.385 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:43.983 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:44.984 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:44.997 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:44 smithi044 bash[16231]: audit 2024-02-19T22:15:43.374872+0000 mgr.smithi044.ikbsam (mgr.14184) 990 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:44.997 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:44 smithi044 bash[16231]: audit 2024-02-19T22:15:43.647055+0000 mon.smithi044 (mon.0) 937 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:44.997 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:44 smithi044 bash[16231]: cluster 2024-02-19T22:15:43.833672+0000 mgr.smithi044.ikbsam (mgr.14184) 991 : 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-02-19T22:15:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:44 smithi104 bash[21066]: audit 2024-02-19T22:15:43.374872+0000 mgr.smithi044.ikbsam (mgr.14184) 990 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:44 smithi104 bash[21066]: audit 2024-02-19T22:15:43.647055+0000 mon.smithi044 (mon.0) 937 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:15:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:44 smithi104 bash[21066]: cluster 2024-02-19T22:15:43.833672+0000 mgr.smithi044.ikbsam (mgr.14184) 991 : 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-02-19T22:15:47.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:46 smithi044 bash[16231]: cluster 2024-02-19T22:15:45.835509+0000 mgr.smithi044.ikbsam (mgr.14184) 992 : cluster [DBG] pgmap v679: 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-02-19T22:15:47.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:46 smithi104 bash[21066]: cluster 2024-02-19T22:15:45.835509+0000 mgr.smithi044.ikbsam (mgr.14184) 992 : cluster [DBG] pgmap v679: 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-02-19T22:15:48.267 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:48.268 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:48.940 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:49.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:48 smithi044 bash[16231]: cluster 2024-02-19T22:15:47.837085+0000 mgr.smithi044.ikbsam (mgr.14184) 993 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:48 smithi104 bash[21066]: cluster 2024-02-19T22:15:47.837085+0000 mgr.smithi044.ikbsam (mgr.14184) 993 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:49.941 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:49 smithi104 bash[21066]: audit 2024-02-19T22:15:48.251404+0000 mgr.smithi044.ikbsam (mgr.14184) 994 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:50.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:49 smithi044 bash[16231]: audit 2024-02-19T22:15:48.251404+0000 mgr.smithi044.ikbsam (mgr.14184) 994 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:51.303 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:50 smithi044 bash[16231]: cluster 2024-02-19T22:15:49.839024+0000 mgr.smithi044.ikbsam (mgr.14184) 995 : 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-02-19T22:15:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:50 smithi104 bash[21066]: cluster 2024-02-19T22:15:49.839024+0000 mgr.smithi044.ikbsam (mgr.14184) 995 : 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-02-19T22:15:53.109 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:53.109 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:53.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:52 smithi104 bash[21066]: cluster 2024-02-19T22:15:51.840069+0000 mgr.smithi044.ikbsam (mgr.14184) 996 : 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-02-19T22:15:53.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:52 smithi044 bash[16231]: cluster 2024-02-19T22:15:51.840069+0000 mgr.smithi044.ikbsam (mgr.14184) 996 : 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-02-19T22:15:53.739 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:54.740 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:15:55.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:54 smithi044 bash[16231]: audit 2024-02-19T22:15:53.098380+0000 mgr.smithi044.ikbsam (mgr.14184) 997 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:55.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:54 smithi044 bash[16231]: cluster 2024-02-19T22:15:53.841871+0000 mgr.smithi044.ikbsam (mgr.14184) 998 : 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-02-19T22:15:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:54 smithi104 bash[21066]: audit 2024-02-19T22:15:53.098380+0000 mgr.smithi044.ikbsam (mgr.14184) 997 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:15:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:54 smithi104 bash[21066]: cluster 2024-02-19T22:15:53.841871+0000 mgr.smithi044.ikbsam (mgr.14184) 998 : 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-02-19T22:15:57.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:56 smithi104 bash[21066]: cluster 2024-02-19T22:15:55.843747+0000 mgr.smithi044.ikbsam (mgr.14184) 999 : cluster [DBG] pgmap v684: 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-02-19T22:15:57.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:56 smithi044 bash[16231]: cluster 2024-02-19T22:15:55.843747+0000 mgr.smithi044.ikbsam (mgr.14184) 999 : cluster [DBG] pgmap v684: 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-02-19T22:15:58.119 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:15:58.119 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:15:58.763 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:15:59.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:58 smithi044 bash[16231]: cluster 2024-02-19T22:15:57.844763+0000 mgr.smithi044.ikbsam (mgr.14184) 1000 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:59.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:58 smithi104 bash[21066]: cluster 2024-02-19T22:15:57.844763+0000 mgr.smithi044.ikbsam (mgr.14184) 1000 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:15:59.764 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:00.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:15:59 smithi044 bash[16231]: audit 2024-02-19T22:15:58.108752+0000 mgr.smithi044.ikbsam (mgr.14184) 1001 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:00.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:15:59 smithi104 bash[21066]: audit 2024-02-19T22:15:58.108752+0000 mgr.smithi044.ikbsam (mgr.14184) 1001 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:01.249 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:00 smithi044 bash[16231]: cluster 2024-02-19T22:15:59.846740+0000 mgr.smithi044.ikbsam (mgr.14184) 1002 : 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-02-19T22:16:01.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:00 smithi104 bash[21066]: cluster 2024-02-19T22:15:59.846740+0000 mgr.smithi044.ikbsam (mgr.14184) 1002 : 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-02-19T22:16:03.020 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:03.020 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:02 smithi104 bash[21066]: cluster 2024-02-19T22:16:01.847905+0000 mgr.smithi044.ikbsam (mgr.14184) 1003 : 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-02-19T22:16:03.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:02 smithi044 bash[16231]: cluster 2024-02-19T22:16:01.847905+0000 mgr.smithi044.ikbsam (mgr.14184) 1003 : 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-02-19T22:16:03.619 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:04.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:03 smithi104 bash[21066]: audit 2024-02-19T22:16:03.002120+0000 mgr.smithi044.ikbsam (mgr.14184) 1004 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:04.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:03 smithi044 bash[16231]: audit 2024-02-19T22:16:03.002120+0000 mgr.smithi044.ikbsam (mgr.14184) 1004 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:04.619 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:04 smithi104 bash[21066]: cluster 2024-02-19T22:16:03.849820+0000 mgr.smithi044.ikbsam (mgr.14184) 1005 : 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-02-19T22:16:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:04 smithi044 bash[16231]: cluster 2024-02-19T22:16:03.849820+0000 mgr.smithi044.ikbsam (mgr.14184) 1005 : 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-02-19T22:16:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:06 smithi104 bash[21066]: cluster 2024-02-19T22:16:05.851786+0000 mgr.smithi044.ikbsam (mgr.14184) 1006 : cluster [DBG] pgmap v689: 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-02-19T22:16:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:06 smithi044 bash[16231]: cluster 2024-02-19T22:16:05.851786+0000 mgr.smithi044.ikbsam (mgr.14184) 1006 : cluster [DBG] pgmap v689: 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-02-19T22:16:07.845 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:07.845 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:08.491 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:09.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:08 smithi104 bash[21066]: audit 2024-02-19T22:16:07.834439+0000 mgr.smithi044.ikbsam (mgr.14184) 1007 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:09.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:08 smithi104 bash[21066]: cluster 2024-02-19T22:16:07.853381+0000 mgr.smithi044.ikbsam (mgr.14184) 1008 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:08 smithi044 bash[16231]: audit 2024-02-19T22:16:07.834439+0000 mgr.smithi044.ikbsam (mgr.14184) 1007 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:09.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:08 smithi044 bash[16231]: cluster 2024-02-19T22:16:07.853381+0000 mgr.smithi044.ikbsam (mgr.14184) 1008 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:09.493 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:10 smithi104 bash[21066]: cluster 2024-02-19T22:16:09.855359+0000 mgr.smithi044.ikbsam (mgr.14184) 1009 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:11.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:10 smithi044 bash[16231]: cluster 2024-02-19T22:16:09.855359+0000 mgr.smithi044.ikbsam (mgr.14184) 1009 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:12.733 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:12.733 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:12 smithi104 bash[21066]: cluster 2024-02-19T22:16:11.856387+0000 mgr.smithi044.ikbsam (mgr.14184) 1010 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:12 smithi044 bash[16231]: cluster 2024-02-19T22:16:11.856387+0000 mgr.smithi044.ikbsam (mgr.14184) 1010 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:13.490 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:13 smithi104 bash[21066]: audit 2024-02-19T22:16:12.715481+0000 mgr.smithi044.ikbsam (mgr.14184) 1011 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:14.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:13 smithi044 bash[16231]: audit 2024-02-19T22:16:12.715481+0000 mgr.smithi044.ikbsam (mgr.14184) 1011 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:14.491 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:15.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:15 smithi104 bash[21066]: cluster 2024-02-19T22:16:13.858163+0000 mgr.smithi044.ikbsam (mgr.14184) 1012 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:15.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:15 smithi044 bash[16231]: cluster 2024-02-19T22:16:13.858163+0000 mgr.smithi044.ikbsam (mgr.14184) 1012 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:17.346 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:17 smithi044 bash[16231]: cluster 2024-02-19T22:16:15.860028+0000 mgr.smithi044.ikbsam (mgr.14184) 1013 : cluster [DBG] pgmap v694: 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-02-19T22:16:17.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:17 smithi104 bash[21066]: cluster 2024-02-19T22:16:15.860028+0000 mgr.smithi044.ikbsam (mgr.14184) 1013 : cluster [DBG] pgmap v694: 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-02-19T22:16:17.798 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:17.799 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:18.460 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:19 smithi104 bash[21066]: audit 2024-02-19T22:16:17.785917+0000 mgr.smithi044.ikbsam (mgr.14184) 1014 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:19 smithi104 bash[21066]: cluster 2024-02-19T22:16:17.861752+0000 mgr.smithi044.ikbsam (mgr.14184) 1015 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:19 smithi044 bash[16231]: audit 2024-02-19T22:16:17.785917+0000 mgr.smithi044.ikbsam (mgr.14184) 1014 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:19 smithi044 bash[16231]: cluster 2024-02-19T22:16:17.861752+0000 mgr.smithi044.ikbsam (mgr.14184) 1015 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:19.462 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:21.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:21 smithi104 bash[21066]: cluster 2024-02-19T22:16:19.863750+0000 mgr.smithi044.ikbsam (mgr.14184) 1016 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:21.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:21 smithi044 bash[16231]: cluster 2024-02-19T22:16:19.863750+0000 mgr.smithi044.ikbsam (mgr.14184) 1016 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:22.648 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:22.649 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:23.260 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:23.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:23 smithi104 bash[21066]: cluster 2024-02-19T22:16:21.864793+0000 mgr.smithi044.ikbsam (mgr.14184) 1017 : 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-02-19T22:16:23.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:23 smithi044 bash[16231]: cluster 2024-02-19T22:16:21.864793+0000 mgr.smithi044.ikbsam (mgr.14184) 1017 : 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-02-19T22:16:24.262 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:24.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:24 smithi104 bash[21066]: audit 2024-02-19T22:16:22.637993+0000 mgr.smithi044.ikbsam (mgr.14184) 1018 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:24.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:24 smithi044 bash[16231]: audit 2024-02-19T22:16:22.637993+0000 mgr.smithi044.ikbsam (mgr.14184) 1018 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:25 smithi104 bash[21066]: cluster 2024-02-19T22:16:23.866605+0000 mgr.smithi044.ikbsam (mgr.14184) 1019 : 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-02-19T22:16:25.401 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:25 smithi044 bash[16231]: cluster 2024-02-19T22:16:23.866605+0000 mgr.smithi044.ikbsam (mgr.14184) 1019 : 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-02-19T22:16:27.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:27 smithi104 bash[21066]: cluster 2024-02-19T22:16:25.868492+0000 mgr.smithi044.ikbsam (mgr.14184) 1020 : cluster [DBG] pgmap v699: 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-02-19T22:16:27.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:27 smithi044 bash[16231]: cluster 2024-02-19T22:16:25.868492+0000 mgr.smithi044.ikbsam (mgr.14184) 1020 : cluster [DBG] pgmap v699: 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-02-19T22:16:27.467 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:27.467 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:28.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:28 smithi104 bash[21066]: audit 2024-02-19T22:16:27.450277+0000 mgr.smithi044.ikbsam (mgr.14184) 1021 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:28.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:28 smithi104 bash[21066]: cluster 2024-02-19T22:16:27.870194+0000 mgr.smithi044.ikbsam (mgr.14184) 1022 : 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-02-19T22:16:28.380 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:28 smithi044 bash[16231]: audit 2024-02-19T22:16:27.450277+0000 mgr.smithi044.ikbsam (mgr.14184) 1021 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:28.380 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:28 smithi044 bash[16231]: cluster 2024-02-19T22:16:27.870194+0000 mgr.smithi044.ikbsam (mgr.14184) 1022 : 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-02-19T22:16:28.382 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:29.383 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:31.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:30 smithi104 bash[21066]: cluster 2024-02-19T22:16:29.872222+0000 mgr.smithi044.ikbsam (mgr.14184) 1023 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:31.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:30 smithi044 bash[16231]: cluster 2024-02-19T22:16:29.872222+0000 mgr.smithi044.ikbsam (mgr.14184) 1023 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:32.375 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:31 smithi044 bash[16231]: audit 2024-02-19T22:16:31.827337+0000 mon.smithi044 (mon.0) 938 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:16:32.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:31 smithi104 bash[21066]: audit 2024-02-19T22:16:31.827337+0000 mon.smithi044 (mon.0) 938 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:16:32.809 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:32.809 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:14:17.643029Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fiswxr on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: cluster 2024-02-19T22:16:31.873157+0000 mgr.smithi044.ikbsam (mgr.14184) 1024 : 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-02-19T22:16:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: audit 2024-02-19T22:16:32.138966+0000 mon.smithi044 (mon.0) 939 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: audit 2024-02-19T22:16:32.433257+0000 mon.smithi044 (mon.0) 940 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:16:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: audit 2024-02-19T22:16:32.434948+0000 mon.smithi044 (mon.0) 941 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:16:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: audit 2024-02-19T22:16:32.443290+0000 mon.smithi044 (mon.0) 942 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: audit 2024-02-19T22:16:32.450157+0000 mon.smithi044 (mon.0) 943 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:16:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:32 smithi104 bash[21066]: audit 2024-02-19T22:16:32.464797+0000 mon.smithi044 (mon.0) 944 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:33.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: cluster 2024-02-19T22:16:31.873157+0000 mgr.smithi044.ikbsam (mgr.14184) 1024 : 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-02-19T22:16:33.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: audit 2024-02-19T22:16:32.138966+0000 mon.smithi044 (mon.0) 939 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:33.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: audit 2024-02-19T22:16:32.433257+0000 mon.smithi044 (mon.0) 940 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:16:33.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: audit 2024-02-19T22:16:32.434948+0000 mon.smithi044 (mon.0) 941 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:16:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: audit 2024-02-19T22:16:32.443290+0000 mon.smithi044 (mon.0) 942 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: audit 2024-02-19T22:16:32.450157+0000 mon.smithi044 (mon.0) 943 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:16:33.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:32 smithi044 bash[16231]: audit 2024-02-19T22:16:32.464797+0000 mon.smithi044 (mon.0) 944 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:33.581 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:33 smithi104 bash[21066]: cluster 2024-02-19T22:16:32.444386+0000 mgr.smithi044.ikbsam (mgr.14184) 1025 : cluster [DBG] pgmap v703: 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-02-19T22:16:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:33 smithi104 bash[21066]: cephadm 2024-02-19T22:16:32.469137+0000 mgr.smithi044.ikbsam (mgr.14184) 1026 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.xuzacd on smithi104 2024-02-19T22:16:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:33 smithi104 bash[21066]: audit 2024-02-19T22:16:32.794106+0000 mgr.smithi044.ikbsam (mgr.14184) 1027 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:33 smithi104 bash[21066]: cluster 2024-02-19T22:16:33.439852+0000 mon.smithi044 (mon.0) 945 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:16:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:33 smithi104 bash[21066]: cluster 2024-02-19T22:16:33.439930+0000 mon.smithi044 (mon.0) 946 : cluster [INF] Cluster is now healthy 2024-02-19T22:16:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:33 smithi044 bash[16231]: cluster 2024-02-19T22:16:32.444386+0000 mgr.smithi044.ikbsam (mgr.14184) 1025 : cluster [DBG] pgmap v703: 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-02-19T22:16:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:33 smithi044 bash[16231]: cephadm 2024-02-19T22:16:32.469137+0000 mgr.smithi044.ikbsam (mgr.14184) 1026 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.xuzacd on smithi104 2024-02-19T22:16:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:33 smithi044 bash[16231]: audit 2024-02-19T22:16:32.794106+0000 mgr.smithi044.ikbsam (mgr.14184) 1027 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:33 smithi044 bash[16231]: cluster 2024-02-19T22:16:33.439852+0000 mon.smithi044 (mon.0) 945 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:16:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:33 smithi044 bash[16231]: cluster 2024-02-19T22:16:33.439930+0000 mon.smithi044 (mon.0) 946 : cluster [INF] Cluster is now healthy 2024-02-19T22:16:34.582 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:35.998 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:35 smithi044 bash[16231]: cluster 2024-02-19T22:16:34.445746+0000 mgr.smithi044.ikbsam (mgr.14184) 1028 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2024-02-19T22:16:36.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:35 smithi104 bash[21066]: cluster 2024-02-19T22:16:34.445746+0000 mgr.smithi044.ikbsam (mgr.14184) 1028 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2024-02-19T22:16:37.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:36 smithi104 bash[21066]: audit 2024-02-19T22:16:36.531305+0000 mon.smithi044 (mon.0) 947 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.xuzacd"}]: dispatch 2024-02-19T22:16:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:36 smithi044 bash[16231]: audit 2024-02-19T22:16:36.531305+0000 mon.smithi044 (mon.0) 947 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.xuzacd"}]: dispatch 2024-02-19T22:16:38.143 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:38.143 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:27.740516Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.vfnbvc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-vfnbvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.vfnbvc\nDeploy daemon haproxy.nfs.foo.smithi104.vfnbvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.816847Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.qqpkze on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-qqpkze\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.qqpkze\nDeploy daemon haproxy.nfs.foo.smithi044.qqpkze ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:15:31.819891Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.gefdep on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:38.225 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: cluster 2024-02-19T22:16:36.447173+0000 mgr.smithi044.ikbsam (mgr.14184) 1029 : cluster [DBG] pgmap v705: 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-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: cephadm 2024-02-19T22:16:36.530080+0000 mgr.smithi044.ikbsam (mgr.14184) 1030 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.xuzacd ... 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:16:38.226 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.xuzacd ... 2024-02-19T22:16:38.227 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: cephadm 2024-02-19T22:16:36.530619+0000 mgr.smithi044.ikbsam (mgr.14184) 1031 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: cephadm 2024-02-19T22:16:36.533022+0000 mgr.smithi044.ikbsam (mgr.14184) 1032 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.xuzacd ... 2024-02-19T22:16:38.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.229 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:38.229 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:38.229 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:38.229 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.229 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:37 smithi044 bash[16231]: cephadm 2024-02-19T22:16:36.538001+0000 mgr.smithi044.ikbsam (mgr.14184) 1033 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.swnjvh on smithi044 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: cluster 2024-02-19T22:16:36.447173+0000 mgr.smithi044.ikbsam (mgr.14184) 1029 : cluster [DBG] pgmap v705: 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-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: cephadm 2024-02-19T22:16:36.530080+0000 mgr.smithi044.ikbsam (mgr.14184) 1030 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.xuzacd ... 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.xuzacd ... 2024-02-19T22:16:38.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: cephadm 2024-02-19T22:16:36.530619+0000 mgr.smithi044.ikbsam (mgr.14184) 1031 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: cephadm 2024-02-19T22:16:36.533022+0000 mgr.smithi044.ikbsam (mgr.14184) 1032 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.xuzacd ... 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:38.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:38.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:38.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:38.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:37 smithi104 bash[21066]: cephadm 2024-02-19T22:16:36.538001+0000 mgr.smithi044.ikbsam (mgr.14184) 1033 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.swnjvh on smithi044 2024-02-19T22:16:38.928 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:39.929 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:39 smithi104 bash[21066]: audit 2024-02-19T22:16:38.127021+0000 mgr.smithi044.ikbsam (mgr.14184) 1034 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:39 smithi104 bash[21066]: cluster 2024-02-19T22:16:38.448678+0000 mgr.smithi044.ikbsam (mgr.14184) 1035 : cluster [DBG] pgmap v706: 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-02-19T22:16:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:39 smithi044 bash[16231]: audit 2024-02-19T22:16:38.127021+0000 mgr.smithi044.ikbsam (mgr.14184) 1034 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:39 smithi044 bash[16231]: cluster 2024-02-19T22:16:38.448678+0000 mgr.smithi044.ikbsam (mgr.14184) 1035 : cluster [DBG] pgmap v706: 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-02-19T22:16:41.282 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:40 smithi044 bash[16231]: audit 2024-02-19T22:16:40.931994+0000 mon.smithi044 (mon.0) 948 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.swnjvh"}]: dispatch 2024-02-19T22:16:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:40 smithi104 bash[21066]: audit 2024-02-19T22:16:40.931994+0000 mon.smithi044 (mon.0) 948 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.swnjvh"}]: dispatch 2024-02-19T22:16:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cluster 2024-02-19T22:16:40.450354+0000 mgr.smithi044.ikbsam (mgr.14184) 1036 : cluster [DBG] pgmap v707: 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-02-19T22:16:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cephadm 2024-02-19T22:16:40.930911+0000 mgr.smithi044.ikbsam (mgr.14184) 1037 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.swnjvh ... 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:16:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.swnjvh ... 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:42.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cephadm 2024-02-19T22:16:40.931409+0000 mgr.smithi044.ikbsam (mgr.14184) 1038 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cephadm 2024-02-19T22:16:40.933488+0000 mgr.smithi044.ikbsam (mgr.14184) 1039 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.swnjvh ... 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cephadm 2024-02-19T22:16:40.935502+0000 mgr.smithi044.ikbsam (mgr.14184) 1040 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:16:42.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cephadm 2024-02-19T22:16:40.937122+0000 mgr.smithi044.ikbsam (mgr.14184) 1041 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:16:42.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cluster 2024-02-19T22:16:40.938387+0000 mgr.smithi044.ikbsam (mgr.14184) 1042 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 112 B/s rd, 0 op/s 2024-02-19T22:16:42.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:41 smithi104 bash[21066]: cluster 2024-02-19T22:16:40.973269+0000 mon.smithi044 (mon.0) 949 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:16:42.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cluster 2024-02-19T22:16:40.450354+0000 mgr.smithi044.ikbsam (mgr.14184) 1036 : cluster [DBG] pgmap v707: 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-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cephadm 2024-02-19T22:16:40.930911+0000 mgr.smithi044.ikbsam (mgr.14184) 1037 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.swnjvh ... 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.swnjvh ... 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:42.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cephadm 2024-02-19T22:16:40.931409+0000 mgr.smithi044.ikbsam (mgr.14184) 1038 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cephadm 2024-02-19T22:16:40.933488+0000 mgr.smithi044.ikbsam (mgr.14184) 1039 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.swnjvh ... 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:16:42.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:16:42.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:16:42.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cephadm 2024-02-19T22:16:40.935502+0000 mgr.smithi044.ikbsam (mgr.14184) 1040 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:16:42.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cephadm 2024-02-19T22:16:40.937122+0000 mgr.smithi044.ikbsam (mgr.14184) 1041 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:16:42.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cluster 2024-02-19T22:16:40.938387+0000 mgr.smithi044.ikbsam (mgr.14184) 1042 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 112 B/s rd, 0 op/s 2024-02-19T22:16:42.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:41 smithi044 bash[16231]: cluster 2024-02-19T22:16:40.973269+0000 mon.smithi044 (mon.0) 949 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:16:43.529 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:43.530 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:44.150 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:44.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:43 smithi104 bash[21066]: cluster 2024-02-19T22:16:42.940258+0000 mgr.smithi044.ikbsam (mgr.14184) 1043 : cluster [DBG] pgmap v709: 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-02-19T22:16:44.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:43 smithi044 bash[16231]: cluster 2024-02-19T22:16:42.940258+0000 mgr.smithi044.ikbsam (mgr.14184) 1043 : cluster [DBG] pgmap v709: 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-02-19T22:16:45.151 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:44 smithi104 bash[21066]: audit 2024-02-19T22:16:43.513006+0000 mgr.smithi044.ikbsam (mgr.14184) 1044 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:44 smithi104 bash[21066]: audit 2024-02-19T22:16:44.698721+0000 mon.smithi044 (mon.0) 950 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:44 smithi044 bash[16231]: audit 2024-02-19T22:16:43.513006+0000 mgr.smithi044.ikbsam (mgr.14184) 1044 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:44 smithi044 bash[16231]: audit 2024-02-19T22:16:44.698721+0000 mon.smithi044 (mon.0) 950 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:16:46.298 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:45 smithi044 bash[16231]: cluster 2024-02-19T22:16:44.942104+0000 mgr.smithi044.ikbsam (mgr.14184) 1045 : cluster [DBG] pgmap v710: 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-02-19T22:16:46.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:45 smithi104 bash[21066]: cluster 2024-02-19T22:16:44.942104+0000 mgr.smithi044.ikbsam (mgr.14184) 1045 : cluster [DBG] pgmap v710: 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-02-19T22:16:48.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:48 smithi104 bash[21066]: cluster 2024-02-19T22:16:46.943212+0000 mgr.smithi044.ikbsam (mgr.14184) 1046 : cluster [DBG] pgmap v711: 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-02-19T22:16:48.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:48 smithi044 bash[16231]: cluster 2024-02-19T22:16:46.943212+0000 mgr.smithi044.ikbsam (mgr.14184) 1046 : cluster [DBG] pgmap v711: 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-02-19T22:16:48.437 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:48.437 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:49.134 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:50.134 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:50 smithi104 bash[21066]: audit 2024-02-19T22:16:48.419361+0000 mgr.smithi044.ikbsam (mgr.14184) 1047 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:50 smithi104 bash[21066]: cluster 2024-02-19T22:16:48.944999+0000 mgr.smithi044.ikbsam (mgr.14184) 1048 : cluster [DBG] pgmap v712: 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-02-19T22:16:50.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:50 smithi044 bash[16231]: audit 2024-02-19T22:16:48.419361+0000 mgr.smithi044.ikbsam (mgr.14184) 1047 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:50.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:50 smithi044 bash[16231]: cluster 2024-02-19T22:16:48.944999+0000 mgr.smithi044.ikbsam (mgr.14184) 1048 : cluster [DBG] pgmap v712: 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-02-19T22:16:52.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:52 smithi104 bash[21066]: cluster 2024-02-19T22:16:50.946840+0000 mgr.smithi044.ikbsam (mgr.14184) 1049 : cluster [DBG] pgmap v713: 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-02-19T22:16:52.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:52 smithi044 bash[16231]: cluster 2024-02-19T22:16:50.946840+0000 mgr.smithi044.ikbsam (mgr.14184) 1049 : cluster [DBG] pgmap v713: 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-02-19T22:16:53.449 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:53.449 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:54.058 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:54.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:54 smithi104 bash[21066]: cluster 2024-02-19T22:16:52.948659+0000 mgr.smithi044.ikbsam (mgr.14184) 1050 : 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-02-19T22:16:54.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:54 smithi044 bash[16231]: cluster 2024-02-19T22:16:52.948659+0000 mgr.smithi044.ikbsam (mgr.14184) 1050 : 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-02-19T22:16:55.059 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:16:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:55 smithi104 bash[21066]: audit 2024-02-19T22:16:53.438859+0000 mgr.smithi044.ikbsam (mgr.14184) 1051 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:55.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:55 smithi044 bash[16231]: audit 2024-02-19T22:16:53.438859+0000 mgr.smithi044.ikbsam (mgr.14184) 1051 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:16:56.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:56 smithi104 bash[21066]: cluster 2024-02-19T22:16:54.950588+0000 mgr.smithi044.ikbsam (mgr.14184) 1052 : cluster [DBG] pgmap v715: 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-02-19T22:16:56.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:56 smithi044 bash[16231]: cluster 2024-02-19T22:16:54.950588+0000 mgr.smithi044.ikbsam (mgr.14184) 1052 : cluster [DBG] pgmap v715: 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-02-19T22:16:58.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:16:58 smithi044 bash[16231]: cluster 2024-02-19T22:16:56.951827+0000 mgr.smithi044.ikbsam (mgr.14184) 1053 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:58.359 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:16:58.360 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:16:58.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:16:58 smithi104 bash[21066]: cluster 2024-02-19T22:16:56.951827+0000 mgr.smithi044.ikbsam (mgr.14184) 1053 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:16:58.995 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:16:59.996 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:00.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:00 smithi104 bash[21066]: audit 2024-02-19T22:16:58.340909+0000 mgr.smithi044.ikbsam (mgr.14184) 1054 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:00.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:00 smithi104 bash[21066]: cluster 2024-02-19T22:16:58.953755+0000 mgr.smithi044.ikbsam (mgr.14184) 1055 : 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-02-19T22:17:00.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:00 smithi044 bash[16231]: audit 2024-02-19T22:16:58.340909+0000 mgr.smithi044.ikbsam (mgr.14184) 1054 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:00.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:00 smithi044 bash[16231]: cluster 2024-02-19T22:16:58.953755+0000 mgr.smithi044.ikbsam (mgr.14184) 1055 : 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-02-19T22:17:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:02 smithi104 bash[21066]: cluster 2024-02-19T22:17:00.955723+0000 mgr.smithi044.ikbsam (mgr.14184) 1056 : 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-02-19T22:17:02.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:02 smithi044 bash[16231]: cluster 2024-02-19T22:17:00.955723+0000 mgr.smithi044.ikbsam (mgr.14184) 1056 : 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-02-19T22:17:03.301 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:03.301 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:03.364 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:03 smithi044 bash[16231]: cluster 2024-02-19T22:17:02.957652+0000 mgr.smithi044.ikbsam (mgr.14184) 1057 : 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-02-19T22:17:03.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:03 smithi104 bash[21066]: cluster 2024-02-19T22:17:02.957652+0000 mgr.smithi044.ikbsam (mgr.14184) 1057 : 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-02-19T22:17:03.908 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:04.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:04 smithi044 bash[16231]: audit 2024-02-19T22:17:03.290901+0000 mgr.smithi044.ikbsam (mgr.14184) 1058 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:04.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:04 smithi104 bash[21066]: audit 2024-02-19T22:17:03.290901+0000 mgr.smithi044.ikbsam (mgr.14184) 1058 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:04.909 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:05 smithi104 bash[21066]: cluster 2024-02-19T22:17:04.959562+0000 mgr.smithi044.ikbsam (mgr.14184) 1059 : cluster [DBG] pgmap v720: 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-02-19T22:17:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:05 smithi044 bash[16231]: cluster 2024-02-19T22:17:04.959562+0000 mgr.smithi044.ikbsam (mgr.14184) 1059 : cluster [DBG] pgmap v720: 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-02-19T22:17:08.196 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:08.196 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:08.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:08 smithi104 bash[21066]: cluster 2024-02-19T22:17:06.960638+0000 mgr.smithi044.ikbsam (mgr.14184) 1060 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:08.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:08 smithi044 bash[16231]: cluster 2024-02-19T22:17:06.960638+0000 mgr.smithi044.ikbsam (mgr.14184) 1060 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:08.855 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:09.857 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:10.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:10 smithi044 bash[16231]: audit 2024-02-19T22:17:08.178236+0000 mgr.smithi044.ikbsam (mgr.14184) 1061 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:10.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:10 smithi044 bash[16231]: cluster 2024-02-19T22:17:08.962650+0000 mgr.smithi044.ikbsam (mgr.14184) 1062 : 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-02-19T22:17:10.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:10 smithi104 bash[21066]: audit 2024-02-19T22:17:08.178236+0000 mgr.smithi044.ikbsam (mgr.14184) 1061 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:10.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:10 smithi104 bash[21066]: cluster 2024-02-19T22:17:08.962650+0000 mgr.smithi044.ikbsam (mgr.14184) 1062 : 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-02-19T22:17:12.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:12 smithi104 bash[21066]: cluster 2024-02-19T22:17:10.964595+0000 mgr.smithi044.ikbsam (mgr.14184) 1063 : 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-02-19T22:17:12.460 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:12 smithi044 bash[16231]: cluster 2024-02-19T22:17:10.964595+0000 mgr.smithi044.ikbsam (mgr.14184) 1063 : 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-02-19T22:17:13.311 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:13.311 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:13.986 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:14 smithi104 bash[21066]: cluster 2024-02-19T22:17:12.966287+0000 mgr.smithi044.ikbsam (mgr.14184) 1064 : 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-02-19T22:17:14.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:14 smithi044 bash[16231]: cluster 2024-02-19T22:17:12.966287+0000 mgr.smithi044.ikbsam (mgr.14184) 1064 : 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-02-19T22:17:14.987 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:15.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:15 smithi104 bash[21066]: audit 2024-02-19T22:17:13.294778+0000 mgr.smithi044.ikbsam (mgr.14184) 1065 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:15.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:15 smithi044 bash[16231]: audit 2024-02-19T22:17:13.294778+0000 mgr.smithi044.ikbsam (mgr.14184) 1065 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:16.313 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:16 smithi044 bash[16231]: cluster 2024-02-19T22:17:14.968232+0000 mgr.smithi044.ikbsam (mgr.14184) 1066 : cluster [DBG] pgmap v725: 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-02-19T22:17:16.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:16 smithi104 bash[21066]: cluster 2024-02-19T22:17:14.968232+0000 mgr.smithi044.ikbsam (mgr.14184) 1066 : cluster [DBG] pgmap v725: 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-02-19T22:17:18.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:18 smithi044 bash[16231]: cluster 2024-02-19T22:17:16.969394+0000 mgr.smithi044.ikbsam (mgr.14184) 1067 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:18.343 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:18.343 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:18.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:18 smithi104 bash[21066]: cluster 2024-02-19T22:17:16.969394+0000 mgr.smithi044.ikbsam (mgr.14184) 1067 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:19.004 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:19 smithi104 bash[21066]: audit 2024-02-19T22:17:18.328513+0000 mgr.smithi044.ikbsam (mgr.14184) 1068 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:19 smithi104 bash[21066]: cluster 2024-02-19T22:17:18.971256+0000 mgr.smithi044.ikbsam (mgr.14184) 1069 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:19 smithi044 bash[16231]: audit 2024-02-19T22:17:18.328513+0000 mgr.smithi044.ikbsam (mgr.14184) 1068 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:19.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:19 smithi044 bash[16231]: cluster 2024-02-19T22:17:18.971256+0000 mgr.smithi044.ikbsam (mgr.14184) 1069 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:20.005 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:22.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:22 smithi104 bash[21066]: cluster 2024-02-19T22:17:20.973247+0000 mgr.smithi044.ikbsam (mgr.14184) 1070 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:22.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:22 smithi044 bash[16231]: cluster 2024-02-19T22:17:20.973247+0000 mgr.smithi044.ikbsam (mgr.14184) 1070 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:23.418 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:23.418 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:23.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:23 smithi044 bash[16231]: cluster 2024-02-19T22:17:22.974509+0000 mgr.smithi044.ikbsam (mgr.14184) 1071 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:24.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:24.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:23 smithi104 bash[21066]: cluster 2024-02-19T22:17:22.974509+0000 mgr.smithi044.ikbsam (mgr.14184) 1071 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:25.030 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:25.043 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:24 smithi044 bash[16231]: audit 2024-02-19T22:17:23.407212+0000 mgr.smithi044.ikbsam (mgr.14184) 1072 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:24 smithi104 bash[21066]: audit 2024-02-19T22:17:23.407212+0000 mgr.smithi044.ikbsam (mgr.14184) 1072 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:25 smithi104 bash[21066]: cluster 2024-02-19T22:17:24.976278+0000 mgr.smithi044.ikbsam (mgr.14184) 1073 : cluster [DBG] pgmap v730: 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-02-19T22:17:26.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:25 smithi044 bash[16231]: cluster 2024-02-19T22:17:24.976278+0000 mgr.smithi044.ikbsam (mgr.14184) 1073 : cluster [DBG] pgmap v730: 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-02-19T22:17:28.356 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:28.356 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:28.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:28 smithi104 bash[21066]: cluster 2024-02-19T22:17:26.977317+0000 mgr.smithi044.ikbsam (mgr.14184) 1074 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:28.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:28 smithi044 bash[16231]: cluster 2024-02-19T22:17:26.977317+0000 mgr.smithi044.ikbsam (mgr.14184) 1074 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:29.043 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:30.045 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:30 smithi104 bash[21066]: audit 2024-02-19T22:17:28.342691+0000 mgr.smithi044.ikbsam (mgr.14184) 1075 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:30 smithi104 bash[21066]: cluster 2024-02-19T22:17:28.979047+0000 mgr.smithi044.ikbsam (mgr.14184) 1076 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:30.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:30 smithi044 bash[16231]: audit 2024-02-19T22:17:28.342691+0000 mgr.smithi044.ikbsam (mgr.14184) 1075 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:30.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:30 smithi044 bash[16231]: cluster 2024-02-19T22:17:28.979047+0000 mgr.smithi044.ikbsam (mgr.14184) 1076 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:32.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:32 smithi104 bash[21066]: cluster 2024-02-19T22:17:30.980958+0000 mgr.smithi044.ikbsam (mgr.14184) 1077 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:32.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:32 smithi044 bash[16231]: cluster 2024-02-19T22:17:30.980958+0000 mgr.smithi044.ikbsam (mgr.14184) 1077 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:33.409 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:33.410 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:34.089 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:34 smithi104 bash[21066]: cluster 2024-02-19T22:17:32.982734+0000 mgr.smithi044.ikbsam (mgr.14184) 1078 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:34.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:34 smithi044 bash[16231]: cluster 2024-02-19T22:17:32.982734+0000 mgr.smithi044.ikbsam (mgr.14184) 1078 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:35.090 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:35.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:35 smithi104 bash[21066]: audit 2024-02-19T22:17:33.395983+0000 mgr.smithi044.ikbsam (mgr.14184) 1079 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:35.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:35 smithi044 bash[16231]: audit 2024-02-19T22:17:33.395983+0000 mgr.smithi044.ikbsam (mgr.14184) 1079 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:36.366 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:36 smithi044 bash[16231]: cluster 2024-02-19T22:17:34.984539+0000 mgr.smithi044.ikbsam (mgr.14184) 1080 : cluster [DBG] pgmap v735: 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-02-19T22:17:36.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:36 smithi104 bash[21066]: cluster 2024-02-19T22:17:34.984539+0000 mgr.smithi044.ikbsam (mgr.14184) 1080 : cluster [DBG] pgmap v735: 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-02-19T22:17:37.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:37 smithi104 bash[21066]: cluster 2024-02-19T22:17:36.985625+0000 mgr.smithi044.ikbsam (mgr.14184) 1081 : 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-02-19T22:17:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:37 smithi044 bash[16231]: cluster 2024-02-19T22:17:36.985625+0000 mgr.smithi044.ikbsam (mgr.14184) 1081 : 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-02-19T22:17:38.563 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:38.563 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:39.238 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:40.239 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:40 smithi104 bash[21066]: audit 2024-02-19T22:17:38.547365+0000 mgr.smithi044.ikbsam (mgr.14184) 1082 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:40 smithi104 bash[21066]: cluster 2024-02-19T22:17:38.987417+0000 mgr.smithi044.ikbsam (mgr.14184) 1083 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:40 smithi044 bash[16231]: audit 2024-02-19T22:17:38.547365+0000 mgr.smithi044.ikbsam (mgr.14184) 1082 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:40 smithi044 bash[16231]: cluster 2024-02-19T22:17:38.987417+0000 mgr.smithi044.ikbsam (mgr.14184) 1083 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:17:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:41 smithi104 bash[21066]: audit 2024-02-19T22:17:40.940608+0000 mon.smithi044 (mon.0) 951 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:17:41.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:41 smithi044 bash[16231]: audit 2024-02-19T22:17:40.940608+0000 mon.smithi044 (mon.0) 951 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:17:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:42 smithi104 bash[21066]: cluster 2024-02-19T22:17:40.989318+0000 mgr.smithi044.ikbsam (mgr.14184) 1084 : 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-02-19T22:17:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:42 smithi104 bash[21066]: audit 2024-02-19T22:17:41.269941+0000 mon.smithi044 (mon.0) 952 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:17:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:42 smithi104 bash[21066]: audit 2024-02-19T22:17:41.271606+0000 mon.smithi044 (mon.0) 953 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:17:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:42 smithi104 bash[21066]: audit 2024-02-19T22:17:41.279848+0000 mon.smithi044 (mon.0) 954 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:42 smithi104 bash[21066]: audit 2024-02-19T22:17:41.288833+0000 mon.smithi044 (mon.0) 955 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:17:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:42 smithi104 bash[21066]: audit 2024-02-19T22:17:41.304658+0000 mon.smithi044 (mon.0) 956 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:42.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:42 smithi044 bash[16231]: cluster 2024-02-19T22:17:40.989318+0000 mgr.smithi044.ikbsam (mgr.14184) 1084 : 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-02-19T22:17:42.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:42 smithi044 bash[16231]: audit 2024-02-19T22:17:41.269941+0000 mon.smithi044 (mon.0) 952 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:17:42.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:42 smithi044 bash[16231]: audit 2024-02-19T22:17:41.271606+0000 mon.smithi044 (mon.0) 953 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:17:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:42 smithi044 bash[16231]: audit 2024-02-19T22:17:41.279848+0000 mon.smithi044 (mon.0) 954 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:42 smithi044 bash[16231]: audit 2024-02-19T22:17:41.288833+0000 mon.smithi044 (mon.0) 955 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:17:42.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:42 smithi044 bash[16231]: audit 2024-02-19T22:17:41.304658+0000 mon.smithi044 (mon.0) 956 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:43.330 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:43 smithi044 bash[16231]: cluster 2024-02-19T22:17:41.280882+0000 mgr.smithi044.ikbsam (mgr.14184) 1085 : cluster [DBG] pgmap v739: 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-02-19T22:17:43.330 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:43 smithi044 bash[16231]: cephadm 2024-02-19T22:17:41.308254+0000 mgr.smithi044.ikbsam (mgr.14184) 1086 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.jakojy on smithi104 2024-02-19T22:17:43.330 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:43 smithi044 bash[16231]: cluster 2024-02-19T22:17:42.277558+0000 mon.smithi044 (mon.0) 957 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:17:43.330 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:43 smithi044 bash[16231]: cluster 2024-02-19T22:17:42.277623+0000 mon.smithi044 (mon.0) 958 : cluster [INF] Cluster is now healthy 2024-02-19T22:17:43.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:43 smithi104 bash[21066]: cluster 2024-02-19T22:17:41.280882+0000 mgr.smithi044.ikbsam (mgr.14184) 1085 : cluster [DBG] pgmap v739: 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-02-19T22:17:43.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:43 smithi104 bash[21066]: cephadm 2024-02-19T22:17:41.308254+0000 mgr.smithi044.ikbsam (mgr.14184) 1086 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.jakojy on smithi104 2024-02-19T22:17:43.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:43 smithi104 bash[21066]: cluster 2024-02-19T22:17:42.277558+0000 mon.smithi044 (mon.0) 957 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:17:43.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:43 smithi104 bash[21066]: cluster 2024-02-19T22:17:42.277623+0000 mon.smithi044 (mon.0) 958 : cluster [INF] Cluster is now healthy 2024-02-19T22:17:43.691 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:43.692 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:15:31.822273Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.hszyex on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:44.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:44.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:44 smithi044 bash[16231]: cluster 2024-02-19T22:17:43.282459+0000 mgr.smithi044.ikbsam (mgr.14184) 1087 : cluster [DBG] pgmap v740: 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-02-19T22:17:44.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:44 smithi044 bash[16231]: audit 2024-02-19T22:17:43.650470+0000 mon.smithi044 (mon.0) 959 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:44.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:44 smithi044 bash[16231]: audit 2024-02-19T22:17:43.681396+0000 mgr.smithi044.ikbsam (mgr.14184) 1088 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:45.035 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:44 smithi104 bash[21066]: cluster 2024-02-19T22:17:43.282459+0000 mgr.smithi044.ikbsam (mgr.14184) 1087 : cluster [DBG] pgmap v740: 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-02-19T22:17:45.036 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:44 smithi104 bash[21066]: audit 2024-02-19T22:17:43.650470+0000 mon.smithi044 (mon.0) 959 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:45.036 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:44 smithi104 bash[21066]: audit 2024-02-19T22:17:43.681396+0000 mgr.smithi044.ikbsam (mgr.14184) 1088 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:45.395 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:46.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:45 smithi104 bash[21066]: audit 2024-02-19T22:17:45.098111+0000 mon.smithi044 (mon.0) 960 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.jakojy"}]: dispatch 2024-02-19T22:17:46.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:45 smithi044 bash[16231]: audit 2024-02-19T22:17:45.098111+0000 mon.smithi044 (mon.0) 960 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.jakojy"}]: dispatch 2024-02-19T22:17:47.006 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: cephadm 2024-02-19T22:17:45.095928+0000 mgr.smithi044.ikbsam (mgr.14184) 1089 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.jakojy ... 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.007 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.jakojy ... 2024-02-19T22:17:47.008 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: cephadm 2024-02-19T22:17:45.096435+0000 mgr.smithi044.ikbsam (mgr.14184) 1090 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: cephadm 2024-02-19T22:17:45.099897+0000 mgr.smithi044.ikbsam (mgr.14184) 1091 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.jakojy ... 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.009 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:47.010 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:47.010 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:47.010 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.010 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: cephadm 2024-02-19T22:17:45.104884+0000 mgr.smithi044.ikbsam (mgr.14184) 1092 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.lqcotx on smithi044 2024-02-19T22:17:47.010 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:46 smithi044 bash[16231]: cluster 2024-02-19T22:17:45.283558+0000 mgr.smithi044.ikbsam (mgr.14184) 1093 : cluster [DBG] pgmap v741: 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-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: cephadm 2024-02-19T22:17:45.095928+0000 mgr.smithi044.ikbsam (mgr.14184) 1089 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.jakojy ... 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.jakojy ... 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:47.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: cephadm 2024-02-19T22:17:45.096435+0000 mgr.smithi044.ikbsam (mgr.14184) 1090 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: cephadm 2024-02-19T22:17:45.099897+0000 mgr.smithi044.ikbsam (mgr.14184) 1091 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.jakojy ... 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:47.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: cephadm 2024-02-19T22:17:45.104884+0000 mgr.smithi044.ikbsam (mgr.14184) 1092 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.lqcotx on smithi044 2024-02-19T22:17:47.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:46 smithi104 bash[21066]: cluster 2024-02-19T22:17:45.283558+0000 mgr.smithi044.ikbsam (mgr.14184) 1093 : cluster [DBG] pgmap v741: 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-02-19T22:17:48.797 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:48 smithi044 bash[16231]: cluster 2024-02-19T22:17:47.284725+0000 mgr.smithi044.ikbsam (mgr.14184) 1094 : cluster [DBG] pgmap v742: 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-02-19T22:17:48.889 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:48.889 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:36.532748Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.xuzacd on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-xuzacd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.xuzacd\nDeploy daemon haproxy.nfs.foo.smithi104.xuzacd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.933277Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.swnjvh on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-swnjvh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.swnjvh\nDeploy daemon haproxy.nfs.foo.smithi044.swnjvh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:16:40.935396Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.mbuscj on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:49.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:48 smithi104 bash[21066]: cluster 2024-02-19T22:17:47.284725+0000 mgr.smithi044.ikbsam (mgr.14184) 1094 : cluster [DBG] pgmap v742: 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-02-19T22:17:49.628 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:49.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: audit 2024-02-19T22:17:48.871535+0000 mgr.smithi044.ikbsam (mgr.14184) 1095 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:49.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: cephadm 2024-02-19T22:17:48.900859+0000 mgr.smithi044.ikbsam (mgr.14184) 1096 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.lqcotx ... 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:17:49.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.lqcotx ... 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:49.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: cephadm 2024-02-19T22:17:48.901075+0000 mgr.smithi044.ikbsam (mgr.14184) 1097 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: audit 2024-02-19T22:17:48.901528+0000 mon.smithi044 (mon.0) 961 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.lqcotx"}]: dispatch 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: cephadm 2024-02-19T22:17:48.902640+0000 mgr.smithi044.ikbsam (mgr.14184) 1098 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.lqcotx ... 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:49.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: cephadm 2024-02-19T22:17:48.904558+0000 mgr.smithi044.ikbsam (mgr.14184) 1099 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:17:49.912 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: cephadm 2024-02-19T22:17:48.906013+0000 mgr.smithi044.ikbsam (mgr.14184) 1100 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:17:49.912 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:49 smithi044 bash[16231]: cluster 2024-02-19T22:17:48.907481+0000 mgr.smithi044.ikbsam (mgr.14184) 1101 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-19T22:17:50.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: audit 2024-02-19T22:17:48.871535+0000 mgr.smithi044.ikbsam (mgr.14184) 1095 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: cephadm 2024-02-19T22:17:48.900859+0000 mgr.smithi044.ikbsam (mgr.14184) 1096 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.lqcotx ... 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:50.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.lqcotx ... 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: cephadm 2024-02-19T22:17:48.901075+0000 mgr.smithi044.ikbsam (mgr.14184) 1097 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: audit 2024-02-19T22:17:48.901528+0000 mon.smithi044 (mon.0) 961 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.lqcotx"}]: dispatch 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: cephadm 2024-02-19T22:17:48.902640+0000 mgr.smithi044.ikbsam (mgr.14184) 1098 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx 2024-02-19T22:17:50.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.lqcotx ... 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: cephadm 2024-02-19T22:17:48.904558+0000 mgr.smithi044.ikbsam (mgr.14184) 1099 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: cephadm 2024-02-19T22:17:48.906013+0000 mgr.smithi044.ikbsam (mgr.14184) 1100 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:17:50.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:49 smithi104 bash[21066]: cluster 2024-02-19T22:17:48.907481+0000 mgr.smithi044.ikbsam (mgr.14184) 1101 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-19T22:17:50.629 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:50.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:50 smithi044 bash[16231]: cluster 2024-02-19T22:17:49.666869+0000 mon.smithi044 (mon.0) 962 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:17:50.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:50 smithi044 bash[16231]: audit 2024-02-19T22:17:49.757748+0000 mon.smithi044 (mon.0) 963 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:51.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:50 smithi104 bash[21066]: cluster 2024-02-19T22:17:49.666869+0000 mon.smithi044 (mon.0) 962 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:17:51.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:50 smithi104 bash[21066]: audit 2024-02-19T22:17:49.757748+0000 mon.smithi044 (mon.0) 963 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:51.962 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:51 smithi044 bash[16231]: cluster 2024-02-19T22:17:50.909314+0000 mgr.smithi044.ikbsam (mgr.14184) 1102 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-19T22:17:52.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:51 smithi104 bash[21066]: cluster 2024-02-19T22:17:50.909314+0000 mgr.smithi044.ikbsam (mgr.14184) 1102 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-19T22:17:53.908 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:53.908 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:54.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:53 smithi104 bash[21066]: cluster 2024-02-19T22:17:52.910890+0000 mgr.smithi044.ikbsam (mgr.14184) 1103 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-19T22:17:54.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:53 smithi044 bash[16231]: cluster 2024-02-19T22:17:52.910890+0000 mgr.smithi044.ikbsam (mgr.14184) 1103 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-19T22:17:54.564 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:54 smithi104 bash[21066]: audit 2024-02-19T22:17:53.891638+0000 mgr.smithi044.ikbsam (mgr.14184) 1104 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:55.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:54 smithi044 bash[16231]: audit 2024-02-19T22:17:53.891638+0000 mgr.smithi044.ikbsam (mgr.14184) 1104 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:55.565 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:17:56.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:55 smithi104 bash[21066]: cluster 2024-02-19T22:17:54.912872+0000 mgr.smithi044.ikbsam (mgr.14184) 1105 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2024-02-19T22:17:56.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:55 smithi044 bash[16231]: cluster 2024-02-19T22:17:54.912872+0000 mgr.smithi044.ikbsam (mgr.14184) 1105 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 176 B/s rd, 0 op/s 2024-02-19T22:17:58.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:57 smithi104 bash[21066]: cluster 2024-02-19T22:17:56.913992+0000 mgr.smithi044.ikbsam (mgr.14184) 1106 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-19T22:17:58.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:57 smithi044 bash[16231]: cluster 2024-02-19T22:17:56.913992+0000 mgr.smithi044.ikbsam (mgr.14184) 1106 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-19T22:17:58.862 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:17:58.862 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:17:59.550 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:17:59.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:59 smithi044 bash[16231]: audit 2024-02-19T22:17:58.650179+0000 mon.smithi044 (mon.0) 964 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:17:59.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:59 smithi044 bash[16231]: audit 2024-02-19T22:17:58.845470+0000 mgr.smithi044.ikbsam (mgr.14184) 1107 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:17:59.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:17:59 smithi044 bash[16231]: cluster 2024-02-19T22:17:58.915728+0000 mgr.smithi044.ikbsam (mgr.14184) 1108 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-19T22:18:00.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:59 smithi104 bash[21066]: audit 2024-02-19T22:17:58.650179+0000 mon.smithi044 (mon.0) 964 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:18:00.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:59 smithi104 bash[21066]: audit 2024-02-19T22:17:58.845470+0000 mgr.smithi044.ikbsam (mgr.14184) 1107 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:00.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:17:59 smithi104 bash[21066]: cluster 2024-02-19T22:17:58.915728+0000 mgr.smithi044.ikbsam (mgr.14184) 1108 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 B/s rd, 0 op/s 2024-02-19T22:18:00.551 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:02.011 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:01 smithi044 bash[16231]: cluster 2024-02-19T22:18:00.917665+0000 mgr.smithi044.ikbsam (mgr.14184) 1109 : 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-02-19T22:18:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:01 smithi104 bash[21066]: cluster 2024-02-19T22:18:00.917665+0000 mgr.smithi044.ikbsam (mgr.14184) 1109 : 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-02-19T22:18:03.775 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:03.775 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:04.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:03 smithi044 bash[16231]: cluster 2024-02-19T22:18:02.919181+0000 mgr.smithi044.ikbsam (mgr.14184) 1110 : 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-02-19T22:18:04.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:03 smithi104 bash[21066]: cluster 2024-02-19T22:18:02.919181+0000 mgr.smithi044.ikbsam (mgr.14184) 1110 : 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-02-19T22:18:04.525 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:04 smithi104 bash[21066]: audit 2024-02-19T22:18:03.764449+0000 mgr.smithi044.ikbsam (mgr.14184) 1111 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:04 smithi044 bash[16231]: audit 2024-02-19T22:18:03.764449+0000 mgr.smithi044.ikbsam (mgr.14184) 1111 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:05.526 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:06.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:05 smithi104 bash[21066]: cluster 2024-02-19T22:18:04.921219+0000 mgr.smithi044.ikbsam (mgr.14184) 1112 : cluster [DBG] pgmap v751: 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-02-19T22:18:06.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:05 smithi044 bash[16231]: cluster 2024-02-19T22:18:04.921219+0000 mgr.smithi044.ikbsam (mgr.14184) 1112 : cluster [DBG] pgmap v751: 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-02-19T22:18:08.356 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:07 smithi044 bash[16231]: cluster 2024-02-19T22:18:06.922294+0000 mgr.smithi044.ikbsam (mgr.14184) 1113 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:08.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:07 smithi104 bash[21066]: cluster 2024-02-19T22:18:06.922294+0000 mgr.smithi044.ikbsam (mgr.14184) 1113 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:08.802 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:08.802 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:09.493 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:10.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:10 smithi104 bash[21066]: audit 2024-02-19T22:18:08.783905+0000 mgr.smithi044.ikbsam (mgr.14184) 1114 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:10.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:10 smithi104 bash[21066]: cluster 2024-02-19T22:18:08.923897+0000 mgr.smithi044.ikbsam (mgr.14184) 1115 : 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-02-19T22:18:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:10 smithi044 bash[16231]: audit 2024-02-19T22:18:08.783905+0000 mgr.smithi044.ikbsam (mgr.14184) 1114 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:10.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:10 smithi044 bash[16231]: cluster 2024-02-19T22:18:08.923897+0000 mgr.smithi044.ikbsam (mgr.14184) 1115 : 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-02-19T22:18:10.494 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:12.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:12 smithi104 bash[21066]: cluster 2024-02-19T22:18:10.925774+0000 mgr.smithi044.ikbsam (mgr.14184) 1116 : 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-02-19T22:18:12.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:12 smithi044 bash[16231]: cluster 2024-02-19T22:18:10.925774+0000 mgr.smithi044.ikbsam (mgr.14184) 1116 : 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-02-19T22:18:13.847 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:13.848 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:14.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:14 smithi104 bash[21066]: cluster 2024-02-19T22:18:12.927321+0000 mgr.smithi044.ikbsam (mgr.14184) 1117 : 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-02-19T22:18:14.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:14 smithi044 bash[16231]: cluster 2024-02-19T22:18:12.927321+0000 mgr.smithi044.ikbsam (mgr.14184) 1117 : 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-02-19T22:18:14.544 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:15.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:15 smithi104 bash[21066]: audit 2024-02-19T22:18:13.831829+0000 mgr.smithi044.ikbsam (mgr.14184) 1118 : audit [DBG] from='client.15374 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:15.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:15 smithi044 bash[16231]: audit 2024-02-19T22:18:13.831829+0000 mgr.smithi044.ikbsam (mgr.14184) 1118 : audit [DBG] from='client.15374 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:15.545 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:16.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:16 smithi104 bash[21066]: cluster 2024-02-19T22:18:14.929324+0000 mgr.smithi044.ikbsam (mgr.14184) 1119 : cluster [DBG] pgmap v756: 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-02-19T22:18:16.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:16 smithi044 bash[16231]: cluster 2024-02-19T22:18:14.929324+0000 mgr.smithi044.ikbsam (mgr.14184) 1119 : cluster [DBG] pgmap v756: 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-02-19T22:18:18.365 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:18 smithi044 bash[16231]: cluster 2024-02-19T22:18:16.930530+0000 mgr.smithi044.ikbsam (mgr.14184) 1120 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:18.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:18 smithi104 bash[21066]: cluster 2024-02-19T22:18:16.930530+0000 mgr.smithi044.ikbsam (mgr.14184) 1120 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:18.797 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:18.797 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:19.488 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:20.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:20 smithi104 bash[21066]: audit 2024-02-19T22:18:18.787255+0000 mgr.smithi044.ikbsam (mgr.14184) 1121 : audit [DBG] from='client.15378 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:20.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:20 smithi104 bash[21066]: cluster 2024-02-19T22:18:18.932405+0000 mgr.smithi044.ikbsam (mgr.14184) 1122 : 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-02-19T22:18:20.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:20 smithi044 bash[16231]: audit 2024-02-19T22:18:18.787255+0000 mgr.smithi044.ikbsam (mgr.14184) 1121 : audit [DBG] from='client.15378 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:20.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:20 smithi044 bash[16231]: cluster 2024-02-19T22:18:18.932405+0000 mgr.smithi044.ikbsam (mgr.14184) 1122 : 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-02-19T22:18:20.489 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:22.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:22 smithi104 bash[21066]: cluster 2024-02-19T22:18:20.934452+0000 mgr.smithi044.ikbsam (mgr.14184) 1123 : 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-02-19T22:18:22.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:22 smithi044 bash[16231]: cluster 2024-02-19T22:18:20.934452+0000 mgr.smithi044.ikbsam (mgr.14184) 1123 : 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-02-19T22:18:23.757 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:23.758 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:24.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:24 smithi044 bash[16231]: cluster 2024-02-19T22:18:22.936066+0000 mgr.smithi044.ikbsam (mgr.14184) 1124 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:24.376 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:24.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:24 smithi104 bash[21066]: cluster 2024-02-19T22:18:22.936066+0000 mgr.smithi044.ikbsam (mgr.14184) 1124 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:25.377 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:25 smithi104 bash[21066]: audit 2024-02-19T22:18:23.738811+0000 mgr.smithi044.ikbsam (mgr.14184) 1125 : audit [DBG] from='client.15382 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:25.390 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:25 smithi044 bash[16231]: audit 2024-02-19T22:18:23.738811+0000 mgr.smithi044.ikbsam (mgr.14184) 1125 : audit [DBG] from='client.15382 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:26.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:26 smithi104 bash[21066]: cluster 2024-02-19T22:18:24.938052+0000 mgr.smithi044.ikbsam (mgr.14184) 1126 : cluster [DBG] pgmap v761: 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-02-19T22:18:26.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:26 smithi044 bash[16231]: cluster 2024-02-19T22:18:24.938052+0000 mgr.smithi044.ikbsam (mgr.14184) 1126 : cluster [DBG] pgmap v761: 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-02-19T22:18:27.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:27 smithi044 bash[16231]: cluster 2024-02-19T22:18:26.939109+0000 mgr.smithi044.ikbsam (mgr.14184) 1127 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:27.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:27 smithi104 bash[21066]: cluster 2024-02-19T22:18:26.939109+0000 mgr.smithi044.ikbsam (mgr.14184) 1127 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:28.747 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:28.747 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:29.472 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:29 smithi104 bash[21066]: audit 2024-02-19T22:18:28.730727+0000 mgr.smithi044.ikbsam (mgr.14184) 1128 : audit [DBG] from='client.15386 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:30.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:29 smithi104 bash[21066]: cluster 2024-02-19T22:18:28.940880+0000 mgr.smithi044.ikbsam (mgr.14184) 1129 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:30.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:29 smithi044 bash[16231]: audit 2024-02-19T22:18:28.730727+0000 mgr.smithi044.ikbsam (mgr.14184) 1128 : audit [DBG] from='client.15386 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:30.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:29 smithi044 bash[16231]: cluster 2024-02-19T22:18:28.940880+0000 mgr.smithi044.ikbsam (mgr.14184) 1129 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:30.473 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:32.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:32 smithi104 bash[21066]: cluster 2024-02-19T22:18:30.942843+0000 mgr.smithi044.ikbsam (mgr.14184) 1130 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:32.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:32 smithi044 bash[16231]: cluster 2024-02-19T22:18:30.942843+0000 mgr.smithi044.ikbsam (mgr.14184) 1130 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:33.799 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:33.799 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:34.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:34 smithi044 bash[16231]: cluster 2024-02-19T22:18:32.944588+0000 mgr.smithi044.ikbsam (mgr.14184) 1131 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:34.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:34 smithi104 bash[21066]: cluster 2024-02-19T22:18:32.944588+0000 mgr.smithi044.ikbsam (mgr.14184) 1131 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:34.543 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:35.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:35 smithi104 bash[21066]: audit 2024-02-19T22:18:33.783295+0000 mgr.smithi044.ikbsam (mgr.14184) 1132 : audit [DBG] from='client.15390 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:35.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:35 smithi044 bash[16231]: audit 2024-02-19T22:18:33.783295+0000 mgr.smithi044.ikbsam (mgr.14184) 1132 : audit [DBG] from='client.15390 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:35.544 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:36.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:36 smithi104 bash[21066]: cluster 2024-02-19T22:18:34.946404+0000 mgr.smithi044.ikbsam (mgr.14184) 1133 : cluster [DBG] pgmap v766: 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-02-19T22:18:36.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:36 smithi044 bash[16231]: cluster 2024-02-19T22:18:34.946404+0000 mgr.smithi044.ikbsam (mgr.14184) 1133 : cluster [DBG] pgmap v766: 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-02-19T22:18:38.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:38 smithi104 bash[21066]: cluster 2024-02-19T22:18:36.947468+0000 mgr.smithi044.ikbsam (mgr.14184) 1134 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:38.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:38 smithi044 bash[16231]: cluster 2024-02-19T22:18:36.947468+0000 mgr.smithi044.ikbsam (mgr.14184) 1134 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:38.899 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:38.899 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:39.586 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:40 smithi104 bash[21066]: audit 2024-02-19T22:18:38.885644+0000 mgr.smithi044.ikbsam (mgr.14184) 1135 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:40 smithi104 bash[21066]: cluster 2024-02-19T22:18:38.949175+0000 mgr.smithi044.ikbsam (mgr.14184) 1136 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:40 smithi044 bash[16231]: audit 2024-02-19T22:18:38.885644+0000 mgr.smithi044.ikbsam (mgr.14184) 1135 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:40.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:40 smithi044 bash[16231]: cluster 2024-02-19T22:18:38.949175+0000 mgr.smithi044.ikbsam (mgr.14184) 1136 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:40.588 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:42 smithi104 bash[21066]: cluster 2024-02-19T22:18:40.951066+0000 mgr.smithi044.ikbsam (mgr.14184) 1137 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:42.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:42 smithi044 bash[16231]: cluster 2024-02-19T22:18:40.951066+0000 mgr.smithi044.ikbsam (mgr.14184) 1137 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:43.839 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:43.839 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:44 smithi044 bash[16231]: cluster 2024-02-19T22:18:42.952847+0000 mgr.smithi044.ikbsam (mgr.14184) 1138 : 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-02-19T22:18:44.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:44 smithi104 bash[21066]: cluster 2024-02-19T22:18:42.952847+0000 mgr.smithi044.ikbsam (mgr.14184) 1138 : 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-02-19T22:18:44.547 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:45 smithi104 bash[21066]: audit 2024-02-19T22:18:43.821937+0000 mgr.smithi044.ikbsam (mgr.14184) 1139 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:45 smithi044 bash[16231]: audit 2024-02-19T22:18:43.821937+0000 mgr.smithi044.ikbsam (mgr.14184) 1139 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:45.548 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:46.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:46 smithi104 bash[21066]: cluster 2024-02-19T22:18:44.954712+0000 mgr.smithi044.ikbsam (mgr.14184) 1140 : cluster [DBG] pgmap v771: 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-02-19T22:18:46.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:46 smithi044 bash[16231]: cluster 2024-02-19T22:18:44.954712+0000 mgr.smithi044.ikbsam (mgr.14184) 1140 : cluster [DBG] pgmap v771: 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-02-19T22:18:48.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:48 smithi104 bash[21066]: cluster 2024-02-19T22:18:46.955778+0000 mgr.smithi044.ikbsam (mgr.14184) 1141 : 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-02-19T22:18:48.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:48 smithi044 bash[16231]: cluster 2024-02-19T22:18:46.955778+0000 mgr.smithi044.ikbsam (mgr.14184) 1141 : 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-02-19T22:18:48.939 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:48.940 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:16:40.936999Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.xcylwm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:49 smithi104 bash[21066]: audit 2024-02-19T22:18:48.909273+0000 mon.smithi044 (mon.0) 965 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:18:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:49 smithi044 bash[16231]: audit 2024-02-19T22:18:48.909273+0000 mon.smithi044 (mon.0) 965 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:18:49.669 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: audit 2024-02-19T22:18:48.919915+0000 mgr.smithi044.ikbsam (mgr.14184) 1142 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: cluster 2024-02-19T22:18:48.957541+0000 mgr.smithi044.ikbsam (mgr.14184) 1143 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: audit 2024-02-19T22:18:49.243055+0000 mon.smithi044 (mon.0) 966 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:18:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: audit 2024-02-19T22:18:49.244751+0000 mon.smithi044 (mon.0) 967 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:18:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: audit 2024-02-19T22:18:49.254601+0000 mon.smithi044 (mon.0) 968 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:18:50.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: cluster 2024-02-19T22:18:49.255825+0000 mgr.smithi044.ikbsam (mgr.14184) 1144 : cluster [DBG] pgmap v774: 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-02-19T22:18:50.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: audit 2024-02-19T22:18:49.264902+0000 mon.smithi044 (mon.0) 969 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:18:50.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: audit 2024-02-19T22:18:49.278997+0000 mon.smithi044 (mon.0) 970 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:18:50.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:50 smithi104 bash[21066]: cephadm 2024-02-19T22:18:49.282230+0000 mgr.smithi044.ikbsam (mgr.14184) 1145 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.dvbwkq on smithi104 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: audit 2024-02-19T22:18:48.919915+0000 mgr.smithi044.ikbsam (mgr.14184) 1142 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: cluster 2024-02-19T22:18:48.957541+0000 mgr.smithi044.ikbsam (mgr.14184) 1143 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: audit 2024-02-19T22:18:49.243055+0000 mon.smithi044 (mon.0) 966 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: audit 2024-02-19T22:18:49.244751+0000 mon.smithi044 (mon.0) 967 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: audit 2024-02-19T22:18:49.254601+0000 mon.smithi044 (mon.0) 968 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: cluster 2024-02-19T22:18:49.255825+0000 mgr.smithi044.ikbsam (mgr.14184) 1144 : cluster [DBG] pgmap v774: 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-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: audit 2024-02-19T22:18:49.264902+0000 mon.smithi044 (mon.0) 969 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: audit 2024-02-19T22:18:49.278997+0000 mon.smithi044 (mon.0) 970 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:18:50.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:50 smithi044 bash[16231]: cephadm 2024-02-19T22:18:49.282230+0000 mgr.smithi044.ikbsam (mgr.14184) 1145 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.dvbwkq on smithi104 2024-02-19T22:18:50.670 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:51 smithi104 bash[21066]: cluster 2024-02-19T22:18:50.250583+0000 mon.smithi044 (mon.0) 971 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:18:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:51 smithi104 bash[21066]: cluster 2024-02-19T22:18:50.250650+0000 mon.smithi044 (mon.0) 972 : cluster [INF] Cluster is now healthy 2024-02-19T22:18:51.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:51 smithi044 bash[16231]: cluster 2024-02-19T22:18:50.250583+0000 mon.smithi044 (mon.0) 971 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:18:51.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:51 smithi044 bash[16231]: cluster 2024-02-19T22:18:50.250650+0000 mon.smithi044 (mon.0) 972 : cluster [INF] Cluster is now healthy 2024-02-19T22:18:52.208 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:52 smithi044 bash[16231]: cluster 2024-02-19T22:18:51.257216+0000 mgr.smithi044.ikbsam (mgr.14184) 1146 : cluster [DBG] pgmap v775: 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-02-19T22:18:52.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:52 smithi104 bash[21066]: cluster 2024-02-19T22:18:51.257216+0000 mgr.smithi044.ikbsam (mgr.14184) 1146 : cluster [DBG] pgmap v775: 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-02-19T22:18:53.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:53 smithi104 bash[21066]: audit 2024-02-19T22:18:53.145063+0000 mon.smithi044 (mon.0) 973 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.dvbwkq"}]: dispatch 2024-02-19T22:18:53.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:53 smithi044 bash[16231]: audit 2024-02-19T22:18:53.145063+0000 mon.smithi044 (mon.0) 973 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.dvbwkq"}]: dispatch 2024-02-19T22:18:54.215 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:54.215 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:45.099657Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.jakojy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-jakojy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.jakojy\nDeploy daemon haproxy.nfs.foo.smithi104.jakojy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.902515Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.lqcotx on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-lqcotx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.lqcotx\nDeploy daemon haproxy.nfs.foo.smithi044.lqcotx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:17:48.904461Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.icxsvt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: cephadm 2024-02-19T22:18:53.143741+0000 mgr.smithi044.ikbsam (mgr.14184) 1147 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dvbwkq ... 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:54.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dvbwkq ... 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: cephadm 2024-02-19T22:18:53.144326+0000 mgr.smithi044.ikbsam (mgr.14184) 1148 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: cephadm 2024-02-19T22:18:53.146820+0000 mgr.smithi044.ikbsam (mgr.14184) 1149 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dvbwkq ... 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: cephadm 2024-02-19T22:18:53.153074+0000 mgr.smithi044.ikbsam (mgr.14184) 1150 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.xspklt on smithi044 2024-02-19T22:18:54.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:54 smithi104 bash[21066]: cluster 2024-02-19T22:18:53.258439+0000 mgr.smithi044.ikbsam (mgr.14184) 1151 : cluster [DBG] pgmap v776: 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-02-19T22:18:54.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: cephadm 2024-02-19T22:18:53.143741+0000 mgr.smithi044.ikbsam (mgr.14184) 1147 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.658 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dvbwkq ... 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:54.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dvbwkq ... 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: cephadm 2024-02-19T22:18:53.144326+0000 mgr.smithi044.ikbsam (mgr.14184) 1148 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: cephadm 2024-02-19T22:18:53.146820+0000 mgr.smithi044.ikbsam (mgr.14184) 1149 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dvbwkq ... 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:54.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:54.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:54.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: cephadm 2024-02-19T22:18:53.153074+0000 mgr.smithi044.ikbsam (mgr.14184) 1150 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.xspklt on smithi044 2024-02-19T22:18:54.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:54 smithi044 bash[16231]: cluster 2024-02-19T22:18:53.258439+0000 mgr.smithi044.ikbsam (mgr.14184) 1151 : cluster [DBG] pgmap v776: 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-02-19T22:18:54.930 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:18:55.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:55 smithi104 bash[21066]: audit 2024-02-19T22:18:54.196675+0000 mgr.smithi044.ikbsam (mgr.14184) 1152 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:55.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:55 smithi044 bash[16231]: audit 2024-02-19T22:18:54.196675+0000 mgr.smithi044.ikbsam (mgr.14184) 1152 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:18:55.931 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:18:56.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:56 smithi104 bash[21066]: cluster 2024-02-19T22:18:55.260070+0000 mgr.smithi044.ikbsam (mgr.14184) 1153 : cluster [DBG] pgmap v777: 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-02-19T22:18:56.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:56 smithi044 bash[16231]: cluster 2024-02-19T22:18:55.260070+0000 mgr.smithi044.ikbsam (mgr.14184) 1153 : cluster [DBG] pgmap v777: 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-02-19T22:18:57.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:57 smithi044 bash[16231]: audit 2024-02-19T22:18:57.167782+0000 mon.smithi044 (mon.0) 974 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.xspklt"}]: dispatch 2024-02-19T22:18:57.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:57 smithi104 bash[21066]: audit 2024-02-19T22:18:57.167782+0000 mon.smithi044 (mon.0) 974 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.xspklt"}]: dispatch 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cephadm 2024-02-19T22:18:57.166527+0000 mgr.smithi044.ikbsam (mgr.14184) 1154 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.xspklt ... 2024-02-19T22:18:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.631 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.xspklt ... 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.632 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cephadm 2024-02-19T22:18:57.167005+0000 mgr.smithi044.ikbsam (mgr.14184) 1155 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cephadm 2024-02-19T22:18:57.169265+0000 mgr.smithi044.ikbsam (mgr.14184) 1156 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.xspklt ... 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:58.633 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:58.634 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.634 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cephadm 2024-02-19T22:18:57.171410+0000 mgr.smithi044.ikbsam (mgr.14184) 1157 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:18:58.634 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cephadm 2024-02-19T22:18:57.173159+0000 mgr.smithi044.ikbsam (mgr.14184) 1158 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:18:58.634 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cluster 2024-02-19T22:18:57.174548+0000 mgr.smithi044.ikbsam (mgr.14184) 1159 : cluster [DBG] pgmap v778: 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-02-19T22:18:58.634 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:18:58 smithi104 bash[21066]: cluster 2024-02-19T22:18:57.223706+0000 mon.smithi044 (mon.0) 975 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:18:58.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cephadm 2024-02-19T22:18:57.166527+0000 mgr.smithi044.ikbsam (mgr.14184) 1154 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.xspklt ... 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:18:58.660 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.xspklt ... 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cephadm 2024-02-19T22:18:57.167005+0000 mgr.smithi044.ikbsam (mgr.14184) 1155 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.661 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cephadm 2024-02-19T22:18:57.169265+0000 mgr.smithi044.ikbsam (mgr.14184) 1156 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.xspklt ... 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cephadm 2024-02-19T22:18:57.171410+0000 mgr.smithi044.ikbsam (mgr.14184) 1157 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cephadm 2024-02-19T22:18:57.173159+0000 mgr.smithi044.ikbsam (mgr.14184) 1158 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cluster 2024-02-19T22:18:57.174548+0000 mgr.smithi044.ikbsam (mgr.14184) 1159 : cluster [DBG] pgmap v778: 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-02-19T22:18:58.662 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:18:58 smithi044 bash[16231]: cluster 2024-02-19T22:18:57.223706+0000 mon.smithi044 (mon.0) 975 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:18:59.710 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:18:59.711 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:00.364 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:01.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:00 smithi104 bash[21066]: cluster 2024-02-19T22:18:59.176191+0000 mgr.smithi044.ikbsam (mgr.14184) 1160 : cluster [DBG] pgmap v779: 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-02-19T22:19:01.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:00 smithi104 bash[21066]: audit 2024-02-19T22:18:59.700012+0000 mgr.smithi044.ikbsam (mgr.14184) 1161 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:01.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:00 smithi104 bash[21066]: audit 2024-02-19T22:18:59.821161+0000 mon.smithi044 (mon.0) 976 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:01.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:00 smithi044 bash[16231]: cluster 2024-02-19T22:18:59.176191+0000 mgr.smithi044.ikbsam (mgr.14184) 1160 : cluster [DBG] pgmap v779: 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-02-19T22:19:01.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:00 smithi044 bash[16231]: audit 2024-02-19T22:18:59.700012+0000 mgr.smithi044.ikbsam (mgr.14184) 1161 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:01.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:00 smithi044 bash[16231]: audit 2024-02-19T22:18:59.821161+0000 mon.smithi044 (mon.0) 976 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:01.365 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:03.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:02 smithi104 bash[21066]: cluster 2024-02-19T22:19:01.177924+0000 mgr.smithi044.ikbsam (mgr.14184) 1162 : 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-02-19T22:19:03.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:02 smithi044 bash[16231]: cluster 2024-02-19T22:19:01.177924+0000 mgr.smithi044.ikbsam (mgr.14184) 1162 : 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-02-19T22:19:04.630 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:04.631 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:05.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:04 smithi104 bash[21066]: cluster 2024-02-19T22:19:03.179671+0000 mgr.smithi044.ikbsam (mgr.14184) 1163 : 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-02-19T22:19:05.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:04 smithi044 bash[16231]: cluster 2024-02-19T22:19:03.179671+0000 mgr.smithi044.ikbsam (mgr.14184) 1163 : 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-02-19T22:19:05.277 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:06.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:05 smithi104 bash[21066]: audit 2024-02-19T22:19:04.620417+0000 mgr.smithi044.ikbsam (mgr.14184) 1164 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:06.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:05 smithi044 bash[16231]: audit 2024-02-19T22:19:04.620417+0000 mgr.smithi044.ikbsam (mgr.14184) 1164 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:06.279 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:07.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:06 smithi104 bash[21066]: cluster 2024-02-19T22:19:05.181575+0000 mgr.smithi044.ikbsam (mgr.14184) 1165 : cluster [DBG] pgmap v782: 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-02-19T22:19:07.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:06 smithi044 bash[16231]: cluster 2024-02-19T22:19:05.181575+0000 mgr.smithi044.ikbsam (mgr.14184) 1165 : cluster [DBG] pgmap v782: 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-02-19T22:19:09.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:08 smithi104 bash[21066]: cluster 2024-02-19T22:19:07.182983+0000 mgr.smithi044.ikbsam (mgr.14184) 1166 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:09.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:08 smithi044 bash[16231]: cluster 2024-02-19T22:19:07.182983+0000 mgr.smithi044.ikbsam (mgr.14184) 1166 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:09.685 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:09.685 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:10.294 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:11.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:10 smithi104 bash[21066]: cluster 2024-02-19T22:19:09.184683+0000 mgr.smithi044.ikbsam (mgr.14184) 1167 : 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-02-19T22:19:11.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:10 smithi104 bash[21066]: audit 2024-02-19T22:19:09.675155+0000 mgr.smithi044.ikbsam (mgr.14184) 1168 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:11.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:10 smithi044 bash[16231]: cluster 2024-02-19T22:19:09.184683+0000 mgr.smithi044.ikbsam (mgr.14184) 1167 : 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-02-19T22:19:11.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:10 smithi044 bash[16231]: audit 2024-02-19T22:19:09.675155+0000 mgr.smithi044.ikbsam (mgr.14184) 1168 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:11.295 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:12 smithi104 bash[21066]: cluster 2024-02-19T22:19:11.186532+0000 mgr.smithi044.ikbsam (mgr.14184) 1169 : 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-02-19T22:19:13.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:12 smithi044 bash[16231]: cluster 2024-02-19T22:19:11.186532+0000 mgr.smithi044.ikbsam (mgr.14184) 1169 : 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-02-19T22:19:14.575 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:14.575 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:14.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:14 smithi044 bash[16231]: cluster 2024-02-19T22:19:13.188296+0000 mgr.smithi044.ikbsam (mgr.14184) 1170 : 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-02-19T22:19:15.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:14 smithi104 bash[21066]: cluster 2024-02-19T22:19:13.188296+0000 mgr.smithi044.ikbsam (mgr.14184) 1170 : 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-02-19T22:19:15.203 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:16.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:15 smithi044 bash[16231]: audit 2024-02-19T22:19:14.564321+0000 mgr.smithi044.ikbsam (mgr.14184) 1171 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:16.204 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:16.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:15 smithi104 bash[21066]: audit 2024-02-19T22:19:14.564321+0000 mgr.smithi044.ikbsam (mgr.14184) 1171 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:16 smithi044 bash[16231]: cluster 2024-02-19T22:19:15.190331+0000 mgr.smithi044.ikbsam (mgr.14184) 1172 : cluster [DBG] pgmap v787: 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-02-19T22:19:17.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:16 smithi104 bash[21066]: cluster 2024-02-19T22:19:15.190331+0000 mgr.smithi044.ikbsam (mgr.14184) 1172 : cluster [DBG] pgmap v787: 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-02-19T22:19:19.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:18 smithi044 bash[16231]: cluster 2024-02-19T22:19:17.191897+0000 mgr.smithi044.ikbsam (mgr.14184) 1173 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:19.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:18 smithi104 bash[21066]: cluster 2024-02-19T22:19:17.191897+0000 mgr.smithi044.ikbsam (mgr.14184) 1173 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:19.591 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:19.591 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:20.267 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:21.267 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:21.280 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:20 smithi044 bash[16231]: cluster 2024-02-19T22:19:19.193932+0000 mgr.smithi044.ikbsam (mgr.14184) 1174 : 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-02-19T22:19:21.280 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:20 smithi044 bash[16231]: audit 2024-02-19T22:19:19.573749+0000 mgr.smithi044.ikbsam (mgr.14184) 1175 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:21.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:20 smithi104 bash[21066]: cluster 2024-02-19T22:19:19.193932+0000 mgr.smithi044.ikbsam (mgr.14184) 1174 : 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-02-19T22:19:21.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:20 smithi104 bash[21066]: audit 2024-02-19T22:19:19.573749+0000 mgr.smithi044.ikbsam (mgr.14184) 1175 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:23.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:22 smithi104 bash[21066]: cluster 2024-02-19T22:19:21.195659+0000 mgr.smithi044.ikbsam (mgr.14184) 1176 : 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-02-19T22:19:23.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:22 smithi044 bash[16231]: cluster 2024-02-19T22:19:21.195659+0000 mgr.smithi044.ikbsam (mgr.14184) 1176 : 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-02-19T22:19:24.546 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:24.546 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:25.206 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:24 smithi044 bash[16231]: cluster 2024-02-19T22:19:23.198754+0000 mgr.smithi044.ikbsam (mgr.14184) 1177 : 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-02-19T22:19:25.207 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:25.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:24 smithi104 bash[21066]: cluster 2024-02-19T22:19:23.198754+0000 mgr.smithi044.ikbsam (mgr.14184) 1177 : 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-02-19T22:19:26.208 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:26.221 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:25 smithi044 bash[16231]: audit 2024-02-19T22:19:24.527646+0000 mgr.smithi044.ikbsam (mgr.14184) 1178 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:26.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:25 smithi104 bash[21066]: audit 2024-02-19T22:19:24.527646+0000 mgr.smithi044.ikbsam (mgr.14184) 1178 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:27.359 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:26 smithi044 bash[16231]: cluster 2024-02-19T22:19:25.200683+0000 mgr.smithi044.ikbsam (mgr.14184) 1179 : cluster [DBG] pgmap v792: 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-02-19T22:19:27.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:26 smithi104 bash[21066]: cluster 2024-02-19T22:19:25.200683+0000 mgr.smithi044.ikbsam (mgr.14184) 1179 : cluster [DBG] pgmap v792: 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-02-19T22:19:29.267 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:28 smithi044 bash[16231]: cluster 2024-02-19T22:19:27.202127+0000 mgr.smithi044.ikbsam (mgr.14184) 1180 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:29.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:28 smithi104 bash[21066]: cluster 2024-02-19T22:19:27.202127+0000 mgr.smithi044.ikbsam (mgr.14184) 1180 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:29.739 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:29.739 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:30.448 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:31.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:30 smithi104 bash[21066]: cluster 2024-02-19T22:19:29.203774+0000 mgr.smithi044.ikbsam (mgr.14184) 1181 : 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-02-19T22:19:31.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:30 smithi104 bash[21066]: audit 2024-02-19T22:19:29.720971+0000 mgr.smithi044.ikbsam (mgr.14184) 1182 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:31.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:30 smithi044 bash[16231]: cluster 2024-02-19T22:19:29.203774+0000 mgr.smithi044.ikbsam (mgr.14184) 1181 : 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-02-19T22:19:31.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:30 smithi044 bash[16231]: audit 2024-02-19T22:19:29.720971+0000 mgr.smithi044.ikbsam (mgr.14184) 1182 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:31.449 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:32 smithi104 bash[21066]: cluster 2024-02-19T22:19:31.205447+0000 mgr.smithi044.ikbsam (mgr.14184) 1183 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:33.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:32 smithi044 bash[16231]: cluster 2024-02-19T22:19:31.205447+0000 mgr.smithi044.ikbsam (mgr.14184) 1183 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:34.786 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:34.786 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:35.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:34 smithi044 bash[16231]: cluster 2024-02-19T22:19:33.206496+0000 mgr.smithi044.ikbsam (mgr.14184) 1184 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:35.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:34 smithi104 bash[21066]: cluster 2024-02-19T22:19:33.206496+0000 mgr.smithi044.ikbsam (mgr.14184) 1184 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:35.457 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:36.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:35 smithi104 bash[21066]: audit 2024-02-19T22:19:34.767629+0000 mgr.smithi044.ikbsam (mgr.14184) 1185 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:36.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:35 smithi044 bash[16231]: audit 2024-02-19T22:19:34.767629+0000 mgr.smithi044.ikbsam (mgr.14184) 1185 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:36.458 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:37.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:36 smithi104 bash[21066]: cluster 2024-02-19T22:19:35.208452+0000 mgr.smithi044.ikbsam (mgr.14184) 1186 : cluster [DBG] pgmap v797: 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-02-19T22:19:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:36 smithi044 bash[16231]: cluster 2024-02-19T22:19:35.208452+0000 mgr.smithi044.ikbsam (mgr.14184) 1186 : cluster [DBG] pgmap v797: 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-02-19T22:19:39.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:38 smithi104 bash[21066]: cluster 2024-02-19T22:19:37.209978+0000 mgr.smithi044.ikbsam (mgr.14184) 1187 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:39.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:38 smithi044 bash[16231]: cluster 2024-02-19T22:19:37.209978+0000 mgr.smithi044.ikbsam (mgr.14184) 1187 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:39.842 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:39.843 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:40.483 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:40 smithi104 bash[21066]: cluster 2024-02-19T22:19:39.211603+0000 mgr.smithi044.ikbsam (mgr.14184) 1188 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:40 smithi104 bash[21066]: audit 2024-02-19T22:19:39.831995+0000 mgr.smithi044.ikbsam (mgr.14184) 1189 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:41.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:40 smithi044 bash[16231]: cluster 2024-02-19T22:19:39.211603+0000 mgr.smithi044.ikbsam (mgr.14184) 1188 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:41.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:40 smithi044 bash[16231]: audit 2024-02-19T22:19:39.831995+0000 mgr.smithi044.ikbsam (mgr.14184) 1189 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:41.483 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:43.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:42 smithi104 bash[21066]: cluster 2024-02-19T22:19:41.213400+0000 mgr.smithi044.ikbsam (mgr.14184) 1190 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:43.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:42 smithi044 bash[16231]: cluster 2024-02-19T22:19:41.213400+0000 mgr.smithi044.ikbsam (mgr.14184) 1190 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:44.836 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:44.836 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:45.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:44 smithi044 bash[16231]: cluster 2024-02-19T22:19:43.214481+0000 mgr.smithi044.ikbsam (mgr.14184) 1191 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:44 smithi104 bash[21066]: cluster 2024-02-19T22:19:43.214481+0000 mgr.smithi044.ikbsam (mgr.14184) 1191 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:45.441 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:46.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:46 smithi104 bash[21066]: audit 2024-02-19T22:19:44.817716+0000 mgr.smithi044.ikbsam (mgr.14184) 1192 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:46.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:46 smithi044 bash[16231]: audit 2024-02-19T22:19:44.817716+0000 mgr.smithi044.ikbsam (mgr.14184) 1192 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:46.442 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:47 smithi104 bash[21066]: cluster 2024-02-19T22:19:45.216439+0000 mgr.smithi044.ikbsam (mgr.14184) 1193 : cluster [DBG] pgmap v802: 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-02-19T22:19:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:47 smithi044 bash[16231]: cluster 2024-02-19T22:19:45.216439+0000 mgr.smithi044.ikbsam (mgr.14184) 1193 : cluster [DBG] pgmap v802: 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-02-19T22:19:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:49 smithi104 bash[21066]: cluster 2024-02-19T22:19:47.217931+0000 mgr.smithi044.ikbsam (mgr.14184) 1194 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:49 smithi044 bash[16231]: cluster 2024-02-19T22:19:47.217931+0000 mgr.smithi044.ikbsam (mgr.14184) 1194 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:49.861 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:49.861 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:50.562 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:51 smithi104 bash[21066]: cluster 2024-02-19T22:19:49.219587+0000 mgr.smithi044.ikbsam (mgr.14184) 1195 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:51.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:51 smithi104 bash[21066]: audit 2024-02-19T22:19:49.842460+0000 mgr.smithi044.ikbsam (mgr.14184) 1196 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:51.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:51 smithi044 bash[16231]: cluster 2024-02-19T22:19:49.219587+0000 mgr.smithi044.ikbsam (mgr.14184) 1195 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:51.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:51 smithi044 bash[16231]: audit 2024-02-19T22:19:49.842460+0000 mgr.smithi044.ikbsam (mgr.14184) 1196 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:51.563 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:53.038 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:53 smithi044 bash[16231]: cluster 2024-02-19T22:19:51.221246+0000 mgr.smithi044.ikbsam (mgr.14184) 1197 : 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-02-19T22:19:53.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:53 smithi104 bash[21066]: cluster 2024-02-19T22:19:51.221246+0000 mgr.smithi044.ikbsam (mgr.14184) 1197 : 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-02-19T22:19:54.915 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:19:54.916 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:19:55.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:55 smithi104 bash[21066]: cluster 2024-02-19T22:19:53.222453+0000 mgr.smithi044.ikbsam (mgr.14184) 1198 : 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-02-19T22:19:55.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:55 smithi044 bash[16231]: cluster 2024-02-19T22:19:53.222453+0000 mgr.smithi044.ikbsam (mgr.14184) 1198 : 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-02-19T22:19:55.523 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:19:56.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:56 smithi104 bash[21066]: audit 2024-02-19T22:19:54.896881+0000 mgr.smithi044.ikbsam (mgr.14184) 1199 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:56.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:56 smithi044 bash[16231]: audit 2024-02-19T22:19:54.896881+0000 mgr.smithi044.ikbsam (mgr.14184) 1199 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:19:56.524 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:19:57.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:57 smithi104 bash[21066]: cluster 2024-02-19T22:19:55.224412+0000 mgr.smithi044.ikbsam (mgr.14184) 1200 : cluster [DBG] pgmap v807: 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-02-19T22:19:57.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:57 smithi044 bash[16231]: cluster 2024-02-19T22:19:55.224412+0000 mgr.smithi044.ikbsam (mgr.14184) 1200 : cluster [DBG] pgmap v807: 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-02-19T22:19:58.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:58 smithi044 bash[16231]: audit 2024-02-19T22:19:57.176926+0000 mon.smithi044 (mon.0) 977 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:19:58.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:58 smithi044 bash[16231]: audit 2024-02-19T22:19:57.500092+0000 mon.smithi044 (mon.0) 978 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:19:58.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:58 smithi044 bash[16231]: audit 2024-02-19T22:19:57.501585+0000 mon.smithi044 (mon.0) 979 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:19:58.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:58 smithi044 bash[16231]: audit 2024-02-19T22:19:57.510019+0000 mon.smithi044 (mon.0) 980 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:58.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:58 smithi044 bash[16231]: audit 2024-02-19T22:19:57.517578+0000 mon.smithi044 (mon.0) 981 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:19:58.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:58 smithi044 bash[16231]: audit 2024-02-19T22:19:57.532732+0000 mon.smithi044 (mon.0) 982 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:58.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:58 smithi104 bash[21066]: audit 2024-02-19T22:19:57.176926+0000 mon.smithi044 (mon.0) 977 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:19:58.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:58 smithi104 bash[21066]: audit 2024-02-19T22:19:57.500092+0000 mon.smithi044 (mon.0) 978 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:19:58.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:58 smithi104 bash[21066]: audit 2024-02-19T22:19:57.501585+0000 mon.smithi044 (mon.0) 979 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:19:58.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:58 smithi104 bash[21066]: audit 2024-02-19T22:19:57.510019+0000 mon.smithi044 (mon.0) 980 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:58.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:58 smithi104 bash[21066]: audit 2024-02-19T22:19:57.517578+0000 mon.smithi044 (mon.0) 981 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:19:58.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:58 smithi104 bash[21066]: audit 2024-02-19T22:19:57.532732+0000 mon.smithi044 (mon.0) 982 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:59.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:59 smithi104 bash[21066]: cluster 2024-02-19T22:19:57.225939+0000 mgr.smithi044.ikbsam (mgr.14184) 1201 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:59 smithi104 bash[21066]: cluster 2024-02-19T22:19:57.510908+0000 mgr.smithi044.ikbsam (mgr.14184) 1202 : cluster [DBG] pgmap v809: 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-02-19T22:19:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:59 smithi104 bash[21066]: cephadm 2024-02-19T22:19:57.536197+0000 mgr.smithi044.ikbsam (mgr.14184) 1203 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.tpdvsy on smithi104 2024-02-19T22:19:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:59 smithi104 bash[21066]: cluster 2024-02-19T22:19:58.038868+0000 mon.smithi044 (mon.0) 983 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:19:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:59 smithi104 bash[21066]: cluster 2024-02-19T22:19:58.038933+0000 mon.smithi044 (mon.0) 984 : cluster [INF] Cluster is now healthy 2024-02-19T22:19:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:19:59 smithi104 bash[21066]: audit 2024-02-19T22:19:58.654300+0000 mon.smithi044 (mon.0) 985 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:19:59.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:59 smithi044 bash[16231]: cluster 2024-02-19T22:19:57.225939+0000 mgr.smithi044.ikbsam (mgr.14184) 1201 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:19:59.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:59 smithi044 bash[16231]: cluster 2024-02-19T22:19:57.510908+0000 mgr.smithi044.ikbsam (mgr.14184) 1202 : cluster [DBG] pgmap v809: 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-02-19T22:19:59.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:59 smithi044 bash[16231]: cephadm 2024-02-19T22:19:57.536197+0000 mgr.smithi044.ikbsam (mgr.14184) 1203 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.tpdvsy on smithi104 2024-02-19T22:19:59.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:59 smithi044 bash[16231]: cluster 2024-02-19T22:19:58.038868+0000 mon.smithi044 (mon.0) 983 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:19:59.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:59 smithi044 bash[16231]: cluster 2024-02-19T22:19:58.038933+0000 mon.smithi044 (mon.0) 984 : cluster [INF] Cluster is now healthy 2024-02-19T22:19:59.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:19:59 smithi044 bash[16231]: audit 2024-02-19T22:19:58.654300+0000 mon.smithi044 (mon.0) 985 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:20:00.212 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:00.212 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:17:48.905927Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.djemis on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:00.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:00 smithi104 bash[21066]: cluster 2024-02-19T22:20:00.000109+0000 mon.smithi044 (mon.0) 986 : cluster [INF] overall HEALTH_OK 2024-02-19T22:20:00.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:00 smithi044 bash[16231]: cluster 2024-02-19T22:20:00.000109+0000 mon.smithi044 (mon.0) 986 : cluster [INF] overall HEALTH_OK 2024-02-19T22:20:00.877 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:01.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:01 smithi044 bash[16231]: cluster 2024-02-19T22:19:59.512288+0000 mgr.smithi044.ikbsam (mgr.14184) 1204 : cluster [DBG] pgmap v810: 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-02-19T22:20:01.273 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:01 smithi104 bash[21066]: cluster 2024-02-19T22:19:59.512288+0000 mgr.smithi044.ikbsam (mgr.14184) 1204 : cluster [DBG] pgmap v810: 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-02-19T22:20:01.878 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:02.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:02 smithi044 bash[16231]: audit 2024-02-19T22:20:00.196030+0000 mgr.smithi044.ikbsam (mgr.14184) 1205 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:02.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:02 smithi044 bash[16231]: audit 2024-02-19T22:20:01.337245+0000 mon.smithi044 (mon.0) 987 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.tpdvsy"}]: dispatch 2024-02-19T22:20:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:02 smithi104 bash[21066]: audit 2024-02-19T22:20:00.196030+0000 mgr.smithi044.ikbsam (mgr.14184) 1205 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:02.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:02 smithi104 bash[21066]: audit 2024-02-19T22:20:01.337245+0000 mon.smithi044 (mon.0) 987 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.tpdvsy"}]: dispatch 2024-02-19T22:20:03.308 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: cephadm 2024-02-19T22:20:01.336075+0000 mgr.smithi044.ikbsam (mgr.14184) 1206 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.308 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.tpdvsy ... 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:20:03.309 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.tpdvsy ... 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: cephadm 2024-02-19T22:20:01.336624+0000 mgr.smithi044.ikbsam (mgr.14184) 1207 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: cephadm 2024-02-19T22:20:01.338907+0000 mgr.smithi044.ikbsam (mgr.14184) 1208 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:03.310 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.tpdvsy ... 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: cephadm 2024-02-19T22:20:01.344159+0000 mgr.smithi044.ikbsam (mgr.14184) 1209 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.ijjuql on smithi044 2024-02-19T22:20:03.311 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:03 smithi044 bash[16231]: cluster 2024-02-19T22:20:01.513236+0000 mgr.smithi044.ikbsam (mgr.14184) 1210 : cluster [DBG] pgmap v811: 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-02-19T22:20:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: cephadm 2024-02-19T22:20:01.336075+0000 mgr.smithi044.ikbsam (mgr.14184) 1206 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.tpdvsy ... 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.tpdvsy ... 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: cephadm 2024-02-19T22:20:01.336624+0000 mgr.smithi044.ikbsam (mgr.14184) 1207 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: cephadm 2024-02-19T22:20:01.338907+0000 mgr.smithi044.ikbsam (mgr.14184) 1208 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy 2024-02-19T22:20:03.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.tpdvsy ... 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: cephadm 2024-02-19T22:20:01.344159+0000 mgr.smithi044.ikbsam (mgr.14184) 1209 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.ijjuql on smithi044 2024-02-19T22:20:03.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:03 smithi104 bash[21066]: cluster 2024-02-19T22:20:01.513236+0000 mgr.smithi044.ikbsam (mgr.14184) 1210 : cluster [DBG] pgmap v811: 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-02-19T22:20:05.235 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:05.235 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:53.146490Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dvbwkq on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dvbwkq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dvbwkq\nDeploy daemon haproxy.nfs.foo.smithi104.dvbwkq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.168962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.xspklt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-xspklt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.xspklt\nDeploy daemon haproxy.nfs.foo.smithi044.xspklt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:18:57.171284Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.ffcirl on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:05.340 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:05 smithi044 bash[16231]: cluster 2024-02-19T22:20:03.514706+0000 mgr.smithi044.ikbsam (mgr.14184) 1211 : cluster [DBG] pgmap v812: 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-02-19T22:20:05.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:05 smithi104 bash[21066]: cluster 2024-02-19T22:20:03.514706+0000 mgr.smithi044.ikbsam (mgr.14184) 1211 : cluster [DBG] pgmap v812: 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-02-19T22:20:05.992 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:06.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:06 smithi104 bash[21066]: audit 2024-02-19T22:20:05.336571+0000 mon.smithi044 (mon.0) 988 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.ijjuql"}]: dispatch 2024-02-19T22:20:06.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:06 smithi044 bash[16231]: audit 2024-02-19T22:20:05.336571+0000 mon.smithi044 (mon.0) 988 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.ijjuql"}]: dispatch 2024-02-19T22:20:06.993 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: audit 2024-02-19T22:20:05.220837+0000 mgr.smithi044.ikbsam (mgr.14184) 1212 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cephadm 2024-02-19T22:20:05.335790+0000 mgr.smithi044.ikbsam (mgr.14184) 1213 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ijjuql ... 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ijjuql ... 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cephadm 2024-02-19T22:20:05.336152+0000 mgr.smithi044.ikbsam (mgr.14184) 1214 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cephadm 2024-02-19T22:20:05.337633+0000 mgr.smithi044.ikbsam (mgr.14184) 1215 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ijjuql ... 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cephadm 2024-02-19T22:20:05.340336+0000 mgr.smithi044.ikbsam (mgr.14184) 1216 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:20:07.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cephadm 2024-02-19T22:20:05.342743+0000 mgr.smithi044.ikbsam (mgr.14184) 1217 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:20:07.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cluster 2024-02-19T22:20:05.344364+0000 mgr.smithi044.ikbsam (mgr.14184) 1218 : cluster [DBG] pgmap v813: 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-02-19T22:20:07.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:07 smithi104 bash[21066]: cluster 2024-02-19T22:20:06.082175+0000 mon.smithi044 (mon.0) 989 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: audit 2024-02-19T22:20:05.220837+0000 mgr.smithi044.ikbsam (mgr.14184) 1212 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cephadm 2024-02-19T22:20:05.335790+0000 mgr.smithi044.ikbsam (mgr.14184) 1213 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ijjuql ... 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ijjuql ... 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:07.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cephadm 2024-02-19T22:20:05.336152+0000 mgr.smithi044.ikbsam (mgr.14184) 1214 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cephadm 2024-02-19T22:20:05.337633+0000 mgr.smithi044.ikbsam (mgr.14184) 1215 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ijjuql ... 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cephadm 2024-02-19T22:20:05.340336+0000 mgr.smithi044.ikbsam (mgr.14184) 1216 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:20:07.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cephadm 2024-02-19T22:20:05.342743+0000 mgr.smithi044.ikbsam (mgr.14184) 1217 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:20:07.412 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cluster 2024-02-19T22:20:05.344364+0000 mgr.smithi044.ikbsam (mgr.14184) 1218 : cluster [DBG] pgmap v813: 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-02-19T22:20:07.412 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:07 smithi044 bash[16231]: cluster 2024-02-19T22:20:06.082175+0000 mon.smithi044 (mon.0) 989 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:20:08.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:08 smithi044 bash[16231]: cluster 2024-02-19T22:20:07.345849+0000 mgr.smithi044.ikbsam (mgr.14184) 1219 : cluster [DBG] pgmap v814: 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-02-19T22:20:08.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:08 smithi104 bash[21066]: cluster 2024-02-19T22:20:07.345849+0000 mgr.smithi044.ikbsam (mgr.14184) 1219 : cluster [DBG] pgmap v814: 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-02-19T22:20:10.435 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:10.435 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:11.090 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:11.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:10 smithi044 bash[16231]: cluster 2024-02-19T22:20:09.347508+0000 mgr.smithi044.ikbsam (mgr.14184) 1220 : cluster [DBG] pgmap v815: 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-02-19T22:20:11.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:10 smithi044 bash[16231]: audit 2024-02-19T22:20:09.882142+0000 mon.smithi044 (mon.0) 990 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:20:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:10 smithi104 bash[21066]: cluster 2024-02-19T22:20:09.347508+0000 mgr.smithi044.ikbsam (mgr.14184) 1220 : cluster [DBG] pgmap v815: 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-02-19T22:20:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:10 smithi104 bash[21066]: audit 2024-02-19T22:20:09.882142+0000 mon.smithi044 (mon.0) 990 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:20:12.091 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:12.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:11 smithi044 bash[16231]: audit 2024-02-19T22:20:10.419897+0000 mgr.smithi044.ikbsam (mgr.14184) 1221 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:12.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:11 smithi104 bash[21066]: audit 2024-02-19T22:20:10.419897+0000 mgr.smithi044.ikbsam (mgr.14184) 1221 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:12 smithi104 bash[21066]: cluster 2024-02-19T22:20:11.349181+0000 mgr.smithi044.ikbsam (mgr.14184) 1222 : cluster [DBG] pgmap v816: 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-02-19T22:20:13.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:12 smithi044 bash[16231]: cluster 2024-02-19T22:20:11.349181+0000 mgr.smithi044.ikbsam (mgr.14184) 1222 : cluster [DBG] pgmap v816: 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-02-19T22:20:14.940 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:14 smithi044 bash[16231]: cluster 2024-02-19T22:20:13.350934+0000 mgr.smithi044.ikbsam (mgr.14184) 1223 : cluster [DBG] pgmap v817: 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-02-19T22:20:14.940 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:14 smithi044 bash[16231]: audit 2024-02-19T22:20:13.654455+0000 mon.smithi044 (mon.0) 991 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:20:15.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:14 smithi104 bash[21066]: cluster 2024-02-19T22:20:13.350934+0000 mgr.smithi044.ikbsam (mgr.14184) 1223 : cluster [DBG] pgmap v817: 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-02-19T22:20:15.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:14 smithi104 bash[21066]: audit 2024-02-19T22:20:13.654455+0000 mon.smithi044 (mon.0) 991 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:20:15.369 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:15.369 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:16.020 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:17.022 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:17.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:16 smithi044 bash[16231]: cluster 2024-02-19T22:20:15.352752+0000 mgr.smithi044.ikbsam (mgr.14184) 1224 : cluster [DBG] pgmap v818: 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-02-19T22:20:17.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:16 smithi044 bash[16231]: audit 2024-02-19T22:20:15.358281+0000 mgr.smithi044.ikbsam (mgr.14184) 1225 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:16 smithi104 bash[21066]: cluster 2024-02-19T22:20:15.352752+0000 mgr.smithi044.ikbsam (mgr.14184) 1224 : cluster [DBG] pgmap v818: 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-02-19T22:20:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:16 smithi104 bash[21066]: audit 2024-02-19T22:20:15.358281+0000 mgr.smithi044.ikbsam (mgr.14184) 1225 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:18.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:18 smithi044 bash[16231]: cluster 2024-02-19T22:20:17.354226+0000 mgr.smithi044.ikbsam (mgr.14184) 1226 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:19.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:18 smithi104 bash[21066]: cluster 2024-02-19T22:20:17.354226+0000 mgr.smithi044.ikbsam (mgr.14184) 1226 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:20.409 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:20.409 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:20.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:20 smithi044 bash[16231]: cluster 2024-02-19T22:20:19.355948+0000 mgr.smithi044.ikbsam (mgr.14184) 1227 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:21.013 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:20 smithi104 bash[21066]: cluster 2024-02-19T22:20:19.355948+0000 mgr.smithi044.ikbsam (mgr.14184) 1227 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:22.014 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:22.027 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:21 smithi044 bash[16231]: audit 2024-02-19T22:20:20.393265+0000 mgr.smithi044.ikbsam (mgr.14184) 1228 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:22.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:21 smithi104 bash[21066]: audit 2024-02-19T22:20:20.393265+0000 mgr.smithi044.ikbsam (mgr.14184) 1228 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:23.118 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:22 smithi044 bash[16231]: cluster 2024-02-19T22:20:21.357638+0000 mgr.smithi044.ikbsam (mgr.14184) 1229 : cluster [DBG] pgmap v821: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:23.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:22 smithi104 bash[21066]: cluster 2024-02-19T22:20:21.357638+0000 mgr.smithi044.ikbsam (mgr.14184) 1229 : cluster [DBG] pgmap v821: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:24 smithi104 bash[21066]: cluster 2024-02-19T22:20:23.359961+0000 mgr.smithi044.ikbsam (mgr.14184) 1230 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:25.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:24 smithi044 bash[16231]: cluster 2024-02-19T22:20:23.359961+0000 mgr.smithi044.ikbsam (mgr.14184) 1230 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:25.222 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:25.222 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:25.873 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:26.874 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:27.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:26 smithi104 bash[21066]: audit 2024-02-19T22:20:25.203504+0000 mgr.smithi044.ikbsam (mgr.14184) 1231 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:27.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:26 smithi104 bash[21066]: cluster 2024-02-19T22:20:25.362012+0000 mgr.smithi044.ikbsam (mgr.14184) 1232 : 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-02-19T22:20:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:26 smithi044 bash[16231]: audit 2024-02-19T22:20:25.203504+0000 mgr.smithi044.ikbsam (mgr.14184) 1231 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:27.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:26 smithi044 bash[16231]: cluster 2024-02-19T22:20:25.362012+0000 mgr.smithi044.ikbsam (mgr.14184) 1232 : 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-02-19T22:20:29.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:28 smithi104 bash[21066]: cluster 2024-02-19T22:20:27.363428+0000 mgr.smithi044.ikbsam (mgr.14184) 1233 : 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-02-19T22:20:29.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:28 smithi044 bash[16231]: cluster 2024-02-19T22:20:27.363428+0000 mgr.smithi044.ikbsam (mgr.14184) 1233 : 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-02-19T22:20:30.257 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:30.257 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:30.941 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:31.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:30 smithi104 bash[21066]: cluster 2024-02-19T22:20:29.365100+0000 mgr.smithi044.ikbsam (mgr.14184) 1234 : 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-02-19T22:20:31.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:30 smithi044 bash[16231]: cluster 2024-02-19T22:20:29.365100+0000 mgr.smithi044.ikbsam (mgr.14184) 1234 : 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-02-19T22:20:31.942 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:32.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:31 smithi104 bash[21066]: audit 2024-02-19T22:20:30.238276+0000 mgr.smithi044.ikbsam (mgr.14184) 1235 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:32.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:31 smithi044 bash[16231]: audit 2024-02-19T22:20:30.238276+0000 mgr.smithi044.ikbsam (mgr.14184) 1235 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:33.103 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:32 smithi044 bash[16231]: cluster 2024-02-19T22:20:31.366738+0000 mgr.smithi044.ikbsam (mgr.14184) 1236 : 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-02-19T22:20:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:32 smithi104 bash[21066]: cluster 2024-02-19T22:20:31.366738+0000 mgr.smithi044.ikbsam (mgr.14184) 1236 : 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-02-19T22:20:35.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:34 smithi104 bash[21066]: cluster 2024-02-19T22:20:33.368435+0000 mgr.smithi044.ikbsam (mgr.14184) 1237 : 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-02-19T22:20:35.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:34 smithi044 bash[16231]: cluster 2024-02-19T22:20:33.368435+0000 mgr.smithi044.ikbsam (mgr.14184) 1237 : 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-02-19T22:20:35.159 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:35.159 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:35.846 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:36.847 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:37.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:36 smithi104 bash[21066]: audit 2024-02-19T22:20:35.140108+0000 mgr.smithi044.ikbsam (mgr.14184) 1238 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:37.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:36 smithi104 bash[21066]: cluster 2024-02-19T22:20:35.370380+0000 mgr.smithi044.ikbsam (mgr.14184) 1239 : 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-02-19T22:20:37.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:36 smithi044 bash[16231]: audit 2024-02-19T22:20:35.140108+0000 mgr.smithi044.ikbsam (mgr.14184) 1238 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:37.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:36 smithi044 bash[16231]: cluster 2024-02-19T22:20:35.370380+0000 mgr.smithi044.ikbsam (mgr.14184) 1239 : 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-02-19T22:20:39.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:38 smithi104 bash[21066]: cluster 2024-02-19T22:20:37.371855+0000 mgr.smithi044.ikbsam (mgr.14184) 1240 : 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-02-19T22:20:39.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:38 smithi044 bash[16231]: cluster 2024-02-19T22:20:37.371855+0000 mgr.smithi044.ikbsam (mgr.14184) 1240 : 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-02-19T22:20:40.191 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:40.191 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:40.841 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:41.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:40 smithi104 bash[21066]: cluster 2024-02-19T22:20:39.373520+0000 mgr.smithi044.ikbsam (mgr.14184) 1241 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:41.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:40 smithi044 bash[16231]: cluster 2024-02-19T22:20:39.373520+0000 mgr.smithi044.ikbsam (mgr.14184) 1241 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:41.842 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:42.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:41 smithi104 bash[21066]: audit 2024-02-19T22:20:40.171768+0000 mgr.smithi044.ikbsam (mgr.14184) 1242 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:42.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:41 smithi044 bash[16231]: audit 2024-02-19T22:20:40.171768+0000 mgr.smithi044.ikbsam (mgr.14184) 1242 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:43.018 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:42 smithi044 bash[16231]: cluster 2024-02-19T22:20:41.375168+0000 mgr.smithi044.ikbsam (mgr.14184) 1243 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:43.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:42 smithi104 bash[21066]: cluster 2024-02-19T22:20:41.375168+0000 mgr.smithi044.ikbsam (mgr.14184) 1243 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:44.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:44 smithi044 bash[16231]: cluster 2024-02-19T22:20:43.376980+0000 mgr.smithi044.ikbsam (mgr.14184) 1244 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2024-02-19T22:20:45.030 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:45.030 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:45.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:44 smithi104 bash[21066]: cluster 2024-02-19T22:20:43.376980+0000 mgr.smithi044.ikbsam (mgr.14184) 1244 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2024-02-19T22:20:45.726 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:46.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:45 smithi104 bash[21066]: audit 2024-02-19T22:20:45.011271+0000 mgr.smithi044.ikbsam (mgr.14184) 1245 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:46.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:45 smithi044 bash[16231]: audit 2024-02-19T22:20:45.011271+0000 mgr.smithi044.ikbsam (mgr.14184) 1245 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:46.727 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:47.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:46 smithi104 bash[21066]: cluster 2024-02-19T22:20:45.378919+0000 mgr.smithi044.ikbsam (mgr.14184) 1246 : cluster [DBG] pgmap v833: 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-02-19T22:20:47.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:46 smithi044 bash[16231]: cluster 2024-02-19T22:20:45.378919+0000 mgr.smithi044.ikbsam (mgr.14184) 1246 : cluster [DBG] pgmap v833: 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-02-19T22:20:49.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:48 smithi104 bash[21066]: cluster 2024-02-19T22:20:47.380555+0000 mgr.smithi044.ikbsam (mgr.14184) 1247 : cluster [DBG] pgmap v834: 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-02-19T22:20:49.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:48 smithi044 bash[16231]: cluster 2024-02-19T22:20:47.380555+0000 mgr.smithi044.ikbsam (mgr.14184) 1247 : cluster [DBG] pgmap v834: 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-02-19T22:20:50.052 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:50.052 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:50.757 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:51.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:50 smithi104 bash[21066]: cluster 2024-02-19T22:20:49.382321+0000 mgr.smithi044.ikbsam (mgr.14184) 1248 : cluster [DBG] pgmap v835: 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-02-19T22:20:51.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:50 smithi104 bash[21066]: audit 2024-02-19T22:20:50.035859+0000 mgr.smithi044.ikbsam (mgr.14184) 1249 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:51.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:50 smithi044 bash[16231]: cluster 2024-02-19T22:20:49.382321+0000 mgr.smithi044.ikbsam (mgr.14184) 1248 : cluster [DBG] pgmap v835: 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-02-19T22:20:51.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:50 smithi044 bash[16231]: audit 2024-02-19T22:20:50.035859+0000 mgr.smithi044.ikbsam (mgr.14184) 1249 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:51.758 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:53.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:52 smithi104 bash[21066]: cluster 2024-02-19T22:20:51.383954+0000 mgr.smithi044.ikbsam (mgr.14184) 1250 : cluster [DBG] pgmap v836: 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-02-19T22:20:53.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:52 smithi044 bash[16231]: cluster 2024-02-19T22:20:51.383954+0000 mgr.smithi044.ikbsam (mgr.14184) 1250 : cluster [DBG] pgmap v836: 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-02-19T22:20:55.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:54 smithi104 bash[21066]: cluster 2024-02-19T22:20:53.386214+0000 mgr.smithi044.ikbsam (mgr.14184) 1251 : cluster [DBG] pgmap v837: 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-02-19T22:20:55.150 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:20:55.151 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:20:55.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:54 smithi044 bash[16231]: cluster 2024-02-19T22:20:53.386214+0000 mgr.smithi044.ikbsam (mgr.14184) 1251 : cluster [DBG] pgmap v837: 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-02-19T22:20:55.877 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:20:56.878 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:20:57.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:56 smithi104 bash[21066]: audit 2024-02-19T22:20:55.132258+0000 mgr.smithi044.ikbsam (mgr.14184) 1252 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:57.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:56 smithi104 bash[21066]: cluster 2024-02-19T22:20:55.388128+0000 mgr.smithi044.ikbsam (mgr.14184) 1253 : cluster [DBG] pgmap v838: 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-02-19T22:20:57.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:56 smithi044 bash[16231]: audit 2024-02-19T22:20:55.132258+0000 mgr.smithi044.ikbsam (mgr.14184) 1252 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:20:57.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:56 smithi044 bash[16231]: cluster 2024-02-19T22:20:55.388128+0000 mgr.smithi044.ikbsam (mgr.14184) 1253 : cluster [DBG] pgmap v838: 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-02-19T22:20:59.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:20:58 smithi104 bash[21066]: cluster 2024-02-19T22:20:57.389771+0000 mgr.smithi044.ikbsam (mgr.14184) 1254 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:20:59.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:20:58 smithi044 bash[16231]: cluster 2024-02-19T22:20:57.389771+0000 mgr.smithi044.ikbsam (mgr.14184) 1254 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:00.318 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:00.318 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:00.975 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:01.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:00 smithi104 bash[21066]: cluster 2024-02-19T22:20:59.391519+0000 mgr.smithi044.ikbsam (mgr.14184) 1255 : 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-02-19T22:21:01.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:00 smithi044 bash[16231]: cluster 2024-02-19T22:20:59.391519+0000 mgr.smithi044.ikbsam (mgr.14184) 1255 : 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-02-19T22:21:01.976 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:01 smithi104 bash[21066]: audit 2024-02-19T22:21:00.302005+0000 mgr.smithi044.ikbsam (mgr.14184) 1256 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:02.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:01 smithi044 bash[16231]: audit 2024-02-19T22:21:00.302005+0000 mgr.smithi044.ikbsam (mgr.14184) 1256 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:03.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:02 smithi104 bash[21066]: cluster 2024-02-19T22:21:01.392860+0000 mgr.smithi044.ikbsam (mgr.14184) 1257 : 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-02-19T22:21:03.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:02 smithi044 bash[16231]: cluster 2024-02-19T22:21:01.392860+0000 mgr.smithi044.ikbsam (mgr.14184) 1257 : 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-02-19T22:21:05.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:04 smithi104 bash[21066]: cluster 2024-02-19T22:21:03.394639+0000 mgr.smithi044.ikbsam (mgr.14184) 1258 : 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-02-19T22:21:05.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:04 smithi044 bash[16231]: cluster 2024-02-19T22:21:03.394639+0000 mgr.smithi044.ikbsam (mgr.14184) 1258 : 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-02-19T22:21:05.292 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:05.292 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:18:57.173020Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.tnudpk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:05.975 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:06.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:05 smithi104 bash[21066]: audit 2024-02-19T22:21:05.346581+0000 mon.smithi044 (mon.0) 992 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:21:06.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:05 smithi104 bash[21066]: audit 2024-02-19T22:21:05.662658+0000 mon.smithi044 (mon.0) 993 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:21:06.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:05 smithi104 bash[21066]: audit 2024-02-19T22:21:05.664258+0000 mon.smithi044 (mon.0) 994 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:21:06.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:05 smithi104 bash[21066]: audit 2024-02-19T22:21:05.672257+0000 mon.smithi044 (mon.0) 995 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:06.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:05 smithi104 bash[21066]: audit 2024-02-19T22:21:05.682640+0000 mon.smithi044 (mon.0) 996 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:21:06.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:05 smithi104 bash[21066]: audit 2024-02-19T22:21:05.701277+0000 mon.smithi044 (mon.0) 997 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:06.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:05 smithi044 bash[16231]: audit 2024-02-19T22:21:05.346581+0000 mon.smithi044 (mon.0) 992 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:21:06.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:05 smithi044 bash[16231]: audit 2024-02-19T22:21:05.662658+0000 mon.smithi044 (mon.0) 993 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:21:06.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:05 smithi044 bash[16231]: audit 2024-02-19T22:21:05.664258+0000 mon.smithi044 (mon.0) 994 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:21:06.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:05 smithi044 bash[16231]: audit 2024-02-19T22:21:05.672257+0000 mon.smithi044 (mon.0) 995 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:06.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:05 smithi044 bash[16231]: audit 2024-02-19T22:21:05.682640+0000 mon.smithi044 (mon.0) 996 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:21:06.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:05 smithi044 bash[16231]: audit 2024-02-19T22:21:05.701277+0000 mon.smithi044 (mon.0) 997 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:06.976 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:07.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:06 smithi104 bash[21066]: audit 2024-02-19T22:21:05.273261+0000 mgr.smithi044.ikbsam (mgr.14184) 1259 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:07.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:06 smithi104 bash[21066]: cluster 2024-02-19T22:21:05.396222+0000 mgr.smithi044.ikbsam (mgr.14184) 1260 : cluster [DBG] pgmap v843: 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-02-19T22:21:07.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:06 smithi104 bash[21066]: cluster 2024-02-19T22:21:05.673422+0000 mgr.smithi044.ikbsam (mgr.14184) 1261 : cluster [DBG] pgmap v844: 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-02-19T22:21:07.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:06 smithi104 bash[21066]: cephadm 2024-02-19T22:21:05.705364+0000 mgr.smithi044.ikbsam (mgr.14184) 1262 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.qhbekt on smithi104 2024-02-19T22:21:07.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:06 smithi104 bash[21066]: cluster 2024-02-19T22:21:05.839092+0000 mon.smithi044 (mon.0) 998 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:21:07.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:06 smithi104 bash[21066]: cluster 2024-02-19T22:21:05.839168+0000 mon.smithi044 (mon.0) 999 : cluster [INF] Cluster is now healthy 2024-02-19T22:21:07.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:06 smithi044 bash[16231]: audit 2024-02-19T22:21:05.273261+0000 mgr.smithi044.ikbsam (mgr.14184) 1259 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:07.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:06 smithi044 bash[16231]: cluster 2024-02-19T22:21:05.396222+0000 mgr.smithi044.ikbsam (mgr.14184) 1260 : cluster [DBG] pgmap v843: 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-02-19T22:21:07.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:06 smithi044 bash[16231]: cluster 2024-02-19T22:21:05.673422+0000 mgr.smithi044.ikbsam (mgr.14184) 1261 : cluster [DBG] pgmap v844: 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-02-19T22:21:07.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:06 smithi044 bash[16231]: cephadm 2024-02-19T22:21:05.705364+0000 mgr.smithi044.ikbsam (mgr.14184) 1262 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.qhbekt on smithi104 2024-02-19T22:21:07.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:06 smithi044 bash[16231]: cluster 2024-02-19T22:21:05.839092+0000 mon.smithi044 (mon.0) 998 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:21:07.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:06 smithi044 bash[16231]: cluster 2024-02-19T22:21:05.839168+0000 mon.smithi044 (mon.0) 999 : cluster [INF] Cluster is now healthy 2024-02-19T22:21:09.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:08 smithi104 bash[21066]: cluster 2024-02-19T22:21:07.674674+0000 mgr.smithi044.ikbsam (mgr.14184) 1263 : cluster [DBG] pgmap v845: 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-02-19T22:21:09.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:08 smithi044 bash[16231]: cluster 2024-02-19T22:21:07.674674+0000 mgr.smithi044.ikbsam (mgr.14184) 1263 : cluster [DBG] pgmap v845: 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-02-19T22:21:10.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:09 smithi104 bash[21066]: audit 2024-02-19T22:21:09.780269+0000 mon.smithi044 (mon.0) 1000 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.qhbekt"}]: dispatch 2024-02-19T22:21:10.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:09 smithi044 bash[16231]: audit 2024-02-19T22:21:09.780269+0000 mon.smithi044 (mon.0) 1000 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.qhbekt"}]: dispatch 2024-02-19T22:21:10.272 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:10.272 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:01.338659Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.tpdvsy on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-tpdvsy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.tpdvsy\nDeploy daemon haproxy.nfs.foo.smithi104.tpdvsy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.337456Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ijjuql on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ijjuql\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ijjuql\nDeploy daemon haproxy.nfs.foo.smithi044.ijjuql ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:20:05.340092Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.vfyhbt on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:10.950 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:11.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: cluster 2024-02-19T22:21:09.676172+0000 mgr.smithi044.ikbsam (mgr.14184) 1264 : cluster [DBG] pgmap v846: 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-02-19T22:21:11.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: cephadm 2024-02-19T22:21:09.778964+0000 mgr.smithi044.ikbsam (mgr.14184) 1265 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.qhbekt ... 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:21:11.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.qhbekt ... 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: cephadm 2024-02-19T22:21:09.779639+0000 mgr.smithi044.ikbsam (mgr.14184) 1266 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: cephadm 2024-02-19T22:21:09.782004+0000 mgr.smithi044.ikbsam (mgr.14184) 1267 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.qhbekt ... 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:10 smithi104 bash[21066]: cephadm 2024-02-19T22:21:09.786717+0000 mgr.smithi044.ikbsam (mgr.14184) 1268 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.eikaqr on smithi044 2024-02-19T22:21:11.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: cluster 2024-02-19T22:21:09.676172+0000 mgr.smithi044.ikbsam (mgr.14184) 1264 : cluster [DBG] pgmap v846: 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-02-19T22:21:11.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: cephadm 2024-02-19T22:21:09.778964+0000 mgr.smithi044.ikbsam (mgr.14184) 1265 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.qhbekt ... 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:21:11.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.qhbekt ... 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: cephadm 2024-02-19T22:21:09.779639+0000 mgr.smithi044.ikbsam (mgr.14184) 1266 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: cephadm 2024-02-19T22:21:09.782004+0000 mgr.smithi044.ikbsam (mgr.14184) 1267 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.qhbekt ... 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:11.161 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:10 smithi044 bash[16231]: cephadm 2024-02-19T22:21:09.786717+0000 mgr.smithi044.ikbsam (mgr.14184) 1268 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.eikaqr on smithi044 2024-02-19T22:21:11.951 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:12.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:11 smithi044 bash[16231]: audit 2024-02-19T22:21:10.254812+0000 mgr.smithi044.ikbsam (mgr.14184) 1269 : audit [DBG] from='client.25247 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:12.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:11 smithi104 bash[21066]: audit 2024-02-19T22:21:10.254812+0000 mgr.smithi044.ikbsam (mgr.14184) 1269 : audit [DBG] from='client.25247 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:12 smithi104 bash[21066]: cluster 2024-02-19T22:21:11.677585+0000 mgr.smithi044.ikbsam (mgr.14184) 1270 : cluster [DBG] pgmap v847: 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-02-19T22:21:13.139 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:12 smithi044 bash[16231]: cluster 2024-02-19T22:21:11.677585+0000 mgr.smithi044.ikbsam (mgr.14184) 1270 : cluster [DBG] pgmap v847: 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-02-19T22:21:15.082 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: audit 2024-02-19T22:21:13.655876+0000 mon.smithi044 (mon.0) 1001 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cluster 2024-02-19T22:21:13.679547+0000 mgr.smithi044.ikbsam (mgr.14184) 1271 : cluster [DBG] pgmap v848: 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-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cephadm 2024-02-19T22:21:13.865582+0000 mgr.smithi044.ikbsam (mgr.14184) 1272 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.eikaqr ... 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:15.083 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.eikaqr ... 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cephadm 2024-02-19T22:21:13.866139+0000 mgr.smithi044.ikbsam (mgr.14184) 1273 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: audit 2024-02-19T22:21:13.866775+0000 mon.smithi044 (mon.0) 1002 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.eikaqr"}]: dispatch 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cephadm 2024-02-19T22:21:13.868220+0000 mgr.smithi044.ikbsam (mgr.14184) 1274 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.085 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.eikaqr ... 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cephadm 2024-02-19T22:21:13.872463+0000 mgr.smithi044.ikbsam (mgr.14184) 1275 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cephadm 2024-02-19T22:21:13.876402+0000 mgr.smithi044.ikbsam (mgr.14184) 1276 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:21:15.086 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:14 smithi044 bash[16231]: cluster 2024-02-19T22:21:13.877920+0000 mgr.smithi044.ikbsam (mgr.14184) 1277 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: audit 2024-02-19T22:21:13.655876+0000 mon.smithi044 (mon.0) 1001 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cluster 2024-02-19T22:21:13.679547+0000 mgr.smithi044.ikbsam (mgr.14184) 1271 : cluster [DBG] pgmap v848: 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-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cephadm 2024-02-19T22:21:13.865582+0000 mgr.smithi044.ikbsam (mgr.14184) 1272 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.eikaqr ... 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:15.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.eikaqr ... 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cephadm 2024-02-19T22:21:13.866139+0000 mgr.smithi044.ikbsam (mgr.14184) 1273 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: audit 2024-02-19T22:21:13.866775+0000 mon.smithi044 (mon.0) 1002 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.eikaqr"}]: dispatch 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cephadm 2024-02-19T22:21:13.868220+0000 mgr.smithi044.ikbsam (mgr.14184) 1274 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:21:15.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.eikaqr ... 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cephadm 2024-02-19T22:21:13.872463+0000 mgr.smithi044.ikbsam (mgr.14184) 1275 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cephadm 2024-02-19T22:21:13.876402+0000 mgr.smithi044.ikbsam (mgr.14184) 1276 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:21:15.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:14 smithi104 bash[21066]: cluster 2024-02-19T22:21:13.877920+0000 mgr.smithi044.ikbsam (mgr.14184) 1277 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-19T22:21:15.529 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:15.529 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:15.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:15 smithi044 bash[16231]: cluster 2024-02-19T22:21:14.651675+0000 mon.smithi044 (mon.0) 1003 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:21:15.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:15 smithi044 bash[16231]: audit 2024-02-19T22:21:14.939203+0000 mon.smithi044 (mon.0) 1004 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:16.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:15 smithi104 bash[21066]: cluster 2024-02-19T22:21:14.651675+0000 mon.smithi044 (mon.0) 1003 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:21:16.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:15 smithi104 bash[21066]: audit 2024-02-19T22:21:14.939203+0000 mon.smithi044 (mon.0) 1004 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:16.203 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:16 smithi104 bash[21066]: audit 2024-02-19T22:21:15.516467+0000 mgr.smithi044.ikbsam (mgr.14184) 1278 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:17.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:16 smithi104 bash[21066]: cluster 2024-02-19T22:21:15.879833+0000 mgr.smithi044.ikbsam (mgr.14184) 1279 : cluster [DBG] pgmap v850: 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-02-19T22:21:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:16 smithi044 bash[16231]: audit 2024-02-19T22:21:15.516467+0000 mgr.smithi044.ikbsam (mgr.14184) 1278 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:17.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:16 smithi044 bash[16231]: cluster 2024-02-19T22:21:15.879833+0000 mgr.smithi044.ikbsam (mgr.14184) 1279 : cluster [DBG] pgmap v850: 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-02-19T22:21:17.204 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:19.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:18 smithi104 bash[21066]: cluster 2024-02-19T22:21:17.881451+0000 mgr.smithi044.ikbsam (mgr.14184) 1280 : cluster [DBG] pgmap v851: 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-02-19T22:21:19.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:18 smithi044 bash[16231]: cluster 2024-02-19T22:21:17.881451+0000 mgr.smithi044.ikbsam (mgr.14184) 1280 : cluster [DBG] pgmap v851: 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-02-19T22:21:20.457 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:20.457 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:21.118 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:21.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:20 smithi104 bash[21066]: cluster 2024-02-19T22:21:19.883369+0000 mgr.smithi044.ikbsam (mgr.14184) 1281 : cluster [DBG] pgmap v852: 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-02-19T22:21:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:20 smithi044 bash[16231]: cluster 2024-02-19T22:21:19.883369+0000 mgr.smithi044.ikbsam (mgr.14184) 1281 : cluster [DBG] pgmap v852: 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-02-19T22:21:22.119 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:22.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:21 smithi104 bash[21066]: audit 2024-02-19T22:21:20.440020+0000 mgr.smithi044.ikbsam (mgr.14184) 1282 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:22.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:21 smithi044 bash[16231]: audit 2024-02-19T22:21:20.440020+0000 mgr.smithi044.ikbsam (mgr.14184) 1282 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:23.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:22 smithi104 bash[21066]: cluster 2024-02-19T22:21:21.884501+0000 mgr.smithi044.ikbsam (mgr.14184) 1283 : cluster [DBG] pgmap v853: 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-02-19T22:21:23.313 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:22 smithi044 bash[16231]: cluster 2024-02-19T22:21:21.884501+0000 mgr.smithi044.ikbsam (mgr.14184) 1283 : cluster [DBG] pgmap v853: 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-02-19T22:21:25.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:24 smithi104 bash[21066]: cluster 2024-02-19T22:21:23.885876+0000 mgr.smithi044.ikbsam (mgr.14184) 1284 : cluster [DBG] pgmap v854: 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-02-19T22:21:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:24 smithi044 bash[16231]: cluster 2024-02-19T22:21:23.885876+0000 mgr.smithi044.ikbsam (mgr.14184) 1284 : cluster [DBG] pgmap v854: 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-02-19T22:21:25.483 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:25.484 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:26.123 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:27.124 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:27.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:26 smithi104 bash[21066]: audit 2024-02-19T22:21:25.466177+0000 mgr.smithi044.ikbsam (mgr.14184) 1285 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:27.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:26 smithi104 bash[21066]: cluster 2024-02-19T22:21:25.887657+0000 mgr.smithi044.ikbsam (mgr.14184) 1286 : cluster [DBG] pgmap v855: 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-02-19T22:21:27.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:26 smithi044 bash[16231]: audit 2024-02-19T22:21:25.466177+0000 mgr.smithi044.ikbsam (mgr.14184) 1285 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:27.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:26 smithi044 bash[16231]: cluster 2024-02-19T22:21:25.887657+0000 mgr.smithi044.ikbsam (mgr.14184) 1286 : cluster [DBG] pgmap v855: 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-02-19T22:21:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:28 smithi104 bash[21066]: cluster 2024-02-19T22:21:27.889139+0000 mgr.smithi044.ikbsam (mgr.14184) 1287 : 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-02-19T22:21:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:28 smithi104 bash[21066]: audit 2024-02-19T22:21:28.654353+0000 mon.smithi044 (mon.0) 1005 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:28 smithi044 bash[16231]: cluster 2024-02-19T22:21:27.889139+0000 mgr.smithi044.ikbsam (mgr.14184) 1287 : 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-02-19T22:21:29.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:28 smithi044 bash[16231]: audit 2024-02-19T22:21:28.654353+0000 mon.smithi044 (mon.0) 1005 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:21:30.541 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:30.541 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:31.232 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:31.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:30 smithi104 bash[21066]: cluster 2024-02-19T22:21:29.890653+0000 mgr.smithi044.ikbsam (mgr.14184) 1288 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:31.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:30 smithi044 bash[16231]: cluster 2024-02-19T22:21:29.890653+0000 mgr.smithi044.ikbsam (mgr.14184) 1288 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:32.234 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:32.247 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:31 smithi044 bash[16231]: audit 2024-02-19T22:21:30.523997+0000 mgr.smithi044.ikbsam (mgr.14184) 1289 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:32.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:31 smithi104 bash[21066]: audit 2024-02-19T22:21:30.523997+0000 mgr.smithi044.ikbsam (mgr.14184) 1289 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:32 smithi104 bash[21066]: cluster 2024-02-19T22:21:31.891649+0000 mgr.smithi044.ikbsam (mgr.14184) 1290 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:33.386 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:32 smithi044 bash[16231]: cluster 2024-02-19T22:21:31.891649+0000 mgr.smithi044.ikbsam (mgr.14184) 1290 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:35.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:35 smithi104 bash[21066]: cluster 2024-02-19T22:21:33.893146+0000 mgr.smithi044.ikbsam (mgr.14184) 1291 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:35.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:35 smithi044 bash[16231]: cluster 2024-02-19T22:21:33.893146+0000 mgr.smithi044.ikbsam (mgr.14184) 1291 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:35.523 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:35.523 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:36.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:37.193 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:37.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:37 smithi104 bash[21066]: audit 2024-02-19T22:21:35.512385+0000 mgr.smithi044.ikbsam (mgr.14184) 1292 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:37.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:37 smithi104 bash[21066]: cluster 2024-02-19T22:21:35.894941+0000 mgr.smithi044.ikbsam (mgr.14184) 1293 : cluster [DBG] pgmap v860: 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-02-19T22:21:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:37 smithi044 bash[16231]: audit 2024-02-19T22:21:35.512385+0000 mgr.smithi044.ikbsam (mgr.14184) 1292 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:37.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:37 smithi044 bash[16231]: cluster 2024-02-19T22:21:35.894941+0000 mgr.smithi044.ikbsam (mgr.14184) 1293 : cluster [DBG] pgmap v860: 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-02-19T22:21:39.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:39 smithi104 bash[21066]: cluster 2024-02-19T22:21:37.896557+0000 mgr.smithi044.ikbsam (mgr.14184) 1294 : cluster [DBG] pgmap v861: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:39.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:39 smithi044 bash[16231]: cluster 2024-02-19T22:21:37.896557+0000 mgr.smithi044.ikbsam (mgr.14184) 1294 : cluster [DBG] pgmap v861: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:40.644 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:40.644 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:41.282 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:41 smithi044 bash[16231]: cluster 2024-02-19T22:21:39.898187+0000 mgr.smithi044.ikbsam (mgr.14184) 1295 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:41.283 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:41.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:41 smithi104 bash[21066]: cluster 2024-02-19T22:21:39.898187+0000 mgr.smithi044.ikbsam (mgr.14184) 1295 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:42.284 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:42.296 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:42 smithi044 bash[16231]: audit 2024-02-19T22:21:40.625201+0000 mgr.smithi044.ikbsam (mgr.14184) 1296 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:42.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:42 smithi104 bash[21066]: audit 2024-02-19T22:21:40.625201+0000 mgr.smithi044.ikbsam (mgr.14184) 1296 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:43.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:43 smithi104 bash[21066]: cluster 2024-02-19T22:21:41.899203+0000 mgr.smithi044.ikbsam (mgr.14184) 1297 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:43.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:43 smithi044 bash[16231]: cluster 2024-02-19T22:21:41.899203+0000 mgr.smithi044.ikbsam (mgr.14184) 1297 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:45.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:45 smithi104 bash[21066]: cluster 2024-02-19T22:21:43.900950+0000 mgr.smithi044.ikbsam (mgr.14184) 1298 : cluster [DBG] pgmap v864: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:45 smithi044 bash[16231]: cluster 2024-02-19T22:21:43.900950+0000 mgr.smithi044.ikbsam (mgr.14184) 1298 : cluster [DBG] pgmap v864: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:45.603 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:45.604 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:46.260 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:47.261 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:47 smithi104 bash[21066]: audit 2024-02-19T22:21:45.592918+0000 mgr.smithi044.ikbsam (mgr.14184) 1299 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:47.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:47 smithi104 bash[21066]: cluster 2024-02-19T22:21:45.902939+0000 mgr.smithi044.ikbsam (mgr.14184) 1300 : cluster [DBG] pgmap v865: 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-02-19T22:21:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:47 smithi044 bash[16231]: audit 2024-02-19T22:21:45.592918+0000 mgr.smithi044.ikbsam (mgr.14184) 1299 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:47.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:47 smithi044 bash[16231]: cluster 2024-02-19T22:21:45.902939+0000 mgr.smithi044.ikbsam (mgr.14184) 1300 : cluster [DBG] pgmap v865: 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-02-19T22:21:49.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:49 smithi104 bash[21066]: cluster 2024-02-19T22:21:47.904091+0000 mgr.smithi044.ikbsam (mgr.14184) 1301 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:49 smithi044 bash[16231]: cluster 2024-02-19T22:21:47.904091+0000 mgr.smithi044.ikbsam (mgr.14184) 1301 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:50.742 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:50.742 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:51.376 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:51 smithi044 bash[16231]: cluster 2024-02-19T22:21:49.906026+0000 mgr.smithi044.ikbsam (mgr.14184) 1302 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:51.378 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:51.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:51 smithi104 bash[21066]: cluster 2024-02-19T22:21:49.906026+0000 mgr.smithi044.ikbsam (mgr.14184) 1302 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:52.379 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:52.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:52 smithi104 bash[21066]: audit 2024-02-19T22:21:50.724915+0000 mgr.smithi044.ikbsam (mgr.14184) 1303 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:52.392 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:52 smithi044 bash[16231]: audit 2024-02-19T22:21:50.724915+0000 mgr.smithi044.ikbsam (mgr.14184) 1303 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:53.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:53 smithi104 bash[21066]: cluster 2024-02-19T22:21:51.907034+0000 mgr.smithi044.ikbsam (mgr.14184) 1304 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:53.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:53 smithi044 bash[16231]: cluster 2024-02-19T22:21:51.907034+0000 mgr.smithi044.ikbsam (mgr.14184) 1304 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:55.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:55 smithi104 bash[21066]: cluster 2024-02-19T22:21:53.908807+0000 mgr.smithi044.ikbsam (mgr.14184) 1305 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:55.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:55 smithi044 bash[16231]: cluster 2024-02-19T22:21:53.908807+0000 mgr.smithi044.ikbsam (mgr.14184) 1305 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:55.673 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:21:55.673 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:21:56.365 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:21:57.367 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:21:57.378 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:57 smithi044 bash[16231]: audit 2024-02-19T22:21:55.657985+0000 mgr.smithi044.ikbsam (mgr.14184) 1306 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:57.378 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:57 smithi044 bash[16231]: cluster 2024-02-19T22:21:55.910088+0000 mgr.smithi044.ikbsam (mgr.14184) 1307 : cluster [DBG] pgmap v870: 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-02-19T22:21:57.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:57 smithi104 bash[21066]: audit 2024-02-19T22:21:55.657985+0000 mgr.smithi044.ikbsam (mgr.14184) 1306 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:21:57.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:57 smithi104 bash[21066]: cluster 2024-02-19T22:21:55.910088+0000 mgr.smithi044.ikbsam (mgr.14184) 1307 : cluster [DBG] pgmap v870: 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-02-19T22:21:59.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:21:59 smithi044 bash[16231]: cluster 2024-02-19T22:21:57.911695+0000 mgr.smithi044.ikbsam (mgr.14184) 1308 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:21:59.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:21:59 smithi104 bash[21066]: cluster 2024-02-19T22:21:57.911695+0000 mgr.smithi044.ikbsam (mgr.14184) 1308 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:22:00.898 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:00.899 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:01.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:01 smithi104 bash[21066]: cluster 2024-02-19T22:21:59.912848+0000 mgr.smithi044.ikbsam (mgr.14184) 1309 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 0 B/s wr, 8 op/s 2024-02-19T22:22:01.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:01 smithi044 bash[16231]: cluster 2024-02-19T22:21:59.912848+0000 mgr.smithi044.ikbsam (mgr.14184) 1309 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 0 B/s wr, 8 op/s 2024-02-19T22:22:01.652 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:02.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:02 smithi104 bash[21066]: audit 2024-02-19T22:22:00.883045+0000 mgr.smithi044.ikbsam (mgr.14184) 1310 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:02.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:02 smithi044 bash[16231]: audit 2024-02-19T22:22:00.883045+0000 mgr.smithi044.ikbsam (mgr.14184) 1310 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:02.653 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:03.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:03 smithi104 bash[21066]: cluster 2024-02-19T22:22:01.913850+0000 mgr.smithi044.ikbsam (mgr.14184) 1311 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 0 B/s wr, 8 op/s 2024-02-19T22:22:03.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:03 smithi044 bash[16231]: cluster 2024-02-19T22:22:01.913850+0000 mgr.smithi044.ikbsam (mgr.14184) 1311 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 0 B/s wr, 8 op/s 2024-02-19T22:22:05.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:05 smithi104 bash[21066]: cluster 2024-02-19T22:22:03.916932+0000 mgr.smithi044.ikbsam (mgr.14184) 1312 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 0 B/s wr, 33 op/s 2024-02-19T22:22:05.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:05 smithi044 bash[16231]: cluster 2024-02-19T22:22:03.916932+0000 mgr.smithi044.ikbsam (mgr.14184) 1312 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 0 B/s wr, 33 op/s 2024-02-19T22:22:05.963 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:05.963 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:06.580 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:07 smithi104 bash[21066]: cluster 2024-02-19T22:22:05.918817+0000 mgr.smithi044.ikbsam (mgr.14184) 1313 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2024-02-19T22:22:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:07 smithi104 bash[21066]: audit 2024-02-19T22:22:05.944546+0000 mgr.smithi044.ikbsam (mgr.14184) 1314 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:07 smithi044 bash[16231]: cluster 2024-02-19T22:22:05.918817+0000 mgr.smithi044.ikbsam (mgr.14184) 1313 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2024-02-19T22:22:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:07 smithi044 bash[16231]: audit 2024-02-19T22:22:05.944546+0000 mgr.smithi044.ikbsam (mgr.14184) 1314 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:07.581 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:08.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:08 smithi044 bash[16231]: cluster 2024-02-19T22:22:07.920431+0000 mgr.smithi044.ikbsam (mgr.14184) 1315 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2024-02-19T22:22:08.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:08 smithi104 bash[21066]: cluster 2024-02-19T22:22:07.920431+0000 mgr.smithi044.ikbsam (mgr.14184) 1315 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2024-02-19T22:22:10.942 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:10.943 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:10 smithi104 bash[21066]: cluster 2024-02-19T22:22:09.921681+0000 mgr.smithi044.ikbsam (mgr.14184) 1316 : cluster [DBG] pgmap v877: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2024-02-19T22:22:11.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:10 smithi044 bash[16231]: cluster 2024-02-19T22:22:09.921681+0000 mgr.smithi044.ikbsam (mgr.14184) 1316 : cluster [DBG] pgmap v877: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 41 KiB/s rd, 0 B/s wr, 68 op/s 2024-02-19T22:22:11.662 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:12.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:11 smithi104 bash[21066]: audit 2024-02-19T22:22:10.932086+0000 mgr.smithi044.ikbsam (mgr.14184) 1317 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:12.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:11 smithi044 bash[16231]: audit 2024-02-19T22:22:10.932086+0000 mgr.smithi044.ikbsam (mgr.14184) 1317 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:12.662 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:13.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:13 smithi104 bash[21066]: cluster 2024-02-19T22:22:11.922689+0000 mgr.smithi044.ikbsam (mgr.14184) 1318 : cluster [DBG] pgmap v878: 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-02-19T22:22:13.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:13 smithi044 bash[16231]: cluster 2024-02-19T22:22:11.922689+0000 mgr.smithi044.ikbsam (mgr.14184) 1318 : cluster [DBG] pgmap v878: 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-02-19T22:22:14.264 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:14 smithi044 bash[16231]: audit 2024-02-19T22:22:13.881215+0000 mon.smithi044 (mon.0) 1006 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:22:14.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:14 smithi104 bash[21066]: audit 2024-02-19T22:22:13.881215+0000 mon.smithi044 (mon.0) 1006 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:22:15.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:15 smithi104 bash[21066]: cluster 2024-02-19T22:22:13.923656+0000 mgr.smithi044.ikbsam (mgr.14184) 1319 : cluster [DBG] pgmap v879: 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-02-19T22:22:15.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:15 smithi104 bash[21066]: audit 2024-02-19T22:22:14.216984+0000 mon.smithi044 (mon.0) 1007 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:22:15.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:15 smithi104 bash[21066]: audit 2024-02-19T22:22:14.218468+0000 mon.smithi044 (mon.0) 1008 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:22:15.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:15 smithi104 bash[21066]: audit 2024-02-19T22:22:14.227962+0000 mon.smithi044 (mon.0) 1009 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:22:15.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:15 smithi104 bash[21066]: audit 2024-02-19T22:22:14.236444+0000 mon.smithi044 (mon.0) 1010 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:22:15.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:15 smithi104 bash[21066]: audit 2024-02-19T22:22:14.251979+0000 mon.smithi044 (mon.0) 1011 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:22:15.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:15 smithi044 bash[16231]: cluster 2024-02-19T22:22:13.923656+0000 mgr.smithi044.ikbsam (mgr.14184) 1319 : cluster [DBG] pgmap v879: 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-02-19T22:22:15.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:15 smithi044 bash[16231]: audit 2024-02-19T22:22:14.216984+0000 mon.smithi044 (mon.0) 1007 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:22:15.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:15 smithi044 bash[16231]: audit 2024-02-19T22:22:14.218468+0000 mon.smithi044 (mon.0) 1008 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:22:15.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:15 smithi044 bash[16231]: audit 2024-02-19T22:22:14.227962+0000 mon.smithi044 (mon.0) 1009 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:22:15.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:15 smithi044 bash[16231]: audit 2024-02-19T22:22:14.236444+0000 mon.smithi044 (mon.0) 1010 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:22:15.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:15 smithi044 bash[16231]: audit 2024-02-19T22:22:14.251979+0000 mon.smithi044 (mon.0) 1011 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:22:16.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:16 smithi044 bash[16231]: cluster 2024-02-19T22:22:14.229217+0000 mgr.smithi044.ikbsam (mgr.14184) 1320 : cluster [DBG] pgmap v880: 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, 40 op/s 2024-02-19T22:22:16.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:16 smithi044 bash[16231]: cephadm 2024-02-19T22:22:14.256617+0000 mgr.smithi044.ikbsam (mgr.14184) 1321 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.dfinos on smithi104 2024-02-19T22:22:16.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:16 smithi044 bash[16231]: cluster 2024-02-19T22:22:15.223715+0000 mon.smithi044 (mon.0) 1012 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:22:16.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:16 smithi044 bash[16231]: cluster 2024-02-19T22:22:15.223781+0000 mon.smithi044 (mon.0) 1013 : cluster [INF] Cluster is now healthy 2024-02-19T22:22:16.293 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:16.293 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:20:05.342631Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.irfjar on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:16.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:16 smithi104 bash[21066]: cluster 2024-02-19T22:22:14.229217+0000 mgr.smithi044.ikbsam (mgr.14184) 1320 : cluster [DBG] pgmap v880: 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, 40 op/s 2024-02-19T22:22:16.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:16 smithi104 bash[21066]: cephadm 2024-02-19T22:22:14.256617+0000 mgr.smithi044.ikbsam (mgr.14184) 1321 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.dfinos on smithi104 2024-02-19T22:22:16.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:16 smithi104 bash[21066]: cluster 2024-02-19T22:22:15.223715+0000 mon.smithi044 (mon.0) 1012 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:22:16.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:16 smithi104 bash[21066]: cluster 2024-02-19T22:22:15.223781+0000 mon.smithi044 (mon.0) 1013 : cluster [INF] Cluster is now healthy 2024-02-19T22:22:16.959 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:17.960 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:18.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:18 smithi104 bash[21066]: cluster 2024-02-19T22:22:16.230071+0000 mgr.smithi044.ikbsam (mgr.14184) 1322 : cluster [DBG] pgmap v881: 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-02-19T22:22:18.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:18 smithi104 bash[21066]: audit 2024-02-19T22:22:16.282981+0000 mgr.smithi044.ikbsam (mgr.14184) 1323 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:18.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:18 smithi044 bash[16231]: cluster 2024-02-19T22:22:16.230071+0000 mgr.smithi044.ikbsam (mgr.14184) 1322 : cluster [DBG] pgmap v881: 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-02-19T22:22:18.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:18 smithi044 bash[16231]: audit 2024-02-19T22:22:16.282981+0000 mgr.smithi044.ikbsam (mgr.14184) 1323 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:20.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:20 smithi104 bash[21066]: cluster 2024-02-19T22:22:18.231524+0000 mgr.smithi044.ikbsam (mgr.14184) 1324 : cluster [DBG] pgmap v882: 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-02-19T22:22:20.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:20 smithi104 bash[21066]: audit 2024-02-19T22:22:19.184162+0000 mon.smithi044 (mon.0) 1014 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.dfinos"}]: dispatch 2024-02-19T22:22:20.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:20 smithi044 bash[16231]: cluster 2024-02-19T22:22:18.231524+0000 mgr.smithi044.ikbsam (mgr.14184) 1324 : cluster [DBG] pgmap v882: 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-02-19T22:22:20.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:20 smithi044 bash[16231]: audit 2024-02-19T22:22:19.184162+0000 mon.smithi044 (mon.0) 1014 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.dfinos"}]: dispatch 2024-02-19T22:22:21.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: cephadm 2024-02-19T22:22:19.182902+0000 mgr.smithi044.ikbsam (mgr.14184) 1325 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:21.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dfinos ... 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:22:21.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dfinos ... 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: cephadm 2024-02-19T22:22:19.183431+0000 mgr.smithi044.ikbsam (mgr.14184) 1326 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: cephadm 2024-02-19T22:22:19.185894+0000 mgr.smithi044.ikbsam (mgr.14184) 1327 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.dfinos ... 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:21 smithi104 bash[21066]: cephadm 2024-02-19T22:22:19.189223+0000 mgr.smithi044.ikbsam (mgr.14184) 1328 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.yqptan on smithi044 2024-02-19T22:22:21.385 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:21.385 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:09.781680Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.qhbekt on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-qhbekt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.qhbekt\nDeploy daemon haproxy.nfs.foo.smithi104.qhbekt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.867999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.eikaqr on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-eikaqr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.eikaqr\nDeploy daemon haproxy.nfs.foo.smithi044.eikaqr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:21:13.872243Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.fvvjju on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: cephadm 2024-02-19T22:22:19.182902+0000 mgr.smithi044.ikbsam (mgr.14184) 1325 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dfinos ... 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:21.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dfinos ... 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: cephadm 2024-02-19T22:22:19.183431+0000 mgr.smithi044.ikbsam (mgr.14184) 1326 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: cephadm 2024-02-19T22:22:19.185894+0000 mgr.smithi044.ikbsam (mgr.14184) 1327 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.dfinos ... 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:21.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:21 smithi044 bash[16231]: cephadm 2024-02-19T22:22:19.189223+0000 mgr.smithi044.ikbsam (mgr.14184) 1328 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.yqptan on smithi044 2024-02-19T22:22:22.123 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:22.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:22 smithi104 bash[21066]: cluster 2024-02-19T22:22:20.233173+0000 mgr.smithi044.ikbsam (mgr.14184) 1329 : cluster [DBG] pgmap v883: 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-02-19T22:22:22.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:22 smithi044 bash[16231]: cluster 2024-02-19T22:22:20.233173+0000 mgr.smithi044.ikbsam (mgr.14184) 1329 : cluster [DBG] pgmap v883: 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-02-19T22:22:23.124 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:23.323 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:23 smithi044 bash[16231]: audit 2024-02-19T22:22:21.362929+0000 mgr.smithi044.ikbsam (mgr.14184) 1330 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:23.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:23 smithi104 bash[21066]: audit 2024-02-19T22:22:21.362929+0000 mgr.smithi044.ikbsam (mgr.14184) 1330 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:24.338 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:24 smithi044 bash[16231]: cluster 2024-02-19T22:22:22.234391+0000 mgr.smithi044.ikbsam (mgr.14184) 1331 : cluster [DBG] pgmap v884: 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-02-19T22:22:24.338 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:24 smithi044 bash[16231]: audit 2024-02-19T22:22:23.319628+0000 mon.smithi044 (mon.0) 1015 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.yqptan"}]: dispatch 2024-02-19T22:22:24.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:24 smithi104 bash[21066]: cluster 2024-02-19T22:22:22.234391+0000 mgr.smithi044.ikbsam (mgr.14184) 1331 : cluster [DBG] pgmap v884: 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-02-19T22:22:24.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:24 smithi104 bash[21066]: audit 2024-02-19T22:22:23.319628+0000 mon.smithi044 (mon.0) 1015 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.yqptan"}]: dispatch 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cephadm 2024-02-19T22:22:23.318737+0000 mgr.smithi044.ikbsam (mgr.14184) 1332 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.yqptan ... 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.yqptan ... 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cephadm 2024-02-19T22:22:23.319128+0000 mgr.smithi044.ikbsam (mgr.14184) 1333 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cephadm 2024-02-19T22:22:23.320750+0000 mgr.smithi044.ikbsam (mgr.14184) 1334 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.yqptan ... 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:25.383 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cephadm 2024-02-19T22:22:23.323289+0000 mgr.smithi044.ikbsam (mgr.14184) 1335 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cephadm 2024-02-19T22:22:23.325549+0000 mgr.smithi044.ikbsam (mgr.14184) 1336 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cluster 2024-02-19T22:22:23.326585+0000 mgr.smithi044.ikbsam (mgr.14184) 1337 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 108 B/s rd, 0 op/s 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: cluster 2024-02-19T22:22:24.050383+0000 mon.smithi044 (mon.0) 1016 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:22:25.384 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:25 smithi104 bash[21066]: audit 2024-02-19T22:22:24.999162+0000 mon.smithi044 (mon.0) 1017 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cephadm 2024-02-19T22:22:23.318737+0000 mgr.smithi044.ikbsam (mgr.14184) 1332 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.yqptan ... 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.yqptan ... 2024-02-19T22:22:25.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cephadm 2024-02-19T22:22:23.319128+0000 mgr.smithi044.ikbsam (mgr.14184) 1333 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cephadm 2024-02-19T22:22:23.320750+0000 mgr.smithi044.ikbsam (mgr.14184) 1334 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.yqptan ... 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:22:25.410 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cephadm 2024-02-19T22:22:23.323289+0000 mgr.smithi044.ikbsam (mgr.14184) 1335 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:22:25.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cephadm 2024-02-19T22:22:23.325549+0000 mgr.smithi044.ikbsam (mgr.14184) 1336 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:22:25.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cluster 2024-02-19T22:22:23.326585+0000 mgr.smithi044.ikbsam (mgr.14184) 1337 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 108 B/s rd, 0 op/s 2024-02-19T22:22:25.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: cluster 2024-02-19T22:22:24.050383+0000 mon.smithi044 (mon.0) 1016 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:22:25.411 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:25 smithi044 bash[16231]: audit 2024-02-19T22:22:24.999162+0000 mon.smithi044 (mon.0) 1017 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:22:26.686 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:26.686 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:27.290 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:27.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:27 smithi104 bash[21066]: cluster 2024-02-19T22:22:25.328436+0000 mgr.smithi044.ikbsam (mgr.14184) 1338 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:27.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:27 smithi044 bash[16231]: cluster 2024-02-19T22:22:25.328436+0000 mgr.smithi044.ikbsam (mgr.14184) 1338 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:28.291 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:28.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:28 smithi104 bash[21066]: audit 2024-02-19T22:22:26.675720+0000 mgr.smithi044.ikbsam (mgr.14184) 1339 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:28.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:28 smithi044 bash[16231]: audit 2024-02-19T22:22:26.675720+0000 mgr.smithi044.ikbsam (mgr.14184) 1339 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:29.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:29 smithi104 bash[21066]: cluster 2024-02-19T22:22:27.330023+0000 mgr.smithi044.ikbsam (mgr.14184) 1340 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:29.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:29 smithi044 bash[16231]: cluster 2024-02-19T22:22:27.330023+0000 mgr.smithi044.ikbsam (mgr.14184) 1340 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:31.346 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:31 smithi044 bash[16231]: cluster 2024-02-19T22:22:29.331674+0000 mgr.smithi044.ikbsam (mgr.14184) 1341 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:31.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:31 smithi104 bash[21066]: cluster 2024-02-19T22:22:29.331674+0000 mgr.smithi044.ikbsam (mgr.14184) 1341 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:31.708 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:31.708 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:32.366 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:33.368 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:33.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:33 smithi104 bash[21066]: cluster 2024-02-19T22:22:31.333071+0000 mgr.smithi044.ikbsam (mgr.14184) 1342 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:33.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:33 smithi104 bash[21066]: audit 2024-02-19T22:22:31.691917+0000 mgr.smithi044.ikbsam (mgr.14184) 1343 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:33.381 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:33 smithi044 bash[16231]: cluster 2024-02-19T22:22:31.333071+0000 mgr.smithi044.ikbsam (mgr.14184) 1342 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:33.381 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:33 smithi044 bash[16231]: audit 2024-02-19T22:22:31.691917+0000 mgr.smithi044.ikbsam (mgr.14184) 1343 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:35.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:35 smithi104 bash[21066]: cluster 2024-02-19T22:22:33.334761+0000 mgr.smithi044.ikbsam (mgr.14184) 1344 : cluster [DBG] pgmap v890: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:35.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:35 smithi044 bash[16231]: cluster 2024-02-19T22:22:33.334761+0000 mgr.smithi044.ikbsam (mgr.14184) 1344 : cluster [DBG] pgmap v890: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:22:36.732 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:36.732 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:37.332 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:37.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:37 smithi104 bash[21066]: cluster 2024-02-19T22:22:35.336618+0000 mgr.smithi044.ikbsam (mgr.14184) 1345 : cluster [DBG] pgmap v891: 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-02-19T22:22:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:37 smithi044 bash[16231]: cluster 2024-02-19T22:22:35.336618+0000 mgr.smithi044.ikbsam (mgr.14184) 1345 : cluster [DBG] pgmap v891: 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-02-19T22:22:38.334 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:38.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:38 smithi104 bash[21066]: audit 2024-02-19T22:22:36.714161+0000 mgr.smithi044.ikbsam (mgr.14184) 1346 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:38.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:38 smithi044 bash[16231]: audit 2024-02-19T22:22:36.714161+0000 mgr.smithi044.ikbsam (mgr.14184) 1346 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:39.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:39 smithi104 bash[21066]: cluster 2024-02-19T22:22:37.337994+0000 mgr.smithi044.ikbsam (mgr.14184) 1347 : 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-02-19T22:22:39.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:39 smithi044 bash[16231]: cluster 2024-02-19T22:22:37.337994+0000 mgr.smithi044.ikbsam (mgr.14184) 1347 : 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-02-19T22:22:41.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:41 smithi044 bash[16231]: cluster 2024-02-19T22:22:39.339640+0000 mgr.smithi044.ikbsam (mgr.14184) 1348 : 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-02-19T22:22:41.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:41 smithi104 bash[21066]: cluster 2024-02-19T22:22:39.339640+0000 mgr.smithi044.ikbsam (mgr.14184) 1348 : 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-02-19T22:22:41.657 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:41.657 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:42.311 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:42.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:42 smithi104 bash[21066]: cluster 2024-02-19T22:22:41.340834+0000 mgr.smithi044.ikbsam (mgr.14184) 1349 : 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-02-19T22:22:42.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:42 smithi104 bash[21066]: audit 2024-02-19T22:22:41.647415+0000 mgr.smithi044.ikbsam (mgr.14184) 1350 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:42.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:42 smithi044 bash[16231]: cluster 2024-02-19T22:22:41.340834+0000 mgr.smithi044.ikbsam (mgr.14184) 1349 : 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-02-19T22:22:42.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:42 smithi044 bash[16231]: audit 2024-02-19T22:22:41.647415+0000 mgr.smithi044.ikbsam (mgr.14184) 1350 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:43.312 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:44.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:44 smithi044 bash[16231]: cluster 2024-02-19T22:22:43.342332+0000 mgr.smithi044.ikbsam (mgr.14184) 1351 : cluster [DBG] pgmap v895: 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-02-19T22:22:44.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:44 smithi104 bash[21066]: cluster 2024-02-19T22:22:43.342332+0000 mgr.smithi044.ikbsam (mgr.14184) 1351 : cluster [DBG] pgmap v895: 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-02-19T22:22:46.640 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:46.640 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:46.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:46 smithi044 bash[16231]: cluster 2024-02-19T22:22:45.344171+0000 mgr.smithi044.ikbsam (mgr.14184) 1352 : cluster [DBG] pgmap v896: 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-02-19T22:22:46.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:46 smithi104 bash[21066]: cluster 2024-02-19T22:22:45.344171+0000 mgr.smithi044.ikbsam (mgr.14184) 1352 : cluster [DBG] pgmap v896: 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-02-19T22:22:47.319 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:47.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:47 smithi044 bash[16231]: audit 2024-02-19T22:22:46.622270+0000 mgr.smithi044.ikbsam (mgr.14184) 1353 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:47.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:47 smithi104 bash[21066]: audit 2024-02-19T22:22:46.622270+0000 mgr.smithi044.ikbsam (mgr.14184) 1353 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:48.320 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:48.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:48 smithi044 bash[16231]: cluster 2024-02-19T22:22:47.345670+0000 mgr.smithi044.ikbsam (mgr.14184) 1354 : cluster [DBG] pgmap v897: 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-02-19T22:22:48.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:48 smithi104 bash[21066]: cluster 2024-02-19T22:22:47.345670+0000 mgr.smithi044.ikbsam (mgr.14184) 1354 : cluster [DBG] pgmap v897: 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-02-19T22:22:50.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:50 smithi104 bash[21066]: cluster 2024-02-19T22:22:49.347387+0000 mgr.smithi044.ikbsam (mgr.14184) 1355 : cluster [DBG] pgmap v898: 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-02-19T22:22:50.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:50 smithi044 bash[16231]: cluster 2024-02-19T22:22:49.347387+0000 mgr.smithi044.ikbsam (mgr.14184) 1355 : cluster [DBG] pgmap v898: 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-02-19T22:22:51.686 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:51.686 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:52.347 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:52.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:52 smithi044 bash[16231]: cluster 2024-02-19T22:22:51.348431+0000 mgr.smithi044.ikbsam (mgr.14184) 1356 : cluster [DBG] pgmap v899: 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-02-19T22:22:52.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:52 smithi044 bash[16231]: audit 2024-02-19T22:22:51.669843+0000 mgr.smithi044.ikbsam (mgr.14184) 1357 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:52.785 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:52 smithi104 bash[21066]: cluster 2024-02-19T22:22:51.348431+0000 mgr.smithi044.ikbsam (mgr.14184) 1356 : cluster [DBG] pgmap v899: 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-02-19T22:22:52.785 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:52 smithi104 bash[21066]: audit 2024-02-19T22:22:51.669843+0000 mgr.smithi044.ikbsam (mgr.14184) 1357 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:53.348 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:54.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:54 smithi044 bash[16231]: cluster 2024-02-19T22:22:53.350890+0000 mgr.smithi044.ikbsam (mgr.14184) 1358 : cluster [DBG] pgmap v900: 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-02-19T22:22:54.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:54 smithi104 bash[21066]: cluster 2024-02-19T22:22:53.350890+0000 mgr.smithi044.ikbsam (mgr.14184) 1358 : cluster [DBG] pgmap v900: 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-02-19T22:22:56.638 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:22:56.638 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:22:56.699 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:56 smithi044 bash[16231]: cluster 2024-02-19T22:22:55.352947+0000 mgr.smithi044.ikbsam (mgr.14184) 1359 : cluster [DBG] pgmap v901: 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-02-19T22:22:56.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:56 smithi104 bash[21066]: cluster 2024-02-19T22:22:55.352947+0000 mgr.smithi044.ikbsam (mgr.14184) 1359 : cluster [DBG] pgmap v901: 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-02-19T22:22:57.293 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:22:57.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:57 smithi044 bash[16231]: audit 2024-02-19T22:22:56.620345+0000 mgr.smithi044.ikbsam (mgr.14184) 1360 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:57 smithi104 bash[21066]: audit 2024-02-19T22:22:56.620345+0000 mgr.smithi044.ikbsam (mgr.14184) 1360 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:22:58.293 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:22:58.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:22:58 smithi044 bash[16231]: cluster 2024-02-19T22:22:57.354591+0000 mgr.smithi044.ikbsam (mgr.14184) 1361 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:22:58.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:22:58 smithi104 bash[21066]: cluster 2024-02-19T22:22:57.354591+0000 mgr.smithi044.ikbsam (mgr.14184) 1361 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:00.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:00 smithi104 bash[21066]: cluster 2024-02-19T22:22:59.355826+0000 mgr.smithi044.ikbsam (mgr.14184) 1362 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:00.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:00 smithi044 bash[16231]: cluster 2024-02-19T22:22:59.355826+0000 mgr.smithi044.ikbsam (mgr.14184) 1362 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:01.714 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:01.714 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:02.372 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:02.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:02 smithi044 bash[16231]: cluster 2024-02-19T22:23:01.357543+0000 mgr.smithi044.ikbsam (mgr.14184) 1363 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:02.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:02 smithi044 bash[16231]: audit 2024-02-19T22:23:01.698795+0000 mgr.smithi044.ikbsam (mgr.14184) 1364 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:02.784 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:02 smithi104 bash[21066]: cluster 2024-02-19T22:23:01.357543+0000 mgr.smithi044.ikbsam (mgr.14184) 1363 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:02.784 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:02 smithi104 bash[21066]: audit 2024-02-19T22:23:01.698795+0000 mgr.smithi044.ikbsam (mgr.14184) 1364 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:03.374 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:04.867 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:04 smithi044 bash[16231]: cluster 2024-02-19T22:23:03.359357+0000 mgr.smithi044.ikbsam (mgr.14184) 1365 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:04.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:04 smithi104 bash[21066]: cluster 2024-02-19T22:23:03.359357+0000 mgr.smithi044.ikbsam (mgr.14184) 1365 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:06.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:06 smithi044 bash[16231]: cluster 2024-02-19T22:23:05.361287+0000 mgr.smithi044.ikbsam (mgr.14184) 1366 : cluster [DBG] pgmap v906: 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-02-19T22:23:06.778 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:06.779 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:06.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:06 smithi104 bash[21066]: cluster 2024-02-19T22:23:05.361287+0000 mgr.smithi044.ikbsam (mgr.14184) 1366 : cluster [DBG] pgmap v906: 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-02-19T22:23:07.453 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:07.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:07 smithi104 bash[21066]: audit 2024-02-19T22:23:06.761475+0000 mgr.smithi044.ikbsam (mgr.14184) 1367 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:07.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:07 smithi044 bash[16231]: audit 2024-02-19T22:23:06.761475+0000 mgr.smithi044.ikbsam (mgr.14184) 1367 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:08.453 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:08.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:08 smithi104 bash[21066]: cluster 2024-02-19T22:23:07.362617+0000 mgr.smithi044.ikbsam (mgr.14184) 1368 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:08.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:08 smithi044 bash[16231]: cluster 2024-02-19T22:23:07.362617+0000 mgr.smithi044.ikbsam (mgr.14184) 1368 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:10.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:10 smithi104 bash[21066]: cluster 2024-02-19T22:23:09.364206+0000 mgr.smithi044.ikbsam (mgr.14184) 1369 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:10.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:10 smithi044 bash[16231]: cluster 2024-02-19T22:23:09.364206+0000 mgr.smithi044.ikbsam (mgr.14184) 1369 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:11.826 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:11.826 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:12.516 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:12.784 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:12 smithi104 bash[21066]: cluster 2024-02-19T22:23:11.365175+0000 mgr.smithi044.ikbsam (mgr.14184) 1370 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:12.785 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:12 smithi104 bash[21066]: audit 2024-02-19T22:23:11.808954+0000 mgr.smithi044.ikbsam (mgr.14184) 1371 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:12.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:12 smithi044 bash[16231]: cluster 2024-02-19T22:23:11.365175+0000 mgr.smithi044.ikbsam (mgr.14184) 1370 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:12.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:12 smithi044 bash[16231]: audit 2024-02-19T22:23:11.808954+0000 mgr.smithi044.ikbsam (mgr.14184) 1371 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:13.518 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:14.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:14 smithi104 bash[21066]: cluster 2024-02-19T22:23:13.366958+0000 mgr.smithi044.ikbsam (mgr.14184) 1372 : 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-02-19T22:23:14.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:14 smithi044 bash[16231]: cluster 2024-02-19T22:23:13.366958+0000 mgr.smithi044.ikbsam (mgr.14184) 1372 : 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-02-19T22:23:16.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:16 smithi044 bash[16231]: cluster 2024-02-19T22:23:15.368205+0000 mgr.smithi044.ikbsam (mgr.14184) 1373 : 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-02-19T22:23:16.740 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:16.741 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:16.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:16 smithi104 bash[21066]: cluster 2024-02-19T22:23:15.368205+0000 mgr.smithi044.ikbsam (mgr.14184) 1373 : 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-02-19T22:23:17.370 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:17.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:17 smithi044 bash[16231]: audit 2024-02-19T22:23:16.726522+0000 mgr.smithi044.ikbsam (mgr.14184) 1374 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:17.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:17 smithi104 bash[21066]: audit 2024-02-19T22:23:16.726522+0000 mgr.smithi044.ikbsam (mgr.14184) 1374 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:18.371 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:18.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:18 smithi044 bash[16231]: cluster 2024-02-19T22:23:17.369454+0000 mgr.smithi044.ikbsam (mgr.14184) 1375 : 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-02-19T22:23:18.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:18 smithi104 bash[21066]: cluster 2024-02-19T22:23:17.369454+0000 mgr.smithi044.ikbsam (mgr.14184) 1375 : 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-02-19T22:23:20.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:20 smithi104 bash[21066]: cluster 2024-02-19T22:23:19.370997+0000 mgr.smithi044.ikbsam (mgr.14184) 1376 : 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-02-19T22:23:20.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:20 smithi044 bash[16231]: cluster 2024-02-19T22:23:19.370997+0000 mgr.smithi044.ikbsam (mgr.14184) 1376 : 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-02-19T22:23:21.744 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:21.744 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:22.364 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:22.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:22 smithi044 bash[16231]: cluster 2024-02-19T22:23:21.372196+0000 mgr.smithi044.ikbsam (mgr.14184) 1377 : 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-02-19T22:23:22.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:22 smithi044 bash[16231]: audit 2024-02-19T22:23:21.734305+0000 mgr.smithi044.ikbsam (mgr.14184) 1378 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:22.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:22 smithi104 bash[21066]: cluster 2024-02-19T22:23:21.372196+0000 mgr.smithi044.ikbsam (mgr.14184) 1377 : 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-02-19T22:23:22.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:22 smithi104 bash[21066]: audit 2024-02-19T22:23:21.734305+0000 mgr.smithi044.ikbsam (mgr.14184) 1378 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:23.366 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:23.657 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:23 smithi044 bash[16231]: audit 2024-02-19T22:23:23.329390+0000 mon.smithi044 (mon.0) 1018 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:23:23.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:23 smithi104 bash[21066]: audit 2024-02-19T22:23:23.329390+0000 mon.smithi044 (mon.0) 1018 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:23:24.864 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: cluster 2024-02-19T22:23:23.373615+0000 mgr.smithi044.ikbsam (mgr.14184) 1379 : 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-02-19T22:23:24.864 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: audit 2024-02-19T22:23:23.663513+0000 mon.smithi044 (mon.0) 1019 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:23:24.864 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: audit 2024-02-19T22:23:23.664877+0000 mon.smithi044 (mon.0) 1020 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:23:24.865 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: audit 2024-02-19T22:23:23.673881+0000 mon.smithi044 (mon.0) 1021 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:24.865 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: cluster 2024-02-19T22:23:23.674898+0000 mgr.smithi044.ikbsam (mgr.14184) 1380 : cluster [DBG] pgmap v916: 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-02-19T22:23:24.865 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: audit 2024-02-19T22:23:23.683362+0000 mon.smithi044 (mon.0) 1022 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:23:24.865 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: audit 2024-02-19T22:23:23.700309+0000 mon.smithi044 (mon.0) 1023 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:24.865 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:24 smithi044 bash[16231]: cephadm 2024-02-19T22:23:23.704801+0000 mgr.smithi044.ikbsam (mgr.14184) 1381 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.pynnpi on smithi104 2024-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: cluster 2024-02-19T22:23:23.373615+0000 mgr.smithi044.ikbsam (mgr.14184) 1379 : 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-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: audit 2024-02-19T22:23:23.663513+0000 mon.smithi044 (mon.0) 1019 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: audit 2024-02-19T22:23:23.664877+0000 mon.smithi044 (mon.0) 1020 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: audit 2024-02-19T22:23:23.673881+0000 mon.smithi044 (mon.0) 1021 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: cluster 2024-02-19T22:23:23.674898+0000 mgr.smithi044.ikbsam (mgr.14184) 1380 : cluster [DBG] pgmap v916: 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-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: audit 2024-02-19T22:23:23.683362+0000 mon.smithi044 (mon.0) 1022 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: audit 2024-02-19T22:23:23.700309+0000 mon.smithi044 (mon.0) 1023 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:24.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:24 smithi104 bash[21066]: cephadm 2024-02-19T22:23:23.704801+0000 mgr.smithi044.ikbsam (mgr.14184) 1381 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.pynnpi on smithi104 2024-02-19T22:23:25.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:25 smithi104 bash[21066]: cluster 2024-02-19T22:23:24.669954+0000 mon.smithi044 (mon.0) 1024 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:23:25.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:25 smithi104 bash[21066]: cluster 2024-02-19T22:23:24.670027+0000 mon.smithi044 (mon.0) 1025 : cluster [INF] Cluster is now healthy 2024-02-19T22:23:25.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:25 smithi044 bash[16231]: cluster 2024-02-19T22:23:24.669954+0000 mon.smithi044 (mon.0) 1024 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:23:25.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:25 smithi044 bash[16231]: cluster 2024-02-19T22:23:24.670027+0000 mon.smithi044 (mon.0) 1025 : cluster [INF] Cluster is now healthy 2024-02-19T22:23:26.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:26 smithi104 bash[21066]: cluster 2024-02-19T22:23:25.676522+0000 mgr.smithi044.ikbsam (mgr.14184) 1382 : cluster [DBG] pgmap v917: 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-02-19T22:23:26.899 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:26.899 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:21:13.876187Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.orqcli on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:19.185626Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.dfinos on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-dfinos\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.dfinos\nDeploy daemon haproxy.nfs.foo.smithi104.dfinos ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.320604Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.yqptan on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-yqptan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.yqptan\nDeploy daemon haproxy.nfs.foo.smithi044.yqptan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:22:23.323156Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.cqxghz on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:26.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:26 smithi044 bash[16231]: cluster 2024-02-19T22:23:25.676522+0000 mgr.smithi044.ikbsam (mgr.14184) 1382 : cluster [DBG] pgmap v917: 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-02-19T22:23:27.581 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:27.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:27 smithi104 bash[21066]: audit 2024-02-19T22:23:26.883841+0000 mgr.smithi044.ikbsam (mgr.14184) 1383 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:27.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:27 smithi104 bash[21066]: audit 2024-02-19T22:23:27.492468+0000 mon.smithi044 (mon.0) 1026 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.pynnpi"}]: dispatch 2024-02-19T22:23:27.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:27 smithi044 bash[16231]: audit 2024-02-19T22:23:26.883841+0000 mgr.smithi044.ikbsam (mgr.14184) 1383 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:27.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:27 smithi044 bash[16231]: audit 2024-02-19T22:23:27.492468+0000 mon.smithi044 (mon.0) 1026 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.pynnpi"}]: dispatch 2024-02-19T22:23:28.581 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:28.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: cephadm 2024-02-19T22:23:27.491163+0000 mgr.smithi044.ikbsam (mgr.14184) 1384 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:28.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.pynnpi ... 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:23:28.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.pynnpi ... 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: cephadm 2024-02-19T22:23:27.491724+0000 mgr.smithi044.ikbsam (mgr.14184) 1385 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: cephadm 2024-02-19T22:23:27.494299+0000 mgr.smithi044.ikbsam (mgr.14184) 1386 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.pynnpi ... 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: cephadm 2024-02-19T22:23:27.498867+0000 mgr.smithi044.ikbsam (mgr.14184) 1387 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.omribn on smithi044 2024-02-19T22:23:28.883 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:28 smithi104 bash[21066]: cluster 2024-02-19T22:23:27.677733+0000 mgr.smithi044.ikbsam (mgr.14184) 1388 : cluster [DBG] pgmap v918: 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-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: cephadm 2024-02-19T22:23:27.491163+0000 mgr.smithi044.ikbsam (mgr.14184) 1384 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.pynnpi ... 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:23:28.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.pynnpi ... 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:28.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: cephadm 2024-02-19T22:23:27.491724+0000 mgr.smithi044.ikbsam (mgr.14184) 1385 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: cephadm 2024-02-19T22:23:27.494299+0000 mgr.smithi044.ikbsam (mgr.14184) 1386 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.pynnpi ... 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: cephadm 2024-02-19T22:23:27.498867+0000 mgr.smithi044.ikbsam (mgr.14184) 1387 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.omribn on smithi044 2024-02-19T22:23:28.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:28 smithi044 bash[16231]: cluster 2024-02-19T22:23:27.677733+0000 mgr.smithi044.ikbsam (mgr.14184) 1388 : cluster [DBG] pgmap v918: 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-02-19T22:23:29.925 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:29 smithi044 bash[16231]: audit 2024-02-19T22:23:28.658883+0000 mon.smithi044 (mon.0) 1027 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:29 smithi104 bash[21066]: audit 2024-02-19T22:23:28.658883+0000 mon.smithi044 (mon.0) 1027 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:31.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:30 smithi104 bash[21066]: cluster 2024-02-19T22:23:29.678753+0000 mgr.smithi044.ikbsam (mgr.14184) 1389 : cluster [DBG] pgmap v919: 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-02-19T22:23:31.167 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:30 smithi044 bash[16231]: cluster 2024-02-19T22:23:29.678753+0000 mgr.smithi044.ikbsam (mgr.14184) 1389 : cluster [DBG] pgmap v919: 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-02-19T22:23:31.945 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:31 smithi044 bash[16231]: audit 2024-02-19T22:23:31.498756+0000 mon.smithi044 (mon.0) 1028 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.omribn"}]: dispatch 2024-02-19T22:23:32.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:31 smithi104 bash[21066]: audit 2024-02-19T22:23:31.498756+0000 mon.smithi044 (mon.0) 1028 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.omribn"}]: dispatch 2024-02-19T22:23:32.305 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:32.306 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:33.027 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:33.027 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cephadm 2024-02-19T22:23:31.497824+0000 mgr.smithi044.ikbsam (mgr.14184) 1390 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.027 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:33.027 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.027 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.omribn ... 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:33.028 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.omribn ... 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cephadm 2024-02-19T22:23:31.498239+0000 mgr.smithi044.ikbsam (mgr.14184) 1391 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cephadm 2024-02-19T22:23:31.499798+0000 mgr.smithi044.ikbsam (mgr.14184) 1392 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.029 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.omribn ... 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cephadm 2024-02-19T22:23:31.503718+0000 mgr.smithi044.ikbsam (mgr.14184) 1393 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cephadm 2024-02-19T22:23:31.507420+0000 mgr.smithi044.ikbsam (mgr.14184) 1394 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cluster 2024-02-19T22:23:31.509162+0000 mgr.smithi044.ikbsam (mgr.14184) 1395 : cluster [DBG] pgmap v920: 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-02-19T22:23:33.030 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:32 smithi044 bash[16231]: cluster 2024-02-19T22:23:31.667924+0000 mon.smithi044 (mon.0) 1029 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cephadm 2024-02-19T22:23:31.497824+0000 mgr.smithi044.ikbsam (mgr.14184) 1390 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.omribn ... 2024-02-19T22:23:33.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:33.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.omribn ... 2024-02-19T22:23:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:33.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cephadm 2024-02-19T22:23:31.498239+0000 mgr.smithi044.ikbsam (mgr.14184) 1391 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cephadm 2024-02-19T22:23:31.499798+0000 mgr.smithi044.ikbsam (mgr.14184) 1392 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.omribn ... 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cephadm 2024-02-19T22:23:31.503718+0000 mgr.smithi044.ikbsam (mgr.14184) 1393 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cephadm 2024-02-19T22:23:31.507420+0000 mgr.smithi044.ikbsam (mgr.14184) 1394 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:23:33.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cluster 2024-02-19T22:23:31.509162+0000 mgr.smithi044.ikbsam (mgr.14184) 1395 : cluster [DBG] pgmap v920: 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-02-19T22:23:33.134 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:32 smithi104 bash[21066]: cluster 2024-02-19T22:23:31.667924+0000 mon.smithi044 (mon.0) 1029 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:23:34.028 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:34.040 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:33 smithi044 bash[16231]: audit 2024-02-19T22:23:32.287839+0000 mgr.smithi044.ikbsam (mgr.14184) 1396 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:34.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:33 smithi104 bash[21066]: audit 2024-02-19T22:23:32.287839+0000 mgr.smithi044.ikbsam (mgr.14184) 1396 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:35.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:34 smithi104 bash[21066]: cluster 2024-02-19T22:23:33.510902+0000 mgr.smithi044.ikbsam (mgr.14184) 1397 : cluster [DBG] pgmap v921: 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-02-19T22:23:35.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:34 smithi044 bash[16231]: cluster 2024-02-19T22:23:33.510902+0000 mgr.smithi044.ikbsam (mgr.14184) 1397 : cluster [DBG] pgmap v921: 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-02-19T22:23:36.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:36 smithi104 bash[21066]: audit 2024-02-19T22:23:35.056740+0000 mon.smithi044 (mon.0) 1030 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:36.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:36 smithi044 bash[16231]: audit 2024-02-19T22:23:35.056740+0000 mon.smithi044 (mon.0) 1030 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:37.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:37 smithi104 bash[21066]: cluster 2024-02-19T22:23:35.512810+0000 mgr.smithi044.ikbsam (mgr.14184) 1398 : cluster [DBG] pgmap v922: 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-02-19T22:23:37.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:37 smithi044 bash[16231]: cluster 2024-02-19T22:23:35.512810+0000 mgr.smithi044.ikbsam (mgr.14184) 1398 : cluster [DBG] pgmap v922: 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-02-19T22:23:37.457 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:37.458 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:38.147 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:39.148 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:39.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:39 smithi104 bash[21066]: audit 2024-02-19T22:23:37.447920+0000 mgr.smithi044.ikbsam (mgr.14184) 1399 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:39.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:39 smithi104 bash[21066]: cluster 2024-02-19T22:23:37.513780+0000 mgr.smithi044.ikbsam (mgr.14184) 1400 : cluster [DBG] pgmap v923: 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-02-19T22:23:39.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:39 smithi044 bash[16231]: audit 2024-02-19T22:23:37.447920+0000 mgr.smithi044.ikbsam (mgr.14184) 1399 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:39.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:39 smithi044 bash[16231]: cluster 2024-02-19T22:23:37.513780+0000 mgr.smithi044.ikbsam (mgr.14184) 1400 : cluster [DBG] pgmap v923: 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-02-19T22:23:41.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:41 smithi104 bash[21066]: cluster 2024-02-19T22:23:39.515534+0000 mgr.smithi044.ikbsam (mgr.14184) 1401 : cluster [DBG] pgmap v924: 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-02-19T22:23:41.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:41 smithi044 bash[16231]: cluster 2024-02-19T22:23:39.515534+0000 mgr.smithi044.ikbsam (mgr.14184) 1401 : cluster [DBG] pgmap v924: 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-02-19T22:23:42.562 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:42.562 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:43.327 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:43.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:43 smithi104 bash[21066]: cluster 2024-02-19T22:23:41.517318+0000 mgr.smithi044.ikbsam (mgr.14184) 1402 : cluster [DBG] pgmap v925: 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-02-19T22:23:43.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:43 smithi044 bash[16231]: cluster 2024-02-19T22:23:41.517318+0000 mgr.smithi044.ikbsam (mgr.14184) 1402 : cluster [DBG] pgmap v925: 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-02-19T22:23:44.328 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:44.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:44 smithi104 bash[21066]: audit 2024-02-19T22:23:42.547914+0000 mgr.smithi044.ikbsam (mgr.14184) 1403 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:44.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:44 smithi104 bash[21066]: audit 2024-02-19T22:23:43.659806+0000 mon.smithi044 (mon.0) 1031 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:44.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:44 smithi044 bash[16231]: audit 2024-02-19T22:23:42.547914+0000 mgr.smithi044.ikbsam (mgr.14184) 1403 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:44.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:44 smithi044 bash[16231]: audit 2024-02-19T22:23:43.659806+0000 mon.smithi044 (mon.0) 1031 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:23:45.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:45 smithi104 bash[21066]: cluster 2024-02-19T22:23:43.519120+0000 mgr.smithi044.ikbsam (mgr.14184) 1404 : cluster [DBG] pgmap v926: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:45.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:45 smithi044 bash[16231]: cluster 2024-02-19T22:23:43.519120+0000 mgr.smithi044.ikbsam (mgr.14184) 1404 : cluster [DBG] pgmap v926: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:47.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:47 smithi104 bash[21066]: cluster 2024-02-19T22:23:45.520795+0000 mgr.smithi044.ikbsam (mgr.14184) 1405 : cluster [DBG] pgmap v927: 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-02-19T22:23:47.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:47 smithi044 bash[16231]: cluster 2024-02-19T22:23:45.520795+0000 mgr.smithi044.ikbsam (mgr.14184) 1405 : cluster [DBG] pgmap v927: 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-02-19T22:23:47.621 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:47.621 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:48.315 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:49.316 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:49 smithi104 bash[21066]: cluster 2024-02-19T22:23:47.521750+0000 mgr.smithi044.ikbsam (mgr.14184) 1406 : 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-02-19T22:23:49.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:49 smithi104 bash[21066]: audit 2024-02-19T22:23:47.607039+0000 mgr.smithi044.ikbsam (mgr.14184) 1407 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:49 smithi044 bash[16231]: cluster 2024-02-19T22:23:47.521750+0000 mgr.smithi044.ikbsam (mgr.14184) 1406 : 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-02-19T22:23:49.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:49 smithi044 bash[16231]: audit 2024-02-19T22:23:47.607039+0000 mgr.smithi044.ikbsam (mgr.14184) 1407 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:51.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:51 smithi044 bash[16231]: cluster 2024-02-19T22:23:49.522839+0000 mgr.smithi044.ikbsam (mgr.14184) 1408 : 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-02-19T22:23:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:51 smithi104 bash[21066]: cluster 2024-02-19T22:23:49.522839+0000 mgr.smithi044.ikbsam (mgr.14184) 1408 : 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-02-19T22:23:52.804 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:52.804 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:53.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:53 smithi044 bash[16231]: cluster 2024-02-19T22:23:51.524677+0000 mgr.smithi044.ikbsam (mgr.14184) 1409 : 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-02-19T22:23:53.452 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:53.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:53 smithi104 bash[21066]: cluster 2024-02-19T22:23:51.524677+0000 mgr.smithi044.ikbsam (mgr.14184) 1409 : 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-02-19T22:23:54.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:54 smithi044 bash[16231]: audit 2024-02-19T22:23:52.794410+0000 mgr.smithi044.ikbsam (mgr.14184) 1410 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:54.453 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:23:54.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:54 smithi104 bash[21066]: audit 2024-02-19T22:23:52.794410+0000 mgr.smithi044.ikbsam (mgr.14184) 1410 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:55.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:55 smithi044 bash[16231]: cluster 2024-02-19T22:23:53.526512+0000 mgr.smithi044.ikbsam (mgr.14184) 1411 : cluster [DBG] pgmap v931: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:55.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:55 smithi104 bash[21066]: cluster 2024-02-19T22:23:53.526512+0000 mgr.smithi044.ikbsam (mgr.14184) 1411 : cluster [DBG] pgmap v931: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:23:57.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:57 smithi044 bash[16231]: cluster 2024-02-19T22:23:55.528401+0000 mgr.smithi044.ikbsam (mgr.14184) 1412 : cluster [DBG] pgmap v932: 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-02-19T22:23:57.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:57 smithi104 bash[21066]: cluster 2024-02-19T22:23:55.528401+0000 mgr.smithi044.ikbsam (mgr.14184) 1412 : cluster [DBG] pgmap v932: 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-02-19T22:23:57.827 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:23:57.828 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:23:58.490 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:58 smithi044 bash[16231]: cluster 2024-02-19T22:23:57.529805+0000 mgr.smithi044.ikbsam (mgr.14184) 1413 : 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-02-19T22:23:58.490 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:23:58 smithi044 bash[16231]: audit 2024-02-19T22:23:57.810851+0000 mgr.smithi044.ikbsam (mgr.14184) 1414 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:58.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:23:58.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:58 smithi104 bash[21066]: cluster 2024-02-19T22:23:57.529805+0000 mgr.smithi044.ikbsam (mgr.14184) 1413 : 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-02-19T22:23:58.630 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:23:58 smithi104 bash[21066]: audit 2024-02-19T22:23:57.810851+0000 mgr.smithi044.ikbsam (mgr.14184) 1414 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:23:59.523 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:00.865 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:00 smithi044 bash[16231]: cluster 2024-02-19T22:23:59.531535+0000 mgr.smithi044.ikbsam (mgr.14184) 1415 : 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-02-19T22:24:00.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:00 smithi104 bash[21066]: cluster 2024-02-19T22:23:59.531535+0000 mgr.smithi044.ikbsam (mgr.14184) 1415 : 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-02-19T22:24:02.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:02 smithi104 bash[21066]: cluster 2024-02-19T22:24:01.533463+0000 mgr.smithi044.ikbsam (mgr.14184) 1416 : 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-02-19T22:24:02.907 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:02.907 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:02.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:02 smithi044 bash[16231]: cluster 2024-02-19T22:24:01.533463+0000 mgr.smithi044.ikbsam (mgr.14184) 1416 : 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-02-19T22:24:03.594 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:03.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:03 smithi104 bash[21066]: audit 2024-02-19T22:24:02.897322+0000 mgr.smithi044.ikbsam (mgr.14184) 1417 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:03.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:03 smithi044 bash[16231]: audit 2024-02-19T22:24:02.897322+0000 mgr.smithi044.ikbsam (mgr.14184) 1417 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:04.595 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:04.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:04 smithi104 bash[21066]: cluster 2024-02-19T22:24:03.535248+0000 mgr.smithi044.ikbsam (mgr.14184) 1418 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:04.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:04 smithi044 bash[16231]: cluster 2024-02-19T22:24:03.535248+0000 mgr.smithi044.ikbsam (mgr.14184) 1418 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:06.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:06 smithi104 bash[21066]: cluster 2024-02-19T22:24:05.537292+0000 mgr.smithi044.ikbsam (mgr.14184) 1419 : cluster [DBG] pgmap v937: 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-02-19T22:24:06.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:06 smithi044 bash[16231]: cluster 2024-02-19T22:24:05.537292+0000 mgr.smithi044.ikbsam (mgr.14184) 1419 : cluster [DBG] pgmap v937: 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-02-19T22:24:08.059 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:08.059 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:08.740 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:08.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:08 smithi104 bash[21066]: cluster 2024-02-19T22:24:07.538916+0000 mgr.smithi044.ikbsam (mgr.14184) 1420 : 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-02-19T22:24:08.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:08 smithi104 bash[21066]: audit 2024-02-19T22:24:08.049466+0000 mgr.smithi044.ikbsam (mgr.14184) 1421 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:08.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:08 smithi044 bash[16231]: cluster 2024-02-19T22:24:07.538916+0000 mgr.smithi044.ikbsam (mgr.14184) 1420 : 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-02-19T22:24:08.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:08 smithi044 bash[16231]: audit 2024-02-19T22:24:08.049466+0000 mgr.smithi044.ikbsam (mgr.14184) 1421 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:09.741 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:10.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:10 smithi044 bash[16231]: cluster 2024-02-19T22:24:09.540583+0000 mgr.smithi044.ikbsam (mgr.14184) 1422 : 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-02-19T22:24:11.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:10 smithi104 bash[21066]: cluster 2024-02-19T22:24:09.540583+0000 mgr.smithi044.ikbsam (mgr.14184) 1422 : 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-02-19T22:24:12.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:12 smithi044 bash[16231]: cluster 2024-02-19T22:24:11.542323+0000 mgr.smithi044.ikbsam (mgr.14184) 1423 : 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-02-19T22:24:13.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:12 smithi104 bash[21066]: cluster 2024-02-19T22:24:11.542323+0000 mgr.smithi044.ikbsam (mgr.14184) 1423 : 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-02-19T22:24:13.149 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:13.149 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:13.823 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:13.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:13 smithi044 bash[16231]: audit 2024-02-19T22:24:13.140037+0000 mgr.smithi044.ikbsam (mgr.14184) 1424 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:14.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:13 smithi104 bash[21066]: audit 2024-02-19T22:24:13.140037+0000 mgr.smithi044.ikbsam (mgr.14184) 1424 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:14.824 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:14.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:14 smithi044 bash[16231]: cluster 2024-02-19T22:24:13.544278+0000 mgr.smithi044.ikbsam (mgr.14184) 1425 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:15.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:14 smithi104 bash[21066]: cluster 2024-02-19T22:24:13.544278+0000 mgr.smithi044.ikbsam (mgr.14184) 1425 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:17.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:16 smithi104 bash[21066]: cluster 2024-02-19T22:24:15.546328+0000 mgr.smithi044.ikbsam (mgr.14184) 1426 : cluster [DBG] pgmap v942: 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-02-19T22:24:17.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:16 smithi044 bash[16231]: cluster 2024-02-19T22:24:15.546328+0000 mgr.smithi044.ikbsam (mgr.14184) 1426 : cluster [DBG] pgmap v942: 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-02-19T22:24:18.219 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:18.219 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:18.855 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:19.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:18 smithi104 bash[21066]: cluster 2024-02-19T22:24:17.547778+0000 mgr.smithi044.ikbsam (mgr.14184) 1427 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:19.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:18 smithi044 bash[16231]: cluster 2024-02-19T22:24:17.547778+0000 mgr.smithi044.ikbsam (mgr.14184) 1427 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:19.856 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:20.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:19 smithi104 bash[21066]: audit 2024-02-19T22:24:18.204182+0000 mgr.smithi044.ikbsam (mgr.14184) 1428 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:20.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:19 smithi044 bash[16231]: audit 2024-02-19T22:24:18.204182+0000 mgr.smithi044.ikbsam (mgr.14184) 1428 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:21.082 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:20 smithi044 bash[16231]: cluster 2024-02-19T22:24:19.549416+0000 mgr.smithi044.ikbsam (mgr.14184) 1429 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:20 smithi104 bash[21066]: cluster 2024-02-19T22:24:19.549416+0000 mgr.smithi044.ikbsam (mgr.14184) 1429 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:23.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:22 smithi104 bash[21066]: cluster 2024-02-19T22:24:21.551115+0000 mgr.smithi044.ikbsam (mgr.14184) 1430 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:23.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:22 smithi044 bash[16231]: cluster 2024-02-19T22:24:21.551115+0000 mgr.smithi044.ikbsam (mgr.14184) 1430 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:23.185 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:23.185 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:23.863 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:24.864 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:24 smithi104 bash[21066]: audit 2024-02-19T22:24:23.175251+0000 mgr.smithi044.ikbsam (mgr.14184) 1431 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:25.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:24 smithi104 bash[21066]: cluster 2024-02-19T22:24:23.552877+0000 mgr.smithi044.ikbsam (mgr.14184) 1432 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:25.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:24 smithi044 bash[16231]: audit 2024-02-19T22:24:23.175251+0000 mgr.smithi044.ikbsam (mgr.14184) 1431 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:25.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:24 smithi044 bash[16231]: cluster 2024-02-19T22:24:23.552877+0000 mgr.smithi044.ikbsam (mgr.14184) 1432 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:24:27.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:26 smithi104 bash[21066]: cluster 2024-02-19T22:24:25.554812+0000 mgr.smithi044.ikbsam (mgr.14184) 1433 : cluster [DBG] pgmap v947: 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-02-19T22:24:27.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:26 smithi044 bash[16231]: cluster 2024-02-19T22:24:25.554812+0000 mgr.smithi044.ikbsam (mgr.14184) 1433 : cluster [DBG] pgmap v947: 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-02-19T22:24:28.316 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:28.316 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:29.027 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:28 smithi044 bash[16231]: cluster 2024-02-19T22:24:27.556254+0000 mgr.smithi044.ikbsam (mgr.14184) 1434 : 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-02-19T22:24:29.028 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:29.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:28 smithi104 bash[21066]: cluster 2024-02-19T22:24:27.556254+0000 mgr.smithi044.ikbsam (mgr.14184) 1434 : 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-02-19T22:24:30.030 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:30.042 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:29 smithi044 bash[16231]: audit 2024-02-19T22:24:28.298771+0000 mgr.smithi044.ikbsam (mgr.14184) 1435 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:29 smithi104 bash[21066]: audit 2024-02-19T22:24:28.298771+0000 mgr.smithi044.ikbsam (mgr.14184) 1435 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:31.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:30 smithi104 bash[21066]: cluster 2024-02-19T22:24:29.557964+0000 mgr.smithi044.ikbsam (mgr.14184) 1436 : 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-02-19T22:24:31.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:30 smithi044 bash[16231]: cluster 2024-02-19T22:24:29.557964+0000 mgr.smithi044.ikbsam (mgr.14184) 1436 : 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-02-19T22:24:31.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:31 smithi044 bash[16231]: audit 2024-02-19T22:24:31.513747+0000 mon.smithi044 (mon.0) 1032 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:24:32.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:31 smithi104 bash[21066]: audit 2024-02-19T22:24:31.513747+0000 mon.smithi044 (mon.0) 1032 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:24:33.101 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:32 smithi044 bash[16231]: cluster 2024-02-19T22:24:31.559111+0000 mgr.smithi044.ikbsam (mgr.14184) 1437 : 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-02-19T22:24:33.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:32 smithi104 bash[21066]: cluster 2024-02-19T22:24:31.559111+0000 mgr.smithi044.ikbsam (mgr.14184) 1437 : 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-02-19T22:24:33.545 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:33.545 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:14:09.218207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:14:09.218424Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:14:09.218636Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:14:09.217979Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:14:09.217643Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:14:09.220111Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:14:09.218846Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:14:09.219058Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:14:09.219899Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:34.200 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:35.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:34 smithi104 bash[21066]: audit 2024-02-19T22:24:33.535597+0000 mgr.smithi044.ikbsam (mgr.14184) 1438 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:35.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:34 smithi104 bash[21066]: cluster 2024-02-19T22:24:33.560901+0000 mgr.smithi044.ikbsam (mgr.14184) 1439 : 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-02-19T22:24:35.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:34 smithi044 bash[16231]: audit 2024-02-19T22:24:33.535597+0000 mgr.smithi044.ikbsam (mgr.14184) 1438 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:35.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:34 smithi044 bash[16231]: cluster 2024-02-19T22:24:33.560901+0000 mgr.smithi044.ikbsam (mgr.14184) 1439 : 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-02-19T22:24:35.201 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:36.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:36 smithi044 bash[16231]: cluster 2024-02-19T22:24:35.562856+0000 mgr.smithi044.ikbsam (mgr.14184) 1440 : 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-02-19T22:24:37.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:36 smithi104 bash[21066]: cluster 2024-02-19T22:24:35.562856+0000 mgr.smithi044.ikbsam (mgr.14184) 1440 : 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-02-19T22:24:38.400 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:38.400 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:22:23.325420Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.crtavs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: cluster 2024-02-19T22:24:37.564312+0000 mgr.smithi044.ikbsam (mgr.14184) 1441 : 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-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: audit 2024-02-19T22:24:38.295652+0000 mon.smithi044 (mon.0) 1033 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: audit 2024-02-19T22:24:38.601255+0000 mon.smithi044 (mon.0) 1034 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: audit 2024-02-19T22:24:38.602734+0000 mon.smithi044 (mon.0) 1035 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: audit 2024-02-19T22:24:38.611324+0000 mon.smithi044 (mon.0) 1036 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: audit 2024-02-19T22:24:38.619187+0000 mon.smithi044 (mon.0) 1037 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:24:39.114 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:38 smithi044 bash[16231]: audit 2024-02-19T22:24:38.633243+0000 mon.smithi044 (mon.0) 1038 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:39.115 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:39.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: cluster 2024-02-19T22:24:37.564312+0000 mgr.smithi044.ikbsam (mgr.14184) 1441 : 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-02-19T22:24:39.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: audit 2024-02-19T22:24:38.295652+0000 mon.smithi044 (mon.0) 1033 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:39.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: audit 2024-02-19T22:24:38.601255+0000 mon.smithi044 (mon.0) 1034 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:24:39.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: audit 2024-02-19T22:24:38.602734+0000 mon.smithi044 (mon.0) 1035 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:24:39.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: audit 2024-02-19T22:24:38.611324+0000 mon.smithi044 (mon.0) 1036 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:39.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: audit 2024-02-19T22:24:38.619187+0000 mon.smithi044 (mon.0) 1037 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:24:39.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:38 smithi104 bash[21066]: audit 2024-02-19T22:24:38.633243+0000 mon.smithi044 (mon.0) 1038 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:40.116 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:40.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:39 smithi044 bash[16231]: audit 2024-02-19T22:24:38.383023+0000 mgr.smithi044.ikbsam (mgr.14184) 1442 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:40.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:39 smithi044 bash[16231]: cluster 2024-02-19T22:24:38.612207+0000 mgr.smithi044.ikbsam (mgr.14184) 1443 : cluster [DBG] pgmap v954: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:24:40.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:39 smithi044 bash[16231]: cephadm 2024-02-19T22:24:38.639769+0000 mgr.smithi044.ikbsam (mgr.14184) 1444 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.chlpqg on smithi104 2024-02-19T22:24:40.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:39 smithi044 bash[16231]: cluster 2024-02-19T22:24:39.608050+0000 mon.smithi044 (mon.0) 1039 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:24:40.128 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:39 smithi044 bash[16231]: cluster 2024-02-19T22:24:39.608118+0000 mon.smithi044 (mon.0) 1040 : cluster [INF] Cluster is now healthy 2024-02-19T22:24:40.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:39 smithi104 bash[21066]: audit 2024-02-19T22:24:38.383023+0000 mgr.smithi044.ikbsam (mgr.14184) 1442 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:40.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:39 smithi104 bash[21066]: cluster 2024-02-19T22:24:38.612207+0000 mgr.smithi044.ikbsam (mgr.14184) 1443 : cluster [DBG] pgmap v954: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:24:40.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:39 smithi104 bash[21066]: cephadm 2024-02-19T22:24:38.639769+0000 mgr.smithi044.ikbsam (mgr.14184) 1444 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.chlpqg on smithi104 2024-02-19T22:24:40.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:39 smithi104 bash[21066]: cluster 2024-02-19T22:24:39.608050+0000 mon.smithi044 (mon.0) 1039 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:24:40.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:39 smithi104 bash[21066]: cluster 2024-02-19T22:24:39.608118+0000 mon.smithi044 (mon.0) 1040 : cluster [INF] Cluster is now healthy 2024-02-19T22:24:41.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:41 smithi044 bash[16231]: cluster 2024-02-19T22:24:40.613821+0000 mgr.smithi044.ikbsam (mgr.14184) 1445 : cluster [DBG] pgmap v955: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:24:42.024 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:41 smithi104 bash[21066]: cluster 2024-02-19T22:24:40.613821+0000 mgr.smithi044.ikbsam (mgr.14184) 1445 : cluster [DBG] pgmap v955: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:24:43.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:42 smithi104 bash[21066]: audit 2024-02-19T22:24:42.433640+0000 mon.smithi044 (mon.0) 1041 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.chlpqg"}]: dispatch 2024-02-19T22:24:43.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:42 smithi044 bash[16231]: audit 2024-02-19T22:24:42.433640+0000 mon.smithi044 (mon.0) 1041 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.chlpqg"}]: dispatch 2024-02-19T22:24:43.632 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:43.632 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:27.493956Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.pynnpi on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-pynnpi\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.pynnpi\nDeploy daemon haproxy.nfs.foo.smithi104.pynnpi ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.499578Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.omribn on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-omribn\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.omribn\nDeploy daemon haproxy.nfs.foo.smithi044.omribn ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:23:31.503509Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.dvpfqm on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: cephadm 2024-02-19T22:24:42.432494+0000 mgr.smithi044.ikbsam (mgr.14184) 1446 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.chlpqg ... 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:44.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.chlpqg ... 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:44.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: cephadm 2024-02-19T22:24:42.432959+0000 mgr.smithi044.ikbsam (mgr.14184) 1447 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: cephadm 2024-02-19T22:24:42.435329+0000 mgr.smithi044.ikbsam (mgr.14184) 1448 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.chlpqg ... 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:44.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:44.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: cephadm 2024-02-19T22:24:42.440207+0000 mgr.smithi044.ikbsam (mgr.14184) 1449 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.ozqxnt on smithi044 2024-02-19T22:24:44.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: cluster 2024-02-19T22:24:42.614874+0000 mgr.smithi044.ikbsam (mgr.14184) 1450 : cluster [DBG] pgmap v956: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:24:44.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:43 smithi104 bash[21066]: audit 2024-02-19T22:24:43.660962+0000 mon.smithi044 (mon.0) 1042 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: cephadm 2024-02-19T22:24:42.432494+0000 mgr.smithi044.ikbsam (mgr.14184) 1446 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.chlpqg ... 2024-02-19T22:24:44.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.chlpqg ... 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: cephadm 2024-02-19T22:24:42.432959+0000 mgr.smithi044.ikbsam (mgr.14184) 1447 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: cephadm 2024-02-19T22:24:42.435329+0000 mgr.smithi044.ikbsam (mgr.14184) 1448 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.chlpqg ... 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:44.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:44.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:44.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:44.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: cephadm 2024-02-19T22:24:42.440207+0000 mgr.smithi044.ikbsam (mgr.14184) 1449 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.ozqxnt on smithi044 2024-02-19T22:24:44.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: cluster 2024-02-19T22:24:42.614874+0000 mgr.smithi044.ikbsam (mgr.14184) 1450 : cluster [DBG] pgmap v956: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 92 B/s rd, 0 op/s 2024-02-19T22:24:44.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:43 smithi044 bash[16231]: audit 2024-02-19T22:24:43.660962+0000 mon.smithi044 (mon.0) 1042 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:44.328 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:45.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:44 smithi104 bash[21066]: audit 2024-02-19T22:24:43.614941+0000 mgr.smithi044.ikbsam (mgr.14184) 1451 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:45.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:44 smithi044 bash[16231]: audit 2024-02-19T22:24:43.614941+0000 mgr.smithi044.ikbsam (mgr.14184) 1451 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:45.328 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:46.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:45 smithi104 bash[21066]: cluster 2024-02-19T22:24:44.616394+0000 mgr.smithi044.ikbsam (mgr.14184) 1452 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 185 B/s rd, 0 op/s 2024-02-19T22:24:46.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:45 smithi044 bash[16231]: cluster 2024-02-19T22:24:44.616394+0000 mgr.smithi044.ikbsam (mgr.14184) 1452 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 185 B/s rd, 0 op/s 2024-02-19T22:24:47.011 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:46 smithi044 bash[16231]: audit 2024-02-19T22:24:46.539390+0000 mon.smithi044 (mon.0) 1043 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.ozqxnt"}]: dispatch 2024-02-19T22:24:47.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:46 smithi104 bash[21066]: audit 2024-02-19T22:24:46.539390+0000 mon.smithi044 (mon.0) 1043 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.ozqxnt"}]: dispatch 2024-02-19T22:24:48.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cephadm 2024-02-19T22:24:46.538675+0000 mgr.smithi044.ikbsam (mgr.14184) 1453 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ozqxnt ... 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ozqxnt ... 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:48.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cephadm 2024-02-19T22:24:46.538953+0000 mgr.smithi044.ikbsam (mgr.14184) 1454 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cephadm 2024-02-19T22:24:46.540385+0000 mgr.smithi044.ikbsam (mgr.14184) 1455 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.ozqxnt ... 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:48.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cephadm 2024-02-19T22:24:46.542560+0000 mgr.smithi044.ikbsam (mgr.14184) 1456 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:24:48.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cephadm 2024-02-19T22:24:46.544373+0000 mgr.smithi044.ikbsam (mgr.14184) 1457 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:24:48.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cluster 2024-02-19T22:24:46.545630+0000 mgr.smithi044.ikbsam (mgr.14184) 1458 : cluster [DBG] pgmap v958: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-19T22:24:48.133 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:47 smithi104 bash[21066]: cluster 2024-02-19T22:24:46.780988+0000 mon.smithi044 (mon.0) 1044 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:24:48.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cephadm 2024-02-19T22:24:46.538675+0000 mgr.smithi044.ikbsam (mgr.14184) 1453 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:48.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ozqxnt ... 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.158 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ozqxnt ... 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cephadm 2024-02-19T22:24:46.538953+0000 mgr.smithi044.ikbsam (mgr.14184) 1454 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cephadm 2024-02-19T22:24:46.540385+0000 mgr.smithi044.ikbsam (mgr.14184) 1455 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt 2024-02-19T22:24:48.159 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.ozqxnt ... 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cephadm 2024-02-19T22:24:46.542560+0000 mgr.smithi044.ikbsam (mgr.14184) 1456 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cephadm 2024-02-19T22:24:46.544373+0000 mgr.smithi044.ikbsam (mgr.14184) 1457 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cluster 2024-02-19T22:24:46.545630+0000 mgr.smithi044.ikbsam (mgr.14184) 1458 : cluster [DBG] pgmap v958: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-19T22:24:48.160 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:47 smithi044 bash[16231]: cluster 2024-02-19T22:24:46.780988+0000 mon.smithi044 (mon.0) 1044 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:24:49.061 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:49.061 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:49.784 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:50.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:49 smithi104 bash[21066]: cluster 2024-02-19T22:24:48.546758+0000 mgr.smithi044.ikbsam (mgr.14184) 1459 : cluster [DBG] pgmap v959: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-19T22:24:50.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:49 smithi104 bash[21066]: audit 2024-02-19T22:24:49.047277+0000 mgr.smithi044.ikbsam (mgr.14184) 1460 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:50.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:49 smithi044 bash[16231]: cluster 2024-02-19T22:24:48.546758+0000 mgr.smithi044.ikbsam (mgr.14184) 1459 : cluster [DBG] pgmap v959: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-19T22:24:50.157 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:49 smithi044 bash[16231]: audit 2024-02-19T22:24:49.047277+0000 mgr.smithi044.ikbsam (mgr.14184) 1460 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:50.784 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:51.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:51 smithi104 bash[21066]: audit 2024-02-19T22:24:50.121271+0000 mon.smithi044 (mon.0) 1045 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:51.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:51 smithi044 bash[16231]: audit 2024-02-19T22:24:50.121271+0000 mon.smithi044 (mon.0) 1045 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:24:52.319 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:52 smithi044 bash[16231]: cluster 2024-02-19T22:24:50.548573+0000 mgr.smithi044.ikbsam (mgr.14184) 1461 : 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-02-19T22:24:52.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:52 smithi104 bash[21066]: cluster 2024-02-19T22:24:50.548573+0000 mgr.smithi044.ikbsam (mgr.14184) 1461 : 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-02-19T22:24:54.280 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:54.280 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:24:54.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:54 smithi044 bash[16231]: cluster 2024-02-19T22:24:52.550088+0000 mgr.smithi044.ikbsam (mgr.14184) 1462 : 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-02-19T22:24:54.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:54 smithi104 bash[21066]: cluster 2024-02-19T22:24:52.550088+0000 mgr.smithi044.ikbsam (mgr.14184) 1462 : 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-02-19T22:24:54.895 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:24:55.896 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:24:56.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:56 smithi044 bash[16231]: audit 2024-02-19T22:24:54.262686+0000 mgr.smithi044.ikbsam (mgr.14184) 1463 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:56.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:56 smithi044 bash[16231]: cluster 2024-02-19T22:24:54.551749+0000 mgr.smithi044.ikbsam (mgr.14184) 1464 : cluster [DBG] pgmap v962: 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-02-19T22:24:56.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:56 smithi104 bash[21066]: audit 2024-02-19T22:24:54.262686+0000 mgr.smithi044.ikbsam (mgr.14184) 1463 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:24:56.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:56 smithi104 bash[21066]: cluster 2024-02-19T22:24:54.551749+0000 mgr.smithi044.ikbsam (mgr.14184) 1464 : cluster [DBG] pgmap v962: 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-02-19T22:24:58.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:58 smithi044 bash[16231]: cluster 2024-02-19T22:24:56.553075+0000 mgr.smithi044.ikbsam (mgr.14184) 1465 : 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-02-19T22:24:58.629 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:58 smithi104 bash[21066]: cluster 2024-02-19T22:24:56.553075+0000 mgr.smithi044.ikbsam (mgr.14184) 1465 : 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-02-19T22:24:59.290 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:24:59.290 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:00.046 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:59 smithi044 bash[16231]: cluster 2024-02-19T22:24:58.554801+0000 mgr.smithi044.ikbsam (mgr.14184) 1466 : 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-02-19T22:25:00.047 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:24:59 smithi044 bash[16231]: audit 2024-02-19T22:24:58.662364+0000 mon.smithi044 (mon.0) 1046 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:00.048 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:00.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:59 smithi104 bash[21066]: cluster 2024-02-19T22:24:58.554801+0000 mgr.smithi044.ikbsam (mgr.14184) 1466 : 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-02-19T22:25:00.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:24:59 smithi104 bash[21066]: audit 2024-02-19T22:24:58.662364+0000 mon.smithi044 (mon.0) 1046 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:01.045 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:00 smithi104 bash[21066]: audit 2024-02-19T22:24:59.272746+0000 mgr.smithi044.ikbsam (mgr.14184) 1467 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:01.049 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:01.061 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:00 smithi044 bash[16231]: audit 2024-02-19T22:24:59.272746+0000 mgr.smithi044.ikbsam (mgr.14184) 1467 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:01 smithi104 bash[21066]: cluster 2024-02-19T22:25:00.556668+0000 mgr.smithi044.ikbsam (mgr.14184) 1468 : 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-02-19T22:25:02.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:01 smithi044 bash[16231]: cluster 2024-02-19T22:25:00.556668+0000 mgr.smithi044.ikbsam (mgr.14184) 1468 : 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-02-19T22:25:04.084 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:03 smithi044 bash[16231]: cluster 2024-02-19T22:25:02.558164+0000 mgr.smithi044.ikbsam (mgr.14184) 1469 : 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-02-19T22:25:04.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:03 smithi104 bash[21066]: cluster 2024-02-19T22:25:02.558164+0000 mgr.smithi044.ikbsam (mgr.14184) 1469 : 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-02-19T22:25:04.515 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:04.515 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:05.234 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:06.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:05 smithi104 bash[21066]: audit 2024-02-19T22:25:04.503023+0000 mgr.smithi044.ikbsam (mgr.14184) 1470 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:06.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:05 smithi104 bash[21066]: cluster 2024-02-19T22:25:04.559812+0000 mgr.smithi044.ikbsam (mgr.14184) 1471 : 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-02-19T22:25:06.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:05 smithi044 bash[16231]: audit 2024-02-19T22:25:04.503023+0000 mgr.smithi044.ikbsam (mgr.14184) 1470 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:06.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:05 smithi044 bash[16231]: cluster 2024-02-19T22:25:04.559812+0000 mgr.smithi044.ikbsam (mgr.14184) 1471 : 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-02-19T22:25:06.235 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:08.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:07 smithi104 bash[21066]: cluster 2024-02-19T22:25:06.561506+0000 mgr.smithi044.ikbsam (mgr.14184) 1472 : 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-02-19T22:25:08.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:07 smithi044 bash[16231]: cluster 2024-02-19T22:25:06.561506+0000 mgr.smithi044.ikbsam (mgr.14184) 1472 : 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-02-19T22:25:09.660 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:09.660 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:10.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:09 smithi104 bash[21066]: cluster 2024-02-19T22:25:08.563325+0000 mgr.smithi044.ikbsam (mgr.14184) 1473 : 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-02-19T22:25:10.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:09 smithi044 bash[16231]: cluster 2024-02-19T22:25:08.563325+0000 mgr.smithi044.ikbsam (mgr.14184) 1473 : 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-02-19T22:25:10.339 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:11.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:10 smithi104 bash[21066]: audit 2024-02-19T22:25:09.650460+0000 mgr.smithi044.ikbsam (mgr.14184) 1474 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:11.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:10 smithi044 bash[16231]: audit 2024-02-19T22:25:09.650460+0000 mgr.smithi044.ikbsam (mgr.14184) 1474 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:11.340 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:12.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:11 smithi104 bash[21066]: cluster 2024-02-19T22:25:10.565364+0000 mgr.smithi044.ikbsam (mgr.14184) 1475 : 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-02-19T22:25:12.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:11 smithi044 bash[16231]: cluster 2024-02-19T22:25:10.565364+0000 mgr.smithi044.ikbsam (mgr.14184) 1475 : 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-02-19T22:25:14.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:13 smithi104 bash[21066]: cluster 2024-02-19T22:25:12.567003+0000 mgr.smithi044.ikbsam (mgr.14184) 1476 : 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-02-19T22:25:14.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:13 smithi044 bash[16231]: cluster 2024-02-19T22:25:12.567003+0000 mgr.smithi044.ikbsam (mgr.14184) 1476 : 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-02-19T22:25:14.809 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:14.809 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:15.476 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:16.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:15 smithi104 bash[21066]: cluster 2024-02-19T22:25:14.567872+0000 mgr.smithi044.ikbsam (mgr.14184) 1477 : 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-02-19T22:25:16.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:15 smithi104 bash[21066]: audit 2024-02-19T22:25:14.798744+0000 mgr.smithi044.ikbsam (mgr.14184) 1478 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:16.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:15 smithi044 bash[16231]: cluster 2024-02-19T22:25:14.567872+0000 mgr.smithi044.ikbsam (mgr.14184) 1477 : 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-02-19T22:25:16.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:15 smithi044 bash[16231]: audit 2024-02-19T22:25:14.798744+0000 mgr.smithi044.ikbsam (mgr.14184) 1478 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:16.477 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:17.925 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:17 smithi044 bash[16231]: cluster 2024-02-19T22:25:16.569603+0000 mgr.smithi044.ikbsam (mgr.14184) 1479 : 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-02-19T22:25:18.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:17 smithi104 bash[21066]: cluster 2024-02-19T22:25:16.569603+0000 mgr.smithi044.ikbsam (mgr.14184) 1479 : 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-02-19T22:25:19.924 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:19.924 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:19.998 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:19 smithi044 bash[16231]: cluster 2024-02-19T22:25:18.571269+0000 mgr.smithi044.ikbsam (mgr.14184) 1480 : 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-02-19T22:25:20.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:19 smithi104 bash[21066]: cluster 2024-02-19T22:25:18.571269+0000 mgr.smithi044.ikbsam (mgr.14184) 1480 : 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-02-19T22:25:20.661 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:21.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:20 smithi104 bash[21066]: audit 2024-02-19T22:25:19.907268+0000 mgr.smithi044.ikbsam (mgr.14184) 1481 : audit [DBG] from='client.15710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:21.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:20 smithi044 bash[16231]: audit 2024-02-19T22:25:19.907268+0000 mgr.smithi044.ikbsam (mgr.14184) 1481 : audit [DBG] from='client.15710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:21.662 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:22.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:21 smithi104 bash[21066]: cluster 2024-02-19T22:25:20.573372+0000 mgr.smithi044.ikbsam (mgr.14184) 1482 : 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-02-19T22:25:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:21 smithi044 bash[16231]: cluster 2024-02-19T22:25:20.573372+0000 mgr.smithi044.ikbsam (mgr.14184) 1482 : 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-02-19T22:25:24.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:23 smithi104 bash[21066]: cluster 2024-02-19T22:25:22.574894+0000 mgr.smithi044.ikbsam (mgr.14184) 1483 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:24.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:23 smithi044 bash[16231]: cluster 2024-02-19T22:25:22.574894+0000 mgr.smithi044.ikbsam (mgr.14184) 1483 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:25.141 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:25.141 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:25.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:25 smithi104 bash[21066]: cluster 2024-02-19T22:25:24.576709+0000 mgr.smithi044.ikbsam (mgr.14184) 1484 : cluster [DBG] pgmap v977: 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-02-19T22:25:26.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:25 smithi104 bash[21066]: audit 2024-02-19T22:25:25.123992+0000 mgr.smithi044.ikbsam (mgr.14184) 1485 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:26.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:25 smithi044 bash[16231]: cluster 2024-02-19T22:25:24.576709+0000 mgr.smithi044.ikbsam (mgr.14184) 1484 : cluster [DBG] pgmap v977: 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-02-19T22:25:26.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:25 smithi044 bash[16231]: audit 2024-02-19T22:25:25.123992+0000 mgr.smithi044.ikbsam (mgr.14184) 1485 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:26.790 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:28.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:27 smithi104 bash[21066]: cluster 2024-02-19T22:25:26.578381+0000 mgr.smithi044.ikbsam (mgr.14184) 1486 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:28.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:27 smithi044 bash[16231]: cluster 2024-02-19T22:25:26.578381+0000 mgr.smithi044.ikbsam (mgr.14184) 1486 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:30.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:29 smithi104 bash[21066]: cluster 2024-02-19T22:25:28.580267+0000 mgr.smithi044.ikbsam (mgr.14184) 1487 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:30.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:29 smithi044 bash[16231]: cluster 2024-02-19T22:25:28.580267+0000 mgr.smithi044.ikbsam (mgr.14184) 1487 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:30.274 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:30.274 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:31.026 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:32.028 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:32.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:31 smithi104 bash[21066]: audit 2024-02-19T22:25:30.258324+0000 mgr.smithi044.ikbsam (mgr.14184) 1488 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:32.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:31 smithi104 bash[21066]: cluster 2024-02-19T22:25:30.582247+0000 mgr.smithi044.ikbsam (mgr.14184) 1489 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:32.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:31 smithi044 bash[16231]: audit 2024-02-19T22:25:30.258324+0000 mgr.smithi044.ikbsam (mgr.14184) 1488 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:32.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:31 smithi044 bash[16231]: cluster 2024-02-19T22:25:30.582247+0000 mgr.smithi044.ikbsam (mgr.14184) 1489 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:34.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:33 smithi104 bash[21066]: cluster 2024-02-19T22:25:32.583712+0000 mgr.smithi044.ikbsam (mgr.14184) 1490 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:34.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:33 smithi044 bash[16231]: cluster 2024-02-19T22:25:32.583712+0000 mgr.smithi044.ikbsam (mgr.14184) 1490 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:35.601 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:35.601 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:36.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:35 smithi104 bash[21066]: cluster 2024-02-19T22:25:34.585344+0000 mgr.smithi044.ikbsam (mgr.14184) 1491 : cluster [DBG] pgmap v982: 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-02-19T22:25:36.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:35 smithi044 bash[16231]: cluster 2024-02-19T22:25:34.585344+0000 mgr.smithi044.ikbsam (mgr.14184) 1491 : cluster [DBG] pgmap v982: 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-02-19T22:25:36.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:37.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:36 smithi044 bash[16231]: audit 2024-02-19T22:25:35.586935+0000 mgr.smithi044.ikbsam (mgr.14184) 1492 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:37.242 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:37.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:36 smithi104 bash[21066]: audit 2024-02-19T22:25:35.586935+0000 mgr.smithi044.ikbsam (mgr.14184) 1492 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:38.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:37 smithi044 bash[16231]: cluster 2024-02-19T22:25:36.587002+0000 mgr.smithi044.ikbsam (mgr.14184) 1493 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:38.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:37 smithi104 bash[21066]: cluster 2024-02-19T22:25:36.587002+0000 mgr.smithi044.ikbsam (mgr.14184) 1493 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:40.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:39 smithi044 bash[16231]: cluster 2024-02-19T22:25:38.589241+0000 mgr.smithi044.ikbsam (mgr.14184) 1494 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:40.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:39 smithi104 bash[21066]: cluster 2024-02-19T22:25:38.589241+0000 mgr.smithi044.ikbsam (mgr.14184) 1494 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:40.523 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:40.523 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:41.183 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:42.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:41 smithi044 bash[16231]: audit 2024-02-19T22:25:40.513989+0000 mgr.smithi044.ikbsam (mgr.14184) 1495 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:42.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:41 smithi044 bash[16231]: cluster 2024-02-19T22:25:40.590528+0000 mgr.smithi044.ikbsam (mgr.14184) 1496 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:42.184 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:42.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:41 smithi104 bash[21066]: audit 2024-02-19T22:25:40.513989+0000 mgr.smithi044.ikbsam (mgr.14184) 1495 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:42.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:41 smithi104 bash[21066]: cluster 2024-02-19T22:25:40.590528+0000 mgr.smithi044.ikbsam (mgr.14184) 1496 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:44.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:43 smithi104 bash[21066]: cluster 2024-02-19T22:25:42.591980+0000 mgr.smithi044.ikbsam (mgr.14184) 1497 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:44.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:43 smithi044 bash[16231]: cluster 2024-02-19T22:25:42.591980+0000 mgr.smithi044.ikbsam (mgr.14184) 1497 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:45.614 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:45.614 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:46.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:45 smithi044 bash[16231]: cluster 2024-02-19T22:25:44.593778+0000 mgr.smithi044.ikbsam (mgr.14184) 1498 : cluster [DBG] pgmap v987: 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-02-19T22:25:46.328 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:46.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:45 smithi104 bash[21066]: cluster 2024-02-19T22:25:44.593778+0000 mgr.smithi044.ikbsam (mgr.14184) 1498 : cluster [DBG] pgmap v987: 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-02-19T22:25:47.329 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:47.341 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:46 smithi044 bash[16231]: audit 2024-02-19T22:25:45.599957+0000 mgr.smithi044.ikbsam (mgr.14184) 1499 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:47.341 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:46 smithi044 bash[16231]: audit 2024-02-19T22:25:46.548173+0000 mon.smithi044 (mon.0) 1047 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:25:47.342 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:46 smithi044 bash[16231]: audit 2024-02-19T22:25:46.872334+0000 mon.smithi044 (mon.0) 1048 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:47.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:46 smithi104 bash[21066]: audit 2024-02-19T22:25:45.599957+0000 mgr.smithi044.ikbsam (mgr.14184) 1499 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:47.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:46 smithi104 bash[21066]: audit 2024-02-19T22:25:46.548173+0000 mon.smithi044 (mon.0) 1047 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:25:47.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:46 smithi104 bash[21066]: audit 2024-02-19T22:25:46.872334+0000 mon.smithi044 (mon.0) 1048 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:48.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:47 smithi104 bash[21066]: cluster 2024-02-19T22:25:46.595365+0000 mgr.smithi044.ikbsam (mgr.14184) 1500 : cluster [DBG] pgmap v988: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:48.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:47 smithi044 bash[16231]: cluster 2024-02-19T22:25:46.595365+0000 mgr.smithi044.ikbsam (mgr.14184) 1500 : cluster [DBG] pgmap v988: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:50.254 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:49 smithi044 bash[16231]: cluster 2024-02-19T22:25:48.597341+0000 mgr.smithi044.ikbsam (mgr.14184) 1501 : cluster [DBG] pgmap v989: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:50.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:49 smithi104 bash[21066]: cluster 2024-02-19T22:25:48.597341+0000 mgr.smithi044.ikbsam (mgr.14184) 1501 : cluster [DBG] pgmap v989: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:25:50.694 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:50.694 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:15:23.551165Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:15:23.551559Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:15:23.551842Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:15:23.552182Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:15:23.552714Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:15:23.552455Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:15:23.553818Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:51.457 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:52.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:51 smithi104 bash[21066]: cluster 2024-02-19T22:25:50.599189+0000 mgr.smithi044.ikbsam (mgr.14184) 1502 : 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-02-19T22:25:52.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:51 smithi104 bash[21066]: audit 2024-02-19T22:25:50.680668+0000 mgr.smithi044.ikbsam (mgr.14184) 1503 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:52.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:51 smithi044 bash[16231]: cluster 2024-02-19T22:25:50.599189+0000 mgr.smithi044.ikbsam (mgr.14184) 1502 : 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-02-19T22:25:52.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:51 smithi044 bash[16231]: audit 2024-02-19T22:25:50.680668+0000 mgr.smithi044.ikbsam (mgr.14184) 1503 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:52.458 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:53.740 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: audit 2024-02-19T22:25:52.434983+0000 mon.smithi044 (mon.0) 1049 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: cluster 2024-02-19T22:25:52.600585+0000 mgr.smithi044.ikbsam (mgr.14184) 1504 : 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-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: audit 2024-02-19T22:25:52.740946+0000 mon.smithi044 (mon.0) 1050 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: audit 2024-02-19T22:25:52.742526+0000 mon.smithi044 (mon.0) 1051 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: audit 2024-02-19T22:25:52.751686+0000 mon.smithi044 (mon.0) 1052 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: cluster 2024-02-19T22:25:52.752675+0000 mgr.smithi044.ikbsam (mgr.14184) 1505 : cluster [DBG] pgmap v992: 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-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: audit 2024-02-19T22:25:52.759639+0000 mon.smithi044 (mon.0) 1053 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: audit 2024-02-19T22:25:52.774480+0000 mon.smithi044 (mon.0) 1054 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:53.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:53 smithi044 bash[16231]: cephadm 2024-02-19T22:25:52.777732+0000 mgr.smithi044.ikbsam (mgr.14184) 1506 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.hmzscc on smithi104 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: audit 2024-02-19T22:25:52.434983+0000 mon.smithi044 (mon.0) 1049 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: cluster 2024-02-19T22:25:52.600585+0000 mgr.smithi044.ikbsam (mgr.14184) 1504 : 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-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: audit 2024-02-19T22:25:52.740946+0000 mon.smithi044 (mon.0) 1050 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: audit 2024-02-19T22:25:52.742526+0000 mon.smithi044 (mon.0) 1051 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: audit 2024-02-19T22:25:52.751686+0000 mon.smithi044 (mon.0) 1052 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: cluster 2024-02-19T22:25:52.752675+0000 mgr.smithi044.ikbsam (mgr.14184) 1505 : cluster [DBG] pgmap v992: 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-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: audit 2024-02-19T22:25:52.759639+0000 mon.smithi044 (mon.0) 1053 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: audit 2024-02-19T22:25:52.774480+0000 mon.smithi044 (mon.0) 1054 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:53.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:53 smithi104 bash[21066]: cephadm 2024-02-19T22:25:52.777732+0000 mgr.smithi044.ikbsam (mgr.14184) 1506 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.hmzscc on smithi104 2024-02-19T22:25:54.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:54 smithi104 bash[21066]: cluster 2024-02-19T22:25:53.430350+0000 mon.smithi044 (mon.0) 1055 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:25:54.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:54 smithi104 bash[21066]: cluster 2024-02-19T22:25:53.430418+0000 mon.smithi044 (mon.0) 1056 : cluster [INF] Cluster is now healthy 2024-02-19T22:25:54.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:54 smithi044 bash[16231]: cluster 2024-02-19T22:25:53.430350+0000 mon.smithi044 (mon.0) 1055 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:25:54.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:54 smithi044 bash[16231]: cluster 2024-02-19T22:25:53.430418+0000 mon.smithi044 (mon.0) 1056 : cluster [INF] Cluster is now healthy 2024-02-19T22:25:55.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:55 smithi104 bash[21066]: cluster 2024-02-19T22:25:54.754112+0000 mgr.smithi044.ikbsam (mgr.14184) 1507 : cluster [DBG] pgmap v993: 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-02-19T22:25:55.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:55 smithi044 bash[16231]: cluster 2024-02-19T22:25:54.754112+0000 mgr.smithi044.ikbsam (mgr.14184) 1507 : cluster [DBG] pgmap v993: 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-02-19T22:25:55.974 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:25:55.974 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:23:31.507215Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.rqnfyk on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:42.435036Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.chlpqg on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-chlpqg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.chlpqg\nDeploy daemon haproxy.nfs.foo.smithi104.chlpqg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.540249Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.ozqxnt on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-ozqxnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.ozqxnt\nDeploy daemon haproxy.nfs.foo.smithi044.ozqxnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:24:46.542435Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.kxhdnr on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:25:56.670 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:25:56.878 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:56 smithi104 bash[21066]: audit 2024-02-19T22:25:55.965090+0000 mgr.smithi044.ikbsam (mgr.14184) 1508 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:56.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:56 smithi044 bash[16231]: audit 2024-02-19T22:25:55.965090+0000 mgr.smithi044.ikbsam (mgr.14184) 1508 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:25:57.670 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: cephadm 2024-02-19T22:25:56.552961+0000 mgr.smithi044.ikbsam (mgr.14184) 1509 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.879 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.hmzscc ... 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.880 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.hmzscc ... 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: cephadm 2024-02-19T22:25:56.553539+0000 mgr.smithi044.ikbsam (mgr.14184) 1510 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: audit 2024-02-19T22:25:56.554094+0000 mon.smithi044 (mon.0) 1057 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.hmzscc"}]: dispatch 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: cephadm 2024-02-19T22:25:56.555512+0000 mgr.smithi044.ikbsam (mgr.14184) 1511 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:25:57.881 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.hmzscc ... 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: cephadm 2024-02-19T22:25:56.559270+0000 mgr.smithi044.ikbsam (mgr.14184) 1512 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.kyzxqu on smithi044 2024-02-19T22:25:57.882 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:57 smithi104 bash[21066]: cluster 2024-02-19T22:25:56.755275+0000 mgr.smithi044.ikbsam (mgr.14184) 1513 : cluster [DBG] pgmap v994: 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-02-19T22:25:57.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: cephadm 2024-02-19T22:25:56.552961+0000 mgr.smithi044.ikbsam (mgr.14184) 1509 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:25:57.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.907 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.hmzscc ... 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.908 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.909 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.hmzscc ... 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: cephadm 2024-02-19T22:25:56.553539+0000 mgr.smithi044.ikbsam (mgr.14184) 1510 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: audit 2024-02-19T22:25:56.554094+0000 mon.smithi044 (mon.0) 1057 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.hmzscc"}]: dispatch 2024-02-19T22:25:57.910 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: cephadm 2024-02-19T22:25:56.555512+0000 mgr.smithi044.ikbsam (mgr.14184) 1511 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.hmzscc ... 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: cephadm 2024-02-19T22:25:56.559270+0000 mgr.smithi044.ikbsam (mgr.14184) 1512 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.kyzxqu on smithi044 2024-02-19T22:25:57.911 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:57 smithi044 bash[16231]: cluster 2024-02-19T22:25:56.755275+0000 mgr.smithi044.ikbsam (mgr.14184) 1513 : cluster [DBG] pgmap v994: 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-02-19T22:25:59.957 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:59 smithi044 bash[16231]: audit 2024-02-19T22:25:58.663461+0000 mon.smithi044 (mon.0) 1058 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:25:59.957 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:25:59 smithi044 bash[16231]: cluster 2024-02-19T22:25:58.756097+0000 mgr.smithi044.ikbsam (mgr.14184) 1514 : cluster [DBG] pgmap v995: 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-02-19T22:26:00.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:59 smithi104 bash[21066]: audit 2024-02-19T22:25:58.663461+0000 mon.smithi044 (mon.0) 1058 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:26:00.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:25:59 smithi104 bash[21066]: cluster 2024-02-19T22:25:58.756097+0000 mgr.smithi044.ikbsam (mgr.14184) 1514 : cluster [DBG] pgmap v995: 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-02-19T22:26:00.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:00 smithi044 bash[16231]: audit 2024-02-19T22:26:00.687936+0000 mon.smithi044 (mon.0) 1059 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.kyzxqu"}]: dispatch 2024-02-19T22:26:01.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:00 smithi104 bash[21066]: audit 2024-02-19T22:26:00.687936+0000 mon.smithi044 (mon.0) 1059 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.kyzxqu"}]: dispatch 2024-02-19T22:26:01.440 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:01.440 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cephadm 2024-02-19T22:26:00.687096+0000 mgr.smithi044.ikbsam (mgr.14184) 1515 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.754 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.kyzxqu ... 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:26:01.755 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.kyzxqu ... 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:26:01.756 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cephadm 2024-02-19T22:26:00.687327+0000 mgr.smithi044.ikbsam (mgr.14184) 1516 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cephadm 2024-02-19T22:26:00.689514+0000 mgr.smithi044.ikbsam (mgr.14184) 1517 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.kyzxqu ... 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:26:01.757 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:01.758 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cephadm 2024-02-19T22:26:00.694212+0000 mgr.smithi044.ikbsam (mgr.14184) 1518 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:26:01.758 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cephadm 2024-02-19T22:26:00.697502+0000 mgr.smithi044.ikbsam (mgr.14184) 1519 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:26:01.758 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cluster 2024-02-19T22:26:00.701746+0000 mgr.smithi044.ikbsam (mgr.14184) 1520 : cluster [DBG] pgmap v996: 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-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cephadm 2024-02-19T22:26:00.687096+0000 mgr.smithi044.ikbsam (mgr.14184) 1515 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.kyzxqu ... 2024-02-19T22:26:02.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:26:02.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.kyzxqu ... 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cephadm 2024-02-19T22:26:00.687327+0000 mgr.smithi044.ikbsam (mgr.14184) 1516 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cephadm 2024-02-19T22:26:00.689514+0000 mgr.smithi044.ikbsam (mgr.14184) 1517 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu 2024-02-19T22:26:02.131 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.kyzxqu ... 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cephadm 2024-02-19T22:26:00.694212+0000 mgr.smithi044.ikbsam (mgr.14184) 1518 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cephadm 2024-02-19T22:26:00.697502+0000 mgr.smithi044.ikbsam (mgr.14184) 1519 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cluster 2024-02-19T22:26:00.701746+0000 mgr.smithi044.ikbsam (mgr.14184) 1520 : cluster [DBG] pgmap v996: 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-02-19T22:26:02.132 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:01 smithi104 bash[21066]: cluster 2024-02-19T22:26:00.754689+0000 mon.smithi044 (mon.0) 1060 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:26:02.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:01 smithi044 bash[16231]: cluster 2024-02-19T22:26:00.754689+0000 mon.smithi044 (mon.0) 1060 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:26:02.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:03.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:02 smithi104 bash[21066]: audit 2024-02-19T22:26:01.423600+0000 mgr.smithi044.ikbsam (mgr.14184) 1521 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:03.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:02 smithi044 bash[16231]: audit 2024-02-19T22:26:01.423600+0000 mgr.smithi044.ikbsam (mgr.14184) 1521 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:03.243 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:04.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:03 smithi104 bash[21066]: cluster 2024-02-19T22:26:02.703171+0000 mgr.smithi044.ikbsam (mgr.14184) 1522 : cluster [DBG] pgmap v997: 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-02-19T22:26:04.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:03 smithi044 bash[16231]: cluster 2024-02-19T22:26:02.703171+0000 mgr.smithi044.ikbsam (mgr.14184) 1522 : cluster [DBG] pgmap v997: 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-02-19T22:26:06.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:05 smithi104 bash[21066]: cluster 2024-02-19T22:26:04.705305+0000 mgr.smithi044.ikbsam (mgr.14184) 1523 : cluster [DBG] pgmap v998: 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-02-19T22:26:06.129 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:05 smithi104 bash[21066]: audit 2024-02-19T22:26:05.178595+0000 mon.smithi044 (mon.0) 1061 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:26:06.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:05 smithi044 bash[16231]: cluster 2024-02-19T22:26:04.705305+0000 mgr.smithi044.ikbsam (mgr.14184) 1523 : cluster [DBG] pgmap v998: 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-02-19T22:26:06.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:05 smithi044 bash[16231]: audit 2024-02-19T22:26:05.178595+0000 mon.smithi044 (mon.0) 1061 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:26:07.010 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:07.010 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:07.657 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:08.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:07 smithi104 bash[21066]: cluster 2024-02-19T22:26:06.706470+0000 mgr.smithi044.ikbsam (mgr.14184) 1524 : 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-02-19T22:26:08.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:07 smithi104 bash[21066]: audit 2024-02-19T22:26:06.996615+0000 mgr.smithi044.ikbsam (mgr.14184) 1525 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:08.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:07 smithi044 bash[16231]: cluster 2024-02-19T22:26:06.706470+0000 mgr.smithi044.ikbsam (mgr.14184) 1524 : 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-02-19T22:26:08.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:07 smithi044 bash[16231]: audit 2024-02-19T22:26:06.996615+0000 mgr.smithi044.ikbsam (mgr.14184) 1525 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:08.659 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:10.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:09 smithi104 bash[21066]: cluster 2024-02-19T22:26:08.708205+0000 mgr.smithi044.ikbsam (mgr.14184) 1526 : 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-02-19T22:26:10.133 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:09 smithi044 bash[16231]: cluster 2024-02-19T22:26:08.708205+0000 mgr.smithi044.ikbsam (mgr.14184) 1526 : 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-02-19T22:26:11.906 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:11 smithi044 bash[16231]: cluster 2024-02-19T22:26:10.710108+0000 mgr.smithi044.ikbsam (mgr.14184) 1527 : 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-02-19T22:26:12.009 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:12.009 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:12.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:11 smithi104 bash[21066]: cluster 2024-02-19T22:26:10.710108+0000 mgr.smithi044.ikbsam (mgr.14184) 1527 : 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-02-19T22:26:12.701 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:13.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:12 smithi104 bash[21066]: audit 2024-02-19T22:26:11.991242+0000 mgr.smithi044.ikbsam (mgr.14184) 1528 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:13.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:12 smithi044 bash[16231]: audit 2024-02-19T22:26:11.991242+0000 mgr.smithi044.ikbsam (mgr.14184) 1528 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:13.701 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:14.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:13 smithi104 bash[21066]: cluster 2024-02-19T22:26:12.711489+0000 mgr.smithi044.ikbsam (mgr.14184) 1529 : 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-02-19T22:26:14.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:13 smithi104 bash[21066]: audit 2024-02-19T22:26:13.664104+0000 mon.smithi044 (mon.0) 1062 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:26:14.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:13 smithi044 bash[16231]: cluster 2024-02-19T22:26:12.711489+0000 mgr.smithi044.ikbsam (mgr.14184) 1529 : 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-02-19T22:26:14.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:13 smithi044 bash[16231]: audit 2024-02-19T22:26:13.664104+0000 mon.smithi044 (mon.0) 1062 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:26:16.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:15 smithi104 bash[21066]: cluster 2024-02-19T22:26:14.713218+0000 mgr.smithi044.ikbsam (mgr.14184) 1530 : 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-02-19T22:26:16.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:15 smithi044 bash[16231]: cluster 2024-02-19T22:26:14.713218+0000 mgr.smithi044.ikbsam (mgr.14184) 1530 : 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-02-19T22:26:17.090 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:17.090 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:17.759 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:18.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:17 smithi104 bash[21066]: cluster 2024-02-19T22:26:16.714800+0000 mgr.smithi044.ikbsam (mgr.14184) 1531 : 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-02-19T22:26:18.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:17 smithi104 bash[21066]: audit 2024-02-19T22:26:17.077016+0000 mgr.smithi044.ikbsam (mgr.14184) 1532 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:18.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:17 smithi044 bash[16231]: cluster 2024-02-19T22:26:16.714800+0000 mgr.smithi044.ikbsam (mgr.14184) 1531 : 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-02-19T22:26:18.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:17 smithi044 bash[16231]: audit 2024-02-19T22:26:17.077016+0000 mgr.smithi044.ikbsam (mgr.14184) 1532 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:18.760 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:20.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:19 smithi104 bash[21066]: cluster 2024-02-19T22:26:18.716565+0000 mgr.smithi044.ikbsam (mgr.14184) 1533 : 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-02-19T22:26:20.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:19 smithi044 bash[16231]: cluster 2024-02-19T22:26:18.716565+0000 mgr.smithi044.ikbsam (mgr.14184) 1533 : 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-02-19T22:26:22.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:21 smithi104 bash[21066]: cluster 2024-02-19T22:26:20.718479+0000 mgr.smithi044.ikbsam (mgr.14184) 1534 : 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-02-19T22:26:22.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:21 smithi044 bash[16231]: cluster 2024-02-19T22:26:20.718479+0000 mgr.smithi044.ikbsam (mgr.14184) 1534 : 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-02-19T22:26:22.189 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:22.189 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:22.896 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:23.897 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:24.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:23 smithi104 bash[21066]: audit 2024-02-19T22:26:22.174762+0000 mgr.smithi044.ikbsam (mgr.14184) 1535 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:24.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:23 smithi104 bash[21066]: cluster 2024-02-19T22:26:22.720148+0000 mgr.smithi044.ikbsam (mgr.14184) 1536 : 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-02-19T22:26:24.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:23 smithi044 bash[16231]: audit 2024-02-19T22:26:22.174762+0000 mgr.smithi044.ikbsam (mgr.14184) 1535 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:24.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:23 smithi044 bash[16231]: cluster 2024-02-19T22:26:22.720148+0000 mgr.smithi044.ikbsam (mgr.14184) 1536 : 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-02-19T22:26:26.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:25 smithi044 bash[16231]: cluster 2024-02-19T22:26:24.721862+0000 mgr.smithi044.ikbsam (mgr.14184) 1537 : 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-02-19T22:26:26.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:25 smithi104 bash[21066]: cluster 2024-02-19T22:26:24.721862+0000 mgr.smithi044.ikbsam (mgr.14184) 1537 : 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-02-19T22:26:27.437 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:27.438 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:28.111 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:28.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:27 smithi044 bash[16231]: cluster 2024-02-19T22:26:26.723610+0000 mgr.smithi044.ikbsam (mgr.14184) 1538 : 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-02-19T22:26:28.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:27 smithi104 bash[21066]: cluster 2024-02-19T22:26:26.723610+0000 mgr.smithi044.ikbsam (mgr.14184) 1538 : 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-02-19T22:26:29.112 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:29.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:28 smithi044 bash[16231]: audit 2024-02-19T22:26:27.421897+0000 mgr.smithi044.ikbsam (mgr.14184) 1539 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:29.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:28 smithi104 bash[21066]: audit 2024-02-19T22:26:27.421897+0000 mgr.smithi044.ikbsam (mgr.14184) 1539 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:30.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:29 smithi044 bash[16231]: cluster 2024-02-19T22:26:28.725001+0000 mgr.smithi044.ikbsam (mgr.14184) 1540 : 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-02-19T22:26:30.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:29 smithi104 bash[21066]: cluster 2024-02-19T22:26:28.725001+0000 mgr.smithi044.ikbsam (mgr.14184) 1540 : 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-02-19T22:26:32.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:31 smithi104 bash[21066]: cluster 2024-02-19T22:26:30.726938+0000 mgr.smithi044.ikbsam (mgr.14184) 1541 : 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-02-19T22:26:32.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:31 smithi044 bash[16231]: cluster 2024-02-19T22:26:30.726938+0000 mgr.smithi044.ikbsam (mgr.14184) 1541 : 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-02-19T22:26:32.423 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:32.423 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:33.142 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:34.143 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:34.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:33 smithi104 bash[21066]: audit 2024-02-19T22:26:32.406474+0000 mgr.smithi044.ikbsam (mgr.14184) 1542 : audit [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:34.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:33 smithi104 bash[21066]: cluster 2024-02-19T22:26:32.728451+0000 mgr.smithi044.ikbsam (mgr.14184) 1543 : cluster [DBG] pgmap v1012: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:34.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:33 smithi044 bash[16231]: audit 2024-02-19T22:26:32.406474+0000 mgr.smithi044.ikbsam (mgr.14184) 1542 : audit [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:34.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:33 smithi044 bash[16231]: cluster 2024-02-19T22:26:32.728451+0000 mgr.smithi044.ikbsam (mgr.14184) 1543 : cluster [DBG] pgmap v1012: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:36.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:35 smithi104 bash[21066]: cluster 2024-02-19T22:26:34.730169+0000 mgr.smithi044.ikbsam (mgr.14184) 1544 : cluster [DBG] pgmap v1013: 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-02-19T22:26:36.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:35 smithi044 bash[16231]: cluster 2024-02-19T22:26:34.730169+0000 mgr.smithi044.ikbsam (mgr.14184) 1544 : cluster [DBG] pgmap v1013: 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-02-19T22:26:37.581 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:37.581 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:38.212 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:37 smithi044 bash[16231]: cluster 2024-02-19T22:26:36.731850+0000 mgr.smithi044.ikbsam (mgr.14184) 1545 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:38.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:38.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:37 smithi104 bash[21066]: cluster 2024-02-19T22:26:36.731850+0000 mgr.smithi044.ikbsam (mgr.14184) 1545 : cluster [DBG] pgmap v1014: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:39.214 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:39.228 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:38 smithi044 bash[16231]: audit 2024-02-19T22:26:37.567367+0000 mgr.smithi044.ikbsam (mgr.14184) 1546 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:39.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:38 smithi104 bash[21066]: audit 2024-02-19T22:26:37.567367+0000 mgr.smithi044.ikbsam (mgr.14184) 1546 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:40.363 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:39 smithi044 bash[16231]: cluster 2024-02-19T22:26:38.733657+0000 mgr.smithi044.ikbsam (mgr.14184) 1547 : cluster [DBG] pgmap v1015: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:40.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:39 smithi104 bash[21066]: cluster 2024-02-19T22:26:38.733657+0000 mgr.smithi044.ikbsam (mgr.14184) 1547 : cluster [DBG] pgmap v1015: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:42.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:41 smithi104 bash[21066]: cluster 2024-02-19T22:26:40.735529+0000 mgr.smithi044.ikbsam (mgr.14184) 1548 : cluster [DBG] pgmap v1016: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:42.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:41 smithi044 bash[16231]: cluster 2024-02-19T22:26:40.735529+0000 mgr.smithi044.ikbsam (mgr.14184) 1548 : cluster [DBG] pgmap v1016: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:42.495 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:42.495 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:43.175 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:44.176 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:44.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:43 smithi104 bash[21066]: audit 2024-02-19T22:26:42.478106+0000 mgr.smithi044.ikbsam (mgr.14184) 1549 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:44.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:43 smithi104 bash[21066]: cluster 2024-02-19T22:26:42.737085+0000 mgr.smithi044.ikbsam (mgr.14184) 1550 : cluster [DBG] pgmap v1017: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:44.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:43 smithi044 bash[16231]: audit 2024-02-19T22:26:42.478106+0000 mgr.smithi044.ikbsam (mgr.14184) 1549 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:44.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:43 smithi044 bash[16231]: cluster 2024-02-19T22:26:42.737085+0000 mgr.smithi044.ikbsam (mgr.14184) 1550 : cluster [DBG] pgmap v1017: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:46.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:45 smithi104 bash[21066]: cluster 2024-02-19T22:26:44.738747+0000 mgr.smithi044.ikbsam (mgr.14184) 1551 : cluster [DBG] pgmap v1018: 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-02-19T22:26:46.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:45 smithi044 bash[16231]: cluster 2024-02-19T22:26:44.738747+0000 mgr.smithi044.ikbsam (mgr.14184) 1551 : cluster [DBG] pgmap v1018: 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-02-19T22:26:47.557 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:47.558 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:48.221 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:47 smithi044 bash[16231]: cluster 2024-02-19T22:26:46.740431+0000 mgr.smithi044.ikbsam (mgr.14184) 1552 : cluster [DBG] pgmap v1019: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:48.222 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:48.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:47 smithi104 bash[21066]: cluster 2024-02-19T22:26:46.740431+0000 mgr.smithi044.ikbsam (mgr.14184) 1552 : cluster [DBG] pgmap v1019: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:49.222 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:49.235 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:48 smithi044 bash[16231]: audit 2024-02-19T22:26:47.548893+0000 mgr.smithi044.ikbsam (mgr.14184) 1553 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:49.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:48 smithi104 bash[21066]: audit 2024-02-19T22:26:47.548893+0000 mgr.smithi044.ikbsam (mgr.14184) 1553 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:50.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:49 smithi104 bash[21066]: cluster 2024-02-19T22:26:48.742232+0000 mgr.smithi044.ikbsam (mgr.14184) 1554 : cluster [DBG] pgmap v1020: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:50.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:49 smithi044 bash[16231]: cluster 2024-02-19T22:26:48.742232+0000 mgr.smithi044.ikbsam (mgr.14184) 1554 : cluster [DBG] pgmap v1020: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:52.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:51 smithi104 bash[21066]: cluster 2024-02-19T22:26:50.744271+0000 mgr.smithi044.ikbsam (mgr.14184) 1555 : cluster [DBG] pgmap v1021: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:52.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:51 smithi044 bash[16231]: cluster 2024-02-19T22:26:50.744271+0000 mgr.smithi044.ikbsam (mgr.14184) 1555 : cluster [DBG] pgmap v1021: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:52.559 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:52.559 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:53.245 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:54.246 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:26:54.259 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:53 smithi044 bash[16231]: audit 2024-02-19T22:26:52.542225+0000 mgr.smithi044.ikbsam (mgr.14184) 1556 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:54.259 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:53 smithi044 bash[16231]: cluster 2024-02-19T22:26:52.745971+0000 mgr.smithi044.ikbsam (mgr.14184) 1557 : cluster [DBG] pgmap v1022: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:54.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:53 smithi104 bash[21066]: audit 2024-02-19T22:26:52.542225+0000 mgr.smithi044.ikbsam (mgr.14184) 1556 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:54.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:53 smithi104 bash[21066]: cluster 2024-02-19T22:26:52.745971+0000 mgr.smithi044.ikbsam (mgr.14184) 1557 : cluster [DBG] pgmap v1022: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:56.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:55 smithi044 bash[16231]: cluster 2024-02-19T22:26:54.747920+0000 mgr.smithi044.ikbsam (mgr.14184) 1558 : cluster [DBG] pgmap v1023: 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-02-19T22:26:56.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:55 smithi104 bash[21066]: cluster 2024-02-19T22:26:54.747920+0000 mgr.smithi044.ikbsam (mgr.14184) 1558 : cluster [DBG] pgmap v1023: 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-02-19T22:26:57.775 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:26:57.775 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:26:58.156 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:57 smithi044 bash[16231]: cluster 2024-02-19T22:26:56.749615+0000 mgr.smithi044.ikbsam (mgr.14184) 1559 : cluster [DBG] pgmap v1024: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:58.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:57 smithi104 bash[21066]: cluster 2024-02-19T22:26:56.749615+0000 mgr.smithi044.ikbsam (mgr.14184) 1559 : cluster [DBG] pgmap v1024: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:26:58.421 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:26:59.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:26:59 smithi104 bash[21066]: audit 2024-02-19T22:26:57.759633+0000 mgr.smithi044.ikbsam (mgr.14184) 1560 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:59.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:26:59 smithi044 bash[16231]: audit 2024-02-19T22:26:57.759633+0000 mgr.smithi044.ikbsam (mgr.14184) 1560 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:26:59.423 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:00.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:00 smithi104 bash[21066]: cluster 2024-02-19T22:26:58.751480+0000 mgr.smithi044.ikbsam (mgr.14184) 1561 : cluster [DBG] pgmap v1025: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:00.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:00 smithi044 bash[16231]: cluster 2024-02-19T22:26:58.751480+0000 mgr.smithi044.ikbsam (mgr.14184) 1561 : cluster [DBG] pgmap v1025: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:01.106 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:01 smithi044 bash[16231]: audit 2024-02-19T22:27:00.706060+0000 mon.smithi044 (mon.0) 1063 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:27:01.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:01 smithi104 bash[21066]: audit 2024-02-19T22:27:00.706060+0000 mon.smithi044 (mon.0) 1063 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: cluster 2024-02-19T22:27:00.753136+0000 mgr.smithi044.ikbsam (mgr.14184) 1562 : cluster [DBG] pgmap v1026: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: audit 2024-02-19T22:27:01.013084+0000 mon.smithi044 (mon.0) 1064 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: audit 2024-02-19T22:27:01.324515+0000 mon.smithi044 (mon.0) 1065 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: audit 2024-02-19T22:27:01.326555+0000 mon.smithi044 (mon.0) 1066 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: audit 2024-02-19T22:27:01.336940+0000 mon.smithi044 (mon.0) 1067 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: audit 2024-02-19T22:27:01.344767+0000 mon.smithi044 (mon.0) 1068 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:27:02.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:02 smithi104 bash[21066]: audit 2024-02-19T22:27:01.359735+0000 mon.smithi044 (mon.0) 1069 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: cluster 2024-02-19T22:27:00.753136+0000 mgr.smithi044.ikbsam (mgr.14184) 1562 : cluster [DBG] pgmap v1026: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: audit 2024-02-19T22:27:01.013084+0000 mon.smithi044 (mon.0) 1064 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: audit 2024-02-19T22:27:01.324515+0000 mon.smithi044 (mon.0) 1065 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: audit 2024-02-19T22:27:01.326555+0000 mon.smithi044 (mon.0) 1066 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: audit 2024-02-19T22:27:01.336940+0000 mon.smithi044 (mon.0) 1067 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: audit 2024-02-19T22:27:01.344767+0000 mon.smithi044 (mon.0) 1068 : audit [DBG] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-19T22:27:02.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:02 smithi044 bash[16231]: audit 2024-02-19T22:27:01.359735+0000 mon.smithi044 (mon.0) 1069 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:03.133 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:03.134 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:24:46.544267Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.qpiobm on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:03.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:03 smithi104 bash[21066]: cluster 2024-02-19T22:27:01.337994+0000 mgr.smithi044.ikbsam (mgr.14184) 1563 : cluster [DBG] pgmap v1027: 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-02-19T22:27:03.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:03 smithi104 bash[21066]: cephadm 2024-02-19T22:27:01.364001+0000 mgr.smithi044.ikbsam (mgr.14184) 1564 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.eyyksa on smithi104 2024-02-19T22:27:03.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:03 smithi104 bash[21066]: cluster 2024-02-19T22:27:02.332865+0000 mon.smithi044 (mon.0) 1070 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:27:03.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:03 smithi104 bash[21066]: cluster 2024-02-19T22:27:02.332936+0000 mon.smithi044 (mon.0) 1071 : cluster [INF] Cluster is now healthy 2024-02-19T22:27:03.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:03 smithi044 bash[16231]: cluster 2024-02-19T22:27:01.337994+0000 mgr.smithi044.ikbsam (mgr.14184) 1563 : cluster [DBG] pgmap v1027: 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-02-19T22:27:03.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:03 smithi044 bash[16231]: cephadm 2024-02-19T22:27:01.364001+0000 mgr.smithi044.ikbsam (mgr.14184) 1564 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi104.eyyksa on smithi104 2024-02-19T22:27:03.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:03 smithi044 bash[16231]: cluster 2024-02-19T22:27:02.332865+0000 mon.smithi044 (mon.0) 1070 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-19T22:27:03.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:03 smithi044 bash[16231]: cluster 2024-02-19T22:27:02.332936+0000 mon.smithi044 (mon.0) 1071 : cluster [INF] Cluster is now healthy 2024-02-19T22:27:03.779 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:04.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:04 smithi104 bash[21066]: audit 2024-02-19T22:27:03.118531+0000 mgr.smithi044.ikbsam (mgr.14184) 1565 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:04.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:04 smithi044 bash[16231]: audit 2024-02-19T22:27:03.118531+0000 mgr.smithi044.ikbsam (mgr.14184) 1565 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:04.780 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:05.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:05 smithi104 bash[21066]: cluster 2024-02-19T22:27:03.339536+0000 mgr.smithi044.ikbsam (mgr.14184) 1566 : cluster [DBG] pgmap v1028: 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-02-19T22:27:05.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:05 smithi044 bash[16231]: cluster 2024-02-19T22:27:03.339536+0000 mgr.smithi044.ikbsam (mgr.14184) 1566 : cluster [DBG] pgmap v1028: 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-02-19T22:27:06.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:06 smithi104 bash[21066]: audit 2024-02-19T22:27:05.228513+0000 mon.smithi044 (mon.0) 1072 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.eyyksa"}]: dispatch 2024-02-19T22:27:06.404 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:06 smithi044 bash[16231]: audit 2024-02-19T22:27:05.228513+0000 mon.smithi044 (mon.0) 1072 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi104.eyyksa"}]: dispatch 2024-02-19T22:27:07.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: cephadm 2024-02-19T22:27:05.227349+0000 mgr.smithi044.ikbsam (mgr.14184) 1567 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.eyyksa ... 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.eyyksa ... 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:07.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: cephadm 2024-02-19T22:27:05.227925+0000 mgr.smithi044.ikbsam (mgr.14184) 1568 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: cephadm 2024-02-19T22:27:05.229982+0000 mgr.smithi044.ikbsam (mgr.14184) 1569 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi104.eyyksa ... 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:07.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: cephadm 2024-02-19T22:27:05.234321+0000 mgr.smithi044.ikbsam (mgr.14184) 1570 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.mfckto on smithi044 2024-02-19T22:27:07.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:07 smithi104 bash[21066]: cluster 2024-02-19T22:27:05.341153+0000 mgr.smithi044.ikbsam (mgr.14184) 1571 : cluster [DBG] pgmap v1029: 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-02-19T22:27:07.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: cephadm 2024-02-19T22:27:05.227349+0000 mgr.smithi044.ikbsam (mgr.14184) 1567 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.eyyksa ... 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:27:07.407 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.eyyksa ... 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: cephadm 2024-02-19T22:27:05.227925+0000 mgr.smithi044.ikbsam (mgr.14184) 1568 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.408 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: cephadm 2024-02-19T22:27:05.229982+0000 mgr.smithi044.ikbsam (mgr.14184) 1569 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi104.eyyksa ... 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: cephadm 2024-02-19T22:27:05.234321+0000 mgr.smithi044.ikbsam (mgr.14184) 1570 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi044.mfckto on smithi044 2024-02-19T22:27:07.409 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:07 smithi044 bash[16231]: cluster 2024-02-19T22:27:05.341153+0000 mgr.smithi044.ikbsam (mgr.14184) 1571 : cluster [DBG] pgmap v1029: 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-02-19T22:27:08.399 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:08.399 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:25:56.555280Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.hmzscc on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-hmzscc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.hmzscc\nDeploy daemon haproxy.nfs.foo.smithi104.hmzscc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.689248Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.kyzxqu on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-kyzxqu\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.kyzxqu\nDeploy daemon haproxy.nfs.foo.smithi044.kyzxqu ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:26:00.693992Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.snnhll on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -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.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:09.196 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:09.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:09 smithi104 bash[21066]: cluster 2024-02-19T22:27:07.342266+0000 mgr.smithi044.ikbsam (mgr.14184) 1572 : cluster [DBG] pgmap v1030: 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-02-19T22:27:09.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:09 smithi044 bash[16231]: cluster 2024-02-19T22:27:07.342266+0000 mgr.smithi044.ikbsam (mgr.14184) 1572 : cluster [DBG] pgmap v1030: 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-02-19T22:27:10.197 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:10.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:10 smithi104 bash[21066]: audit 2024-02-19T22:27:08.382275+0000 mgr.smithi044.ikbsam (mgr.14184) 1573 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:10.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:10 smithi104 bash[21066]: audit 2024-02-19T22:27:09.223426+0000 mon.smithi044 (mon.0) 1073 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.mfckto"}]: dispatch 2024-02-19T22:27:10.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:10 smithi044 bash[16231]: audit 2024-02-19T22:27:08.382275+0000 mgr.smithi044.ikbsam (mgr.14184) 1573 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:10.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:10 smithi044 bash[16231]: audit 2024-02-19T22:27:09.223426+0000 mon.smithi044 (mon.0) 1073 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi044.mfckto"}]: dispatch 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cephadm 2024-02-19T22:27:09.222539+0000 mgr.smithi044.ikbsam (mgr.14184) 1574 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.mfckto ... 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.351 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Traceback (most recent call last): 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: yield (conn, connr) 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: code, '\n'.join(err))) 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.mfckto ... 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:11.352 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cephadm 2024-02-19T22:27:09.222790+0000 mgr.smithi044.ikbsam (mgr.14184) 1575 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cephadm 2024-02-19T22:27:09.225356+0000 mgr.smithi044.ikbsam (mgr.14184) 1576 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stdout 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Deploy daemon haproxy.nfs.foo.smithi044.mfckto ... 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:11.353 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.354 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cephadm 2024-02-19T22:27:09.230079+0000 mgr.smithi044.ikbsam (mgr.14184) 1577 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:27:11.354 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cephadm 2024-02-19T22:27:09.233711+0000 mgr.smithi044.ikbsam (mgr.14184) 1578 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:27:11.354 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cluster 2024-02-19T22:27:09.235039+0000 mgr.smithi044.ikbsam (mgr.14184) 1579 : cluster [DBG] pgmap v1031: 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-02-19T22:27:11.354 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: cluster 2024-02-19T22:27:10.060199+0000 mon.smithi044 (mon.0) 1074 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:27:11.354 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:11 smithi044 bash[16231]: audit 2024-02-19T22:27:10.235487+0000 mon.smithi044 (mon.0) 1075 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:11.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cephadm 2024-02-19T22:27:09.222539+0000 mgr.smithi044.ikbsam (mgr.14184) 1574 : 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.mfckto ... 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Traceback (most recent call last): 2024-02-19T22:27:11.379 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: yield (conn, connr) 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: code, '\n'.join(err))) 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: 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-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.mfckto ... 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:11.380 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cephadm 2024-02-19T22:27:09.222790+0000 mgr.smithi044.ikbsam (mgr.14184) 1575 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cephadm 2024-02-19T22:27:09.225356+0000 mgr.smithi044.ikbsam (mgr.14184) 1576 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stdout 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: /usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Deploy daemon haproxy.nfs.foo.smithi044.mfckto ... 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: stat: stderr See 'docker run --help'. 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-19T22:27:11.381 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cephadm 2024-02-19T22:27:09.230079+0000 mgr.smithi044.ikbsam (mgr.14184) 1577 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:27:11.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cephadm 2024-02-19T22:27:09.233711+0000 mgr.smithi044.ikbsam (mgr.14184) 1578 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-19T22:27:11.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cluster 2024-02-19T22:27:09.235039+0000 mgr.smithi044.ikbsam (mgr.14184) 1579 : cluster [DBG] pgmap v1031: 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-02-19T22:27:11.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: cluster 2024-02-19T22:27:10.060199+0000 mon.smithi044 (mon.0) 1074 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:27:11.382 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:11 smithi104 bash[21066]: audit 2024-02-19T22:27:10.235487+0000 mon.smithi044 (mon.0) 1075 : audit [INF] from='mgr.14184 172.21.15.44:0/2368241482' entity='mgr.smithi044.ikbsam' 2024-02-19T22:27:13.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:13 smithi104 bash[21066]: cluster 2024-02-19T22:27:11.236767+0000 mgr.smithi044.ikbsam (mgr.14184) 1580 : cluster [DBG] pgmap v1032: 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-02-19T22:27:13.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:13 smithi044 bash[16231]: cluster 2024-02-19T22:27:11.236767+0000 mgr.smithi044.ikbsam (mgr.14184) 1580 : cluster [DBG] pgmap v1032: 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-02-19T22:27:13.551 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:13.551 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:14.268 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:15.269 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:15.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:15 smithi104 bash[21066]: cluster 2024-02-19T22:27:13.238015+0000 mgr.smithi044.ikbsam (mgr.14184) 1581 : cluster [DBG] pgmap v1033: 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-02-19T22:27:15.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:15 smithi104 bash[21066]: audit 2024-02-19T22:27:13.534659+0000 mgr.smithi044.ikbsam (mgr.14184) 1582 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:15.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:15 smithi044 bash[16231]: cluster 2024-02-19T22:27:13.238015+0000 mgr.smithi044.ikbsam (mgr.14184) 1581 : cluster [DBG] pgmap v1033: 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-02-19T22:27:15.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:15 smithi044 bash[16231]: audit 2024-02-19T22:27:13.534659+0000 mgr.smithi044.ikbsam (mgr.14184) 1582 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:17.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:17 smithi104 bash[21066]: cluster 2024-02-19T22:27:15.239861+0000 mgr.smithi044.ikbsam (mgr.14184) 1583 : cluster [DBG] pgmap v1034: 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-02-19T22:27:17.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:17 smithi044 bash[16231]: cluster 2024-02-19T22:27:15.239861+0000 mgr.smithi044.ikbsam (mgr.14184) 1583 : cluster [DBG] pgmap v1034: 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-02-19T22:27:18.673 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:18.673 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:19.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:19 smithi104 bash[21066]: cluster 2024-02-19T22:27:17.241334+0000 mgr.smithi044.ikbsam (mgr.14184) 1584 : cluster [DBG] pgmap v1035: 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-02-19T22:27:19.382 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:19 smithi044 bash[16231]: cluster 2024-02-19T22:27:17.241334+0000 mgr.smithi044.ikbsam (mgr.14184) 1584 : cluster [DBG] pgmap v1035: 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-02-19T22:27:19.384 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:20.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:20 smithi104 bash[21066]: audit 2024-02-19T22:27:18.657365+0000 mgr.smithi044.ikbsam (mgr.14184) 1585 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:20.385 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:20.398 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:20 smithi044 bash[16231]: audit 2024-02-19T22:27:18.657365+0000 mgr.smithi044.ikbsam (mgr.14184) 1585 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:21.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:21 smithi104 bash[21066]: cluster 2024-02-19T22:27:19.242995+0000 mgr.smithi044.ikbsam (mgr.14184) 1586 : cluster [DBG] pgmap v1036: 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-02-19T22:27:21.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:21 smithi044 bash[16231]: cluster 2024-02-19T22:27:19.242995+0000 mgr.smithi044.ikbsam (mgr.14184) 1586 : cluster [DBG] pgmap v1036: 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-02-19T22:27:23.378 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:23 smithi104 bash[21066]: cluster 2024-02-19T22:27:21.244687+0000 mgr.smithi044.ikbsam (mgr.14184) 1587 : cluster [DBG] pgmap v1037: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:23.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:23 smithi044 bash[16231]: cluster 2024-02-19T22:27:21.244687+0000 mgr.smithi044.ikbsam (mgr.14184) 1587 : cluster [DBG] pgmap v1037: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:23.658 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:23.658 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:24.299 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:25.301 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:25.405 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:25 smithi044 bash[16231]: cluster 2024-02-19T22:27:23.246216+0000 mgr.smithi044.ikbsam (mgr.14184) 1588 : cluster [DBG] pgmap v1038: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:25.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:25 smithi044 bash[16231]: audit 2024-02-19T22:27:23.649385+0000 mgr.smithi044.ikbsam (mgr.14184) 1589 : audit [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:25.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:25 smithi104 bash[21066]: cluster 2024-02-19T22:27:23.246216+0000 mgr.smithi044.ikbsam (mgr.14184) 1588 : cluster [DBG] pgmap v1038: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:25.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:25 smithi104 bash[21066]: audit 2024-02-19T22:27:23.649385+0000 mgr.smithi044.ikbsam (mgr.14184) 1589 : audit [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:27.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:27 smithi044 bash[16231]: cluster 2024-02-19T22:27:25.248410+0000 mgr.smithi044.ikbsam (mgr.14184) 1590 : cluster [DBG] pgmap v1039: 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-02-19T22:27:27.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:27 smithi104 bash[21066]: cluster 2024-02-19T22:27:25.248410+0000 mgr.smithi044.ikbsam (mgr.14184) 1590 : cluster [DBG] pgmap v1039: 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-02-19T22:27:28.788 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:28.789 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:29.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:29 smithi044 bash[16231]: cluster 2024-02-19T22:27:27.250046+0000 mgr.smithi044.ikbsam (mgr.14184) 1591 : cluster [DBG] pgmap v1040: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:29.465 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:29.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:29 smithi104 bash[21066]: cluster 2024-02-19T22:27:27.250046+0000 mgr.smithi044.ikbsam (mgr.14184) 1591 : cluster [DBG] pgmap v1040: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:30.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:30 smithi044 bash[16231]: audit 2024-02-19T22:27:28.772722+0000 mgr.smithi044.ikbsam (mgr.14184) 1592 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:30.466 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:30.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:30 smithi104 bash[21066]: audit 2024-02-19T22:27:28.772722+0000 mgr.smithi044.ikbsam (mgr.14184) 1592 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:31.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:31 smithi044 bash[16231]: cluster 2024-02-19T22:27:29.251813+0000 mgr.smithi044.ikbsam (mgr.14184) 1593 : cluster [DBG] pgmap v1041: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:31.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:31 smithi104 bash[21066]: cluster 2024-02-19T22:27:29.251813+0000 mgr.smithi044.ikbsam (mgr.14184) 1593 : cluster [DBG] pgmap v1041: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:33.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:33 smithi104 bash[21066]: cluster 2024-02-19T22:27:31.252761+0000 mgr.smithi044.ikbsam (mgr.14184) 1594 : cluster [DBG] pgmap v1042: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:33.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:33 smithi044 bash[16231]: cluster 2024-02-19T22:27:31.252761+0000 mgr.smithi044.ikbsam (mgr.14184) 1594 : cluster [DBG] pgmap v1042: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:33.718 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:33.718 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:34.358 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:35.360 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:35 smithi104 bash[21066]: cluster 2024-02-19T22:27:33.253809+0000 mgr.smithi044.ikbsam (mgr.14184) 1595 : cluster [DBG] pgmap v1043: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:35.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:35 smithi104 bash[21066]: audit 2024-02-19T22:27:33.704033+0000 mgr.smithi044.ikbsam (mgr.14184) 1596 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:35 smithi044 bash[16231]: cluster 2024-02-19T22:27:33.253809+0000 mgr.smithi044.ikbsam (mgr.14184) 1595 : cluster [DBG] pgmap v1043: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:35.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:35 smithi044 bash[16231]: audit 2024-02-19T22:27:33.704033+0000 mgr.smithi044.ikbsam (mgr.14184) 1596 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:37.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:37 smithi104 bash[21066]: cluster 2024-02-19T22:27:35.255660+0000 mgr.smithi044.ikbsam (mgr.14184) 1597 : cluster [DBG] pgmap v1044: 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-02-19T22:27:37.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:37 smithi044 bash[16231]: cluster 2024-02-19T22:27:35.255660+0000 mgr.smithi044.ikbsam (mgr.14184) 1597 : cluster [DBG] pgmap v1044: 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-02-19T22:27:38.746 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:38.746 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:39.425 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:39.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:39 smithi104 bash[21066]: cluster 2024-02-19T22:27:37.257146+0000 mgr.smithi044.ikbsam (mgr.14184) 1598 : cluster [DBG] pgmap v1045: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:39.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:39 smithi044 bash[16231]: cluster 2024-02-19T22:27:37.257146+0000 mgr.smithi044.ikbsam (mgr.14184) 1598 : cluster [DBG] pgmap v1045: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:40.427 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:40.440 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:40 smithi044 bash[16231]: audit 2024-02-19T22:27:38.730612+0000 mgr.smithi044.ikbsam (mgr.14184) 1599 : audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:40.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:40 smithi104 bash[21066]: audit 2024-02-19T22:27:38.730612+0000 mgr.smithi044.ikbsam (mgr.14184) 1599 : audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:41.562 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:41 smithi044 bash[16231]: cluster 2024-02-19T22:27:39.258866+0000 mgr.smithi044.ikbsam (mgr.14184) 1600 : cluster [DBG] pgmap v1046: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:41.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:41 smithi104 bash[21066]: cluster 2024-02-19T22:27:39.258866+0000 mgr.smithi044.ikbsam (mgr.14184) 1600 : cluster [DBG] pgmap v1046: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:42.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:42 smithi104 bash[21066]: cluster 2024-02-19T22:27:41.259951+0000 mgr.smithi044.ikbsam (mgr.14184) 1601 : cluster [DBG] pgmap v1047: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:42.659 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:42 smithi044 bash[16231]: cluster 2024-02-19T22:27:41.259951+0000 mgr.smithi044.ikbsam (mgr.14184) 1601 : cluster [DBG] pgmap v1047: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:43.872 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:43.872 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:44.551 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:44.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:44 smithi104 bash[21066]: cluster 2024-02-19T22:27:43.261694+0000 mgr.smithi044.ikbsam (mgr.14184) 1602 : cluster [DBG] pgmap v1048: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:44.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:44 smithi104 bash[21066]: audit 2024-02-19T22:27:43.855149+0000 mgr.smithi044.ikbsam (mgr.14184) 1603 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:44.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:44 smithi044 bash[16231]: cluster 2024-02-19T22:27:43.261694+0000 mgr.smithi044.ikbsam (mgr.14184) 1602 : cluster [DBG] pgmap v1048: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:44.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:44 smithi044 bash[16231]: audit 2024-02-19T22:27:43.855149+0000 mgr.smithi044.ikbsam (mgr.14184) 1603 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:45.552 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:46.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:46 smithi104 bash[21066]: cluster 2024-02-19T22:27:45.263567+0000 mgr.smithi044.ikbsam (mgr.14184) 1604 : cluster [DBG] pgmap v1049: 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-02-19T22:27:46.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:46 smithi044 bash[16231]: cluster 2024-02-19T22:27:45.263567+0000 mgr.smithi044.ikbsam (mgr.14184) 1604 : cluster [DBG] pgmap v1049: 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-02-19T22:27:48.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:48 smithi104 bash[21066]: cluster 2024-02-19T22:27:47.265098+0000 mgr.smithi044.ikbsam (mgr.14184) 1605 : cluster [DBG] pgmap v1050: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:48.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:48 smithi044 bash[16231]: cluster 2024-02-19T22:27:47.265098+0000 mgr.smithi044.ikbsam (mgr.14184) 1605 : cluster [DBG] pgmap v1050: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:49.022 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:49.022 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:49.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:49 smithi104 bash[21066]: audit 2024-02-19T22:27:49.005432+0000 mgr.smithi044.ikbsam (mgr.14184) 1606 : audit [DBG] from='client.15826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:49.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:49 smithi044 bash[16231]: audit 2024-02-19T22:27:49.005432+0000 mgr.smithi044.ikbsam (mgr.14184) 1606 : audit [DBG] from='client.15826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:49.692 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:50.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:50 smithi104 bash[21066]: cluster 2024-02-19T22:27:49.266804+0000 mgr.smithi044.ikbsam (mgr.14184) 1607 : cluster [DBG] pgmap v1051: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:50.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:50 smithi044 bash[16231]: cluster 2024-02-19T22:27:49.266804+0000 mgr.smithi044.ikbsam (mgr.14184) 1607 : cluster [DBG] pgmap v1051: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:50.693 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:52.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:52 smithi104 bash[21066]: cluster 2024-02-19T22:27:51.268488+0000 mgr.smithi044.ikbsam (mgr.14184) 1608 : cluster [DBG] pgmap v1052: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:52.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:52 smithi044 bash[16231]: cluster 2024-02-19T22:27:51.268488+0000 mgr.smithi044.ikbsam (mgr.14184) 1608 : cluster [DBG] pgmap v1052: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:53.992 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:53.992 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:54.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:54 smithi104 bash[21066]: cluster 2024-02-19T22:27:53.270217+0000 mgr.smithi044.ikbsam (mgr.14184) 1609 : cluster [DBG] pgmap v1053: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:54.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:54 smithi104 bash[21066]: audit 2024-02-19T22:27:53.976799+0000 mgr.smithi044.ikbsam (mgr.14184) 1610 : audit [DBG] from='client.15830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:54.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:54 smithi044 bash[16231]: cluster 2024-02-19T22:27:53.270217+0000 mgr.smithi044.ikbsam (mgr.14184) 1609 : cluster [DBG] pgmap v1053: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:54.652 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:54 smithi044 bash[16231]: audit 2024-02-19T22:27:53.976799+0000 mgr.smithi044.ikbsam (mgr.14184) 1610 : audit [DBG] from='client.15830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:54.653 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:55.655 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:81bd20d634209c7cb82c18be12b4b5a05643ebf1 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3594d200-cf71-11ee-95bb-87774f69a715 -- ceph orch ls -f json 2024-02-19T22:27:56.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:56 smithi104 bash[21066]: cluster 2024-02-19T22:27:55.272076+0000 mgr.smithi044.ikbsam (mgr.14184) 1611 : cluster [DBG] pgmap v1054: 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-02-19T22:27:56.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:56 smithi044 bash[16231]: cluster 2024-02-19T22:27:55.272076+0000 mgr.smithi044.ikbsam (mgr.14184) 1611 : cluster [DBG] pgmap v1054: 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-02-19T22:27:58.628 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:58 smithi104 bash[21066]: cluster 2024-02-19T22:27:57.273582+0000 mgr.smithi044.ikbsam (mgr.14184) 1612 : cluster [DBG] pgmap v1055: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:58.629 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:58 smithi044 bash[16231]: cluster 2024-02-19T22:27:57.273582+0000 mgr.smithi044.ikbsam (mgr.14184) 1612 : cluster [DBG] pgmap v1055: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:27:59.064 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-02-19T22:27:59.064 INFO:teuthology.orchestra.run.smithi044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-19T21:54:16.155238Z", "last_refresh": "2024-02-19T22:24:38.284906Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-19T21:54:07.841501Z", "last_refresh": "2024-02-19T22:24:38.285006Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-19T21:54:12.081802Z", "last_refresh": "2024-02-19T22:24:38.285131Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:26:00.697308Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.fujkld on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:05.229754Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi104.eyyksa on smithi104: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi104-eyyksa\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi104.eyyksa\nDeploy daemon haproxy.nfs.foo.smithi104.eyyksa ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi104 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.225148Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi044.mfckto on smithi044: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy-nfs-foo-smithi044-mfckto\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-haproxy.nfs.foo.smithi044.mfckto\nDeploy daemon haproxy.nfs.foo.smithi044.mfckto ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi044 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-19T22:27:09.229851Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi104.yimutc on smithi104: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-19T22:27:09.233611Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi044.nguoxs on smithi044: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.44/16"}, "status": {"created": "2024-02-19T22:01:37.011102Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.44/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-19T21:54:05.832317Z", "last_refresh": "2024-02-19T22:24:38.284801Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T21:55:31.227185Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi044:172.21.15.44=smithi044", "smithi104:172.21.15.104=smithi104"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-19T21:55:31.221824Z", "last_refresh": "2024-02-19T22:24:38.284629Z", "running": 2, "size": 2}}, {"events": ["2024-02-19T22:01:37.009616Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-19T22:01:37.004316Z", "last_refresh": "2024-02-19T22:24:38.285807Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-19T21:54:14.139498Z", "last_refresh": "2024-02-19T22:24:38.285228Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-19T21:56:05.332670Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-19T21:56:05.325552Z", "last_refresh": "2024-02-19T22:24:38.285325Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-19T21:54:09.999599Z", "last_refresh": "2024-02-19T22:25:52.421124Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-19T22:01:31.450628Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-19T22:01:46.621661Z", "last_refresh": "2024-02-19T22:24:38.285710Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-19T22:27:59.656 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:27:59 smithi044 bash[16231]: audit 2024-02-19T22:27:59.050755+0000 mgr.smithi044.ikbsam (mgr.14184) 1613 : audit [DBG] from='client.15834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:27:59.801 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-19T22:27:59.801 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/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_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-02-19T22:28:00.104 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=eb631f33161a4ffd91ed84a44f676040 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/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_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_81bd20d634209c7cb82c18be12b4b5a05643ebf1/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-02-19T22:28:00.106 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-02-19T22:28:00.116 INFO:tasks.vip:Removing 10.0.15.44 (and any VIPs) on smithi044.front.sepia.ceph.com iface ens1f0... 2024-02-19T22:28:00.116 DEBUG:teuthology.orchestra.run.smithi044:> sudo ip addr del 10.0.15.44/16 dev ens1f0 2024-02-19T22:28:00.130 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:27:59 smithi104 bash[21066]: audit 2024-02-19T22:27:59.050755+0000 mgr.smithi044.ikbsam (mgr.14184) 1613 : audit [DBG] from='client.15834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-19T22:28:00.148 DEBUG:teuthology.orchestra.run.smithi044:> sudo ip addr del 10.0.31.44/16 dev ens1f0 2024-02-19T22:28:00.204 INFO:teuthology.orchestra.run.smithi044.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-19T22:28:00.204 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-19T22:28:00.205 INFO:tasks.vip:Removing 10.0.15.104 (and any VIPs) on smithi104.front.sepia.ceph.com iface enp3s0f1... 2024-02-19T22:28:00.205 DEBUG:teuthology.orchestra.run.smithi104:> sudo ip addr del 10.0.15.104/16 dev enp3s0f1 2024-02-19T22:28:00.220 DEBUG:teuthology.orchestra.run.smithi104:> sudo ip addr del 10.0.31.44/16 dev enp3s0f1 2024-02-19T22:28:00.274 INFO:teuthology.orchestra.run.smithi104.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-19T22:28:00.275 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-19T22:28:00.276 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-02-19T22:28:00.294 INFO:tasks.cephadm:Teardown begin 2024-02-19T22:28:00.295 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T22:28:00.309 DEBUG:teuthology.orchestra.run.smithi104:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T22:28:00.332 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-02-19T22:28:00.333 DEBUG:teuthology.orchestra.run.smithi044:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-19T22:28:00.357 DEBUG:teuthology.orchestra.run.smithi104:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-19T22:28:00.379 INFO:tasks.cephadm:Stopping all daemons... 2024-02-19T22:28:00.379 INFO:tasks.cephadm.mon.smithi044:Stopping mon.smithi044... 2024-02-19T22:28:00.380 DEBUG:teuthology.orchestra.run.smithi044:> sudo systemctl stop ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi044 2024-02-19T22:28:00.406 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:28:00 smithi044 bash[16231]: cluster 2024-02-19T22:27:59.275261+0000 mgr.smithi044.ikbsam (mgr.14184) 1614 : cluster [DBG] pgmap v1056: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:28:00.627 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:28:00 smithi104 bash[21066]: cluster 2024-02-19T22:27:59.275261+0000 mgr.smithi044.ikbsam (mgr.14184) 1614 : cluster [DBG] pgmap v1056: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-19T22:28:00.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:28:00 smithi044 systemd[1]: Stopping Ceph mon.smithi044 for 3594d200-cf71-11ee-95bb-87774f69a715... 2024-02-19T22:28:00.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:28:00 smithi044 bash[110765]: Error response from daemon: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-mon.smithi044 2024-02-19T22:28:00.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:28:00 smithi044 bash[16231]: debug 2024-02-19T22:28:00.594+0000 7f955327f700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi044 -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-02-19T22:28:00.741 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:28:00 smithi044 bash[16231]: debug 2024-02-19T22:28:00.594+0000 7f955327f700 -1 mon.smithi044@0(leader) e2 *** Got Signal Terminated *** 2024-02-19T22:28:01.725 INFO:journalctl@ceph.mon.smithi044.smithi044.stdout:Feb 19 22:28:01 smithi044 bash[110765]: ceph-3594d200-cf71-11ee-95bb-87774f69a715-mon-smithi044 2024-02-19T22:28:01.727 DEBUG:teuthology.orchestra.run.smithi044:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi044.service' 2024-02-19T22:28:01.813 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-19T22:28:01.813 INFO:tasks.cephadm.mon.smithi044:Stopped mon.smithi044 2024-02-19T22:28:01.814 INFO:tasks.cephadm.mon.smithi104:Stopping mon.smithi104... 2024-02-19T22:28:01.814 DEBUG:teuthology.orchestra.run.smithi104:> sudo systemctl stop ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi104 2024-02-19T22:28:02.127 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:28:01 smithi104 systemd[1]: Stopping Ceph mon.smithi104 for 3594d200-cf71-11ee-95bb-87774f69a715... 2024-02-19T22:28:02.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:28:01 smithi104 bash[46891]: Error response from daemon: No such container: ceph-3594d200-cf71-11ee-95bb-87774f69a715-mon.smithi104 2024-02-19T22:28:02.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:28:02 smithi104 bash[21066]: debug 2024-02-19T22:28:02.064+0000 7f6a00dae700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi104 -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-02-19T22:28:02.128 INFO:journalctl@ceph.mon.smithi104.smithi104.stdout:Feb 19 22:28:02 smithi104 bash[21066]: debug 2024-02-19T22:28:02.064+0000 7f6a00dae700 -1 mon.smithi104@1(peon) e2 *** Got Signal Terminated *** 2024-02-19T22:28:02.924 DEBUG:teuthology.orchestra.run.smithi104:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3594d200-cf71-11ee-95bb-87774f69a715@mon.smithi104.service' 2024-02-19T22:28:02.964 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-19T22:28:02.965 INFO:tasks.cephadm.mon.smithi104:Stopped mon.smithi104 2024-02-19T22:28:02.965 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3594d200-cf71-11ee-95bb-87774f69a715 --force --keep-logs 2024-02-19T22:29:08.609 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3594d200-cf71-11ee-95bb-87774f69a715 --force --keep-logs 2024-02-19T22:30:00.565 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T22:30:00.581 DEBUG:teuthology.orchestra.run.smithi104:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-19T22:30:00.597 INFO:tasks.cephadm:Archiving crash dumps... 2024-02-19T22:30:00.599 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/remote/ubuntu@smithi044.front.sepia.ceph.com/crash 2024-02-19T22:30:00.600 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/crash -- . 2024-02-19T22:30:00.641 INFO:teuthology.orchestra.run.smithi044.stderr:tar: /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/crash: Cannot open: No such file or directory 2024-02-19T22:30:00.642 INFO:teuthology.orchestra.run.smithi044.stderr:tar: Error is not recoverable: exiting now 2024-02-19T22:30:00.643 DEBUG:teuthology.misc:Transferring archived files from smithi104:/var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/remote/ubuntu@smithi104.front.sepia.ceph.com/crash 2024-02-19T22:30:00.644 DEBUG:teuthology.orchestra.run.smithi104:> sudo tar c -f - -C /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/crash -- . 2024-02-19T22:30:00.658 INFO:teuthology.orchestra.run.smithi104.stderr:tar: /var/lib/ceph/3594d200-cf71-11ee-95bb-87774f69a715/crash: Cannot open: No such file or directory 2024-02-19T22:30:00.658 INFO:teuthology.orchestra.run.smithi104.stderr:tar: Error is not recoverable: exiting now 2024-02-19T22:30:00.659 INFO:tasks.cephadm:Checking cluster log for badness... 2024-02-19T22:30:00.659 DEBUG:teuthology.orchestra.run.smithi044:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-02-19T22:30:00.703 INFO:teuthology.orchestra.run.smithi044.stdout:2024-02-19T22:02:05.034367+0000 mon.smithi044 (mon.0) 690 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-19T22:30:00.705 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-02-19T22:30:00.705 INFO:tasks.cephadm:Compressing logs... 2024-02-19T22:30:00.705 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T22:30:00.749 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T22:30:00.763 INFO:teuthology.orchestra.run.smithi044.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-19T22:30:00.764 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-19T22:30:00.764 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-volume.log 2024-02-19T22:30:00.767 INFO:teuthology.orchestra.run.smithi104.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-19T22:30:00.767 INFO:teuthology.orchestra.run.smithi104.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-19T22:30:00.767 INFO:teuthology.orchestra.run.smithi104.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.6.log 2024-02-19T22:30:00.768 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-volume.log 2024-02-19T22:30:00.768 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.0.log 2024-02-19T22:30:00.768 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.cephadm.log 2024-02-19T22:30:00.768 INFO:teuthology.orchestra.run.smithi104.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mgr.smithi104.cxzjji.log 2024-02-19T22:30:00.769 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mon.smithi044.log 2024-02-19T22:30:00.770 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi044.iawesn.log 2024-02-19T22:30:00.770 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mon.smithi044.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.cephadm.log 2024-02-19T22:30:00.770 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mgr.smithi044.ikbsam.log 2024-02-19T22:30:00.770 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi044.iawesn.log: /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.cephadm.log: 74.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi044.iawesn.log.gz 2024-02-19T22:30:00.770 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.7.log 2024-02-19T22:30:00.770 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mgr.smithi044.ikbsam.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.1.log 2024-02-19T22:30:00.771 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.7.log: --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.5.log /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.1.log: 2024-02-19T22:30:00.771 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.audit.log 2024-02-19T22:30:00.776 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.0.log: /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.audit.log 2024-02-19T22:30:00.776 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mgr.smithi104.cxzjji.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.2.log 2024-02-19T22:30:00.776 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi104.lkomsk.log 2024-02-19T22:30:00.776 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.2.log: 96.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.cephadm.log.gz 2024-02-19T22:30:00.777 INFO:teuthology.orchestra.run.smithi104.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.4.log 2024-02-19T22:30:00.777 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi104.lkomsk.log: 74.7% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-client.rgw.foorgw.smithi104.lkomsk.log.gz 2024-02-19T22:30:00.777 INFO:teuthology.orchestra.run.smithi104.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mon.smithi104.log 2024-02-19T22:30:00.777 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.4.log: 91.8% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.audit.log.gz 2024-02-19T22:30:00.777 INFO:teuthology.orchestra.run.smithi104.stderr: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-19T22:30:00.777 INFO:teuthology.orchestra.run.smithi104.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log 2024-02-19T22:30:00.779 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.5.log: 96.3% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.cephadm.log.gz 2024-02-19T22:30:00.779 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.3.log 2024-02-19T22:30:00.779 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.audit.log: 92.6% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-volume.log.gz 2024-02-19T22:30:00.780 INFO:teuthology.orchestra.run.smithi044.stderr:gzip -5 --verbose -- /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log 2024-02-19T22:30:00.781 INFO:teuthology.orchestra.run.smithi104.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mon.smithi104.log: /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log: 92.6% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-volume.log.gz 2024-02-19T22:30:00.781 INFO:teuthology.orchestra.run.smithi104.stderr: 90.6% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log.gz 2024-02-19T22:30:00.781 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.3.log: 91.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.audit.log.gz 2024-02-19T22:30:00.782 INFO:teuthology.orchestra.run.smithi104.stderr: 93.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mgr.smithi104.cxzjji.log.gz 2024-02-19T22:30:00.785 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log: 90.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph.log.gz 2024-02-19T22:30:00.787 INFO:teuthology.orchestra.run.smithi044.stderr: 93.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-19T22:30:01.094 INFO:teuthology.orchestra.run.smithi044.stderr: 89.8% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mgr.smithi044.ikbsam.log.gz 2024-02-19T22:30:01.101 INFO:teuthology.orchestra.run.smithi104.stderr: 92.9% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mon.smithi104.log.gz 2024-02-19T22:30:01.732 INFO:teuthology.orchestra.run.smithi044.stderr: 90.3% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-mon.smithi044.log.gz 2024-02-19T22:30:01.890 INFO:teuthology.orchestra.run.smithi044.stderr: 93.6% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.7.log.gz 2024-02-19T22:30:01.971 INFO:teuthology.orchestra.run.smithi104.stderr: 93.2% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.6.log.gz 2024-02-19T22:30:01.972 INFO:teuthology.orchestra.run.smithi104.stderr: 93.3% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.2.log.gz 2024-02-19T22:30:02.006 INFO:teuthology.orchestra.run.smithi104.stderr: 93.7% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.4.log.gz 2024-02-19T22:30:02.180 INFO:teuthology.orchestra.run.smithi104.stderr: 93.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.0.log.gz 2024-02-19T22:30:02.181 INFO:teuthology.orchestra.run.smithi104.stderr: 2024-02-19T22:30:02.181 INFO:teuthology.orchestra.run.smithi104.stderr:real 0m1.427s 2024-02-19T22:30:02.182 INFO:teuthology.orchestra.run.smithi104.stderr:user 0m5.236s 2024-02-19T22:30:02.182 INFO:teuthology.orchestra.run.smithi104.stderr:sys 0m0.226s 2024-02-19T22:30:02.231 INFO:teuthology.orchestra.run.smithi044.stderr: 93.3% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.1.log.gz 2024-02-19T22:30:02.244 INFO:teuthology.orchestra.run.smithi044.stderr: 93.4% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.5.log.gz 2024-02-19T22:30:02.322 INFO:teuthology.orchestra.run.smithi044.stderr: 93.5% -- replaced with /var/log/ceph/3594d200-cf71-11ee-95bb-87774f69a715/ceph-osd.3.log.gz 2024-02-19T22:30:02.324 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-02-19T22:30:02.324 INFO:teuthology.orchestra.run.smithi044.stderr:real 0m1.572s 2024-02-19T22:30:02.324 INFO:teuthology.orchestra.run.smithi044.stderr:user 0m6.729s 2024-02-19T22:30:02.324 INFO:teuthology.orchestra.run.smithi044.stderr:sys 0m0.246s 2024-02-19T22:30:02.325 INFO:tasks.cephadm:Archiving logs... 2024-02-19T22:30:02.325 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/remote/ubuntu@smithi044.front.sepia.ceph.com/log 2024-02-19T22:30:02.478 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-19T22:30:03.609 DEBUG:teuthology.misc:Transferring archived files from smithi104:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/remote/ubuntu@smithi104.front.sepia.ceph.com/log 2024-02-19T22:30:03.610 DEBUG:teuthology.orchestra.run.smithi104:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-19T22:30:04.473 INFO:tasks.cephadm:Removing cluster... 2024-02-19T22:30:04.474 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3594d200-cf71-11ee-95bb-87774f69a715 --force 2024-02-19T22:30:05.882 DEBUG:teuthology.orchestra.run.smithi104:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3594d200-cf71-11ee-95bb-87774f69a715 --force 2024-02-19T22:30:07.268 INFO:tasks.cephadm:Removing cephadm ... 2024-02-19T22:30:07.269 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-19T22:30:07.281 DEBUG:teuthology.orchestra.run.smithi104:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-19T22:30:07.288 INFO:tasks.cephadm:Teardown complete 2024-02-19T22:30:07.289 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-02-19T22:30:07.301 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_1... 2024-02-19T22:30:07.301 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_1 2024-02-19T22:30:07.619 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-19T22:30:07.620 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:07.621 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_2... 2024-02-19T22:30:07.621 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_2 2024-02-19T22:30:07.907 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-19T22:30:07.908 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:07.909 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_3... 2024-02-19T22:30:07.909 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_3 2024-02-19T22:30:08.179 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-19T22:30:08.180 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:08.181 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_4... 2024-02-19T22:30:08.181 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_4 2024-02-19T22:30:08.451 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-19T22:30:08.452 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:08.453 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-02-19T22:30:08.453 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/scratch_devs 2024-02-19T22:30:08.467 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi104:/dev/vg_nvme/lv_1... 2024-02-19T22:30:08.467 DEBUG:teuthology.orchestra.run.smithi104:> sudo nvme disconnect -n lv_1 2024-02-19T22:30:08.750 INFO:teuthology.orchestra.run.smithi104.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-19T22:30:08.751 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:08.751 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi104:/dev/vg_nvme/lv_2... 2024-02-19T22:30:08.752 DEBUG:teuthology.orchestra.run.smithi104:> sudo nvme disconnect -n lv_2 2024-02-19T22:30:09.038 INFO:teuthology.orchestra.run.smithi104.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-19T22:30:09.039 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:09.040 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi104:/dev/vg_nvme/lv_3... 2024-02-19T22:30:09.040 DEBUG:teuthology.orchestra.run.smithi104:> sudo nvme disconnect -n lv_3 2024-02-19T22:30:09.334 INFO:teuthology.orchestra.run.smithi104.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-19T22:30:09.335 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:09.335 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi104:/dev/vg_nvme/lv_4... 2024-02-19T22:30:09.336 DEBUG:teuthology.orchestra.run.smithi104:> sudo nvme disconnect -n lv_4 2024-02-19T22:30:09.610 INFO:teuthology.orchestra.run.smithi104.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-19T22:30:09.611 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:09.611 DEBUG:teuthology.orchestra.run.smithi104:> set -ex 2024-02-19T22:30:09.612 DEBUG:teuthology.orchestra.run.smithi104:> sudo dd of=/scratch_devs 2024-02-19T22:30:09.626 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-02-19T22:30:09.640 INFO:teuthology.task.clock:Checking final clock skew... 2024-02-19T22:30:09.640 DEBUG:teuthology.orchestra.run.smithi044:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-19T22:30:09.642 DEBUG:teuthology.orchestra.run.smithi104:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-19T22:30:09.661 INFO:teuthology.orchestra.run.smithi044.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T22:30:09.662 INFO:teuthology.orchestra.run.smithi044.stdout:============================================================================== 2024-02-19T22:30:09.662 INFO:teuthology.orchestra.run.smithi044.stdout:*hv01.front.sepi 44.4.53.2 2 u 85 128 377 0.093 0.230 1.197 2024-02-19T22:30:09.662 INFO:teuthology.orchestra.run.smithi044.stdout:+hv02.front.sepi 63.231.80.2 3 u 25 128 377 0.078 4.214 0.989 2024-02-19T22:30:09.662 INFO:teuthology.orchestra.run.smithi044.stdout:+hv03.front.sepi 74.6.168.72 3 u 82 128 377 0.085 0.850 1.339 2024-02-19T22:30:09.662 INFO:teuthology.orchestra.run.smithi044.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-02-19T22:30:09.692 INFO:teuthology.orchestra.run.smithi104.stdout: remote refid st t when poll reach delay offset jitter 2024-02-19T22:30:09.692 INFO:teuthology.orchestra.run.smithi104.stdout:============================================================================== 2024-02-19T22:30:09.693 INFO:teuthology.orchestra.run.smithi104.stdout:*hv01.front.sepi 44.4.53.2 2 u 9 64 377 0.074 -0.001 1.986 2024-02-19T22:30:09.693 INFO:teuthology.orchestra.run.smithi104.stdout:+hv02.front.sepi 63.231.80.2 3 u 23 64 377 0.082 5.577 1.495 2024-02-19T22:30:09.693 INFO:teuthology.orchestra.run.smithi104.stdout:+hv03.front.sepi 74.6.168.72 3 u 23 64 377 0.078 0.664 2.238 2024-02-19T22:30:09.693 INFO:teuthology.orchestra.run.smithi104.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-02-19T22:30:09.694 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-02-19T22:30:09.708 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-02-19T22:30:09.709 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-02-19T22:30:09.720 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-02-19T22:30:09.733 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-02-19T22:30:09.743 INFO:teuthology.task.internal:Duration was 2584.099822 seconds 2024-02-19T22:30:09.744 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-02-19T22:30:09.754 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-02-19T22:30:09.755 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-19T22:30:09.758 DEBUG:teuthology.orchestra.run.smithi104:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-19T22:30:09.808 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-02-19T22:30:09.809 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi044.front.sepia.ceph.com 2024-02-19T22:30:09.809 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T22:30:09.866 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi104.front.sepia.ceph.com 2024-02-19T22:30:09.867 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T22:30:09.882 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-02-19T22:30:09.882 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-19T22:30:09.913 DEBUG:teuthology.orchestra.run.smithi104:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-19T22:30:09.986 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-02-19T22:30:09.987 DEBUG:teuthology.orchestra.run.smithi044:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-19T22:30:09.989 DEBUG:teuthology.orchestra.run.smithi104:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-19T22:30:10.142 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-02-19T22:30:10.154 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-02-19T22:30:10.154 DEBUG:teuthology.orchestra.run.smithi044:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-19T22:30:10.169 DEBUG:teuthology.orchestra.run.smithi104:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-19T22:30:10.184 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-02-19T22:30:10.219 DEBUG:teuthology.orchestra.run.smithi044:> 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-02-19T22:30:10.221 DEBUG:teuthology.orchestra.run.smithi104:> 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-02-19T22:30:10.233 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = core 2024-02-19T22:30:10.236 INFO:teuthology.orchestra.run.smithi104.stdout:kernel.core_pattern = core 2024-02-19T22:30:10.265 DEBUG:teuthology.orchestra.run.smithi044:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-19T22:30:10.303 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:10.304 DEBUG:teuthology.orchestra.run.smithi104:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-19T22:30:10.310 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-19T22:30:10.311 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-02-19T22:30:10.324 INFO:teuthology.task.internal:Transferring archived files... 2024-02-19T22:30:10.325 DEBUG:teuthology.misc:Transferring archived files from smithi044:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/remote/smithi044 2024-02-19T22:30:10.326 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-19T22:30:10.382 DEBUG:teuthology.misc:Transferring archived files from smithi104:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791/remote/smithi104 2024-02-19T22:30:10.383 DEBUG:teuthology.orchestra.run.smithi104:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-19T22:30:10.412 INFO:teuthology.task.internal:Removing archive directory... 2024-02-19T22:30:10.412 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-19T22:30:10.416 DEBUG:teuthology.orchestra.run.smithi104:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-19T22:30:10.455 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-02-19T22:30:10.471 INFO:teuthology.task.internal:Not uploading archives. 2024-02-19T22:30:10.472 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-02-19T22:30:10.485 INFO:teuthology.task.internal:Tidying up after the test... 2024-02-19T22:30:10.485 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-19T22:30:10.488 DEBUG:teuthology.orchestra.run.smithi104:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-19T22:30:10.493 INFO:teuthology.orchestra.run.smithi044.stdout: 659550 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 22:30 /home/ubuntu/cephtest 2024-02-19T22:30:10.504 INFO:teuthology.orchestra.run.smithi104.stdout: 659551 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 22:30 /home/ubuntu/cephtest 2024-02-19T22:30:10.508 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-02-19T22:30:10.521 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-02-19T22:30:10.624 INFO:teuthology.nuke:Checking targets against current locks 2024-02-19T22:30:10.664 DEBUG:teuthology.nuke:shortname: smithi044 2024-02-19T22:30:10.664 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-19T22:30:10.706 DEBUG:teuthology.nuke:shortname: smithi104 2024-02-19T22:30:10.707 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-19T22:30:10.721 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791', '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-02-19 21:38:29.172342', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-02-19T22:30:10.754 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi104.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-19_19:25:49-rados-pacific-release-distro-default-smithi/7566791', '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-02-19 21:38:29.174348', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-02-19T22:30:10.805 INFO:teuthology.orchestra.console.smithi044:Power off 2024-02-19T22:30:10.805 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-19T22:30:10.858 INFO:teuthology.orchestra.console.smithi104:Power off 2024-02-19T22:30:10.858 DEBUG:teuthology.orchestra.console.smithi104:pexpect command: ipmitool -H smithi104.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-19T22:30:10.871 DEBUG:teuthology.orchestra.console.smithi044:power off output: Chassis Power Control: Down/Off 2024-02-19T22:30:10.872 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:10.918 DEBUG:teuthology.orchestra.console.smithi104:power off output: Chassis Power Control: Down/Off 2024-02-19T22:30:10.918 DEBUG:teuthology.orchestra.console.smithi104:pexpect command: ipmitool -H smithi104.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:10.929 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-02-19T22:30:10.968 DEBUG:teuthology.orchestra.console.smithi104:check power output: Chassis Power is on 2024-02-19T22:30:14.930 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:14.969 DEBUG:teuthology.orchestra.console.smithi104:pexpect command: ipmitool -H smithi104.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:15.041 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-02-19T22:30:15.080 DEBUG:teuthology.orchestra.console.smithi104:check power output: Chassis Power is on 2024-02-19T22:30:19.047 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:19.081 DEBUG:teuthology.orchestra.console.smithi104:pexpect command: ipmitool -H smithi104.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:19.160 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is off 2024-02-19T22:30:19.193 DEBUG:teuthology.orchestra.console.smithi104:check power output: Chassis Power is on 2024-02-19T22:30:19.261 INFO:teuthology.orchestra.console.smithi044:Power off completed 2024-02-19T22:30:23.196 DEBUG:teuthology.orchestra.console.smithi104:pexpect command: ipmitool -H smithi104.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-19T22:30:23.308 DEBUG:teuthology.orchestra.console.smithi104:check power output: Chassis Power is off 2024-02-19T22:30:23.409 INFO:teuthology.orchestra.console.smithi104:Power off completed 2024-02-19T22:30:23.513 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: 2584.099822282791 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=eb631f33161a4ffd91ed84a44f676040 status: fail success: false 2024-02-19T22:30:23.514 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-19T22:30:23.598 INFO:teuthology.run:FAIL