Breandan Dezendorf 1 жил өмнө
parent
commit
63b545085d
30 өөрчлөгдсөн 16329 нэмэгдсэн , 153 устгасан
  1. 9 0
      dezendorf/homelab/talos/bin/ceph-down.sh
  2. 2 2
      dezendorf/homelab/talos/bin/deleteall.sh
  3. 7 0
      dezendorf/homelab/talos/bin/finalizer
  4. 30 7
      dezendorf/homelab/talos/bin/wipe-all
  5. 35 0
      dezendorf/homelab/talos/bin/wipe-ceph
  6. 4 2
      dezendorf/homelab/talos/bin/wipe-node
  7. 2 2
      dezendorf/homelab/talos/ceph-values.yaml
  8. 2696 0
      dezendorf/homelab/talos/dmesg.ceph-thin1.txt
  9. 2953 0
      dezendorf/homelab/talos/dmesg.ceph-thin2.txt
  10. 2641 0
      dezendorf/homelab/talos/dmesg.ceph-thin3.txt
  11. 2648 0
      dezendorf/homelab/talos/dmesg.ceph-thin4.txt
  12. 34 30
      dezendorf/homelab/talos/nodeconfig/ceph-x86.yaml
  13. 12 8
      dezendorf/homelab/talos/nodeconfig/controlplane.yaml
  14. 5 3
      dezendorf/homelab/talos/nodeconfig/pi.yaml
  15. 1 1
      dezendorf/homelab/talos/nodeconfig/worker.yaml
  16. 33 0
      dezendorf/homelab/talos/prod/cache-tier.yaml
  17. 1 1
      dezendorf/homelab/talos/prod/ceph-fs.yaml
  18. 36 5
      dezendorf/homelab/talos/prod/cluster.yaml
  19. 11 8
      dezendorf/homelab/talos/prod/label-nodes.sh
  20. 132 84
      dezendorf/homelab/talos/prod/operator.yaml
  21. 1 0
      dezendorf/homelab/talos/prod/pas
  22. 4 0
      dezendorf/homelab/talos/prod/setup.sh
  23. 26 0
      dezendorf/homelab/talos/prometheus-operator/1
  24. 26 0
      dezendorf/homelab/talos/prometheus-operator/prometheus-svc.yaml
  25. 99 0
      dezendorf/homelab/talos/prometheus-operator/radarr.yaml
  26. 1 0
      dezendorf/homelab/talos/prometheus-operator/setup.sh
  27. 12 0
      dezendorf/homelab/talos/traefik/setup.sh
  28. 4528 0
      dezendorf/homelab/talos/traefik/traefik-crd.yaml
  29. 65 0
      dezendorf/homelab/talos/traefik/traefik-rbac.yaml
  30. 275 0
      dezendorf/homelab/talos/traefik/traefik.yaml

+ 9 - 0
dezendorf/homelab/talos/bin/ceph-down.sh

@@ -12,6 +12,14 @@ echo "Patching cluster $CLUSTER to allow deletes"
 echo kubectl --namespace ${NAMESPACE} patch cephcluster ${NAMESPACE} --type merge -p '{"spec":{"cleanupPolicy":{"confirmation":"yes-really-destroy-data"}}}'
 kubectl --namespace ${NAMESPACE} patch cephcluster ${NAMESPACE} --type merge -p '{"spec":{"cleanupPolicy":{"confirmation":"yes-really-destroy-data"}}}'
 
+for CRD in $(kubectl get crd -n rook-ceph | awk '/ceph.rook.io/ {print $1}'); do
+    kubectl get -n rook-ceph "$CRD" -o name | \
+    xargs -I {} kubectl patch -n rook-ceph {} --type merge -p '{"metadata":{"finalizers": []}}'
+done
+
+kubectl -n rook-ceph patch configmap rook-ceph-mon-endpoints --type merge -p '{"metadata":{"finalizers": []}}'
+kubectl -n rook-ceph patch secrets rook-ceph-mon --type merge -p '{"metadata":{"finalizers": []}}'
+
 kubectl delete storageclasses ceph-block ceph-bucket ceph-filesystem --wait
 
 kubectl --namespace ${NAMESPACE} delete cephobjectstore ceph-objectstore --force
@@ -30,3 +38,4 @@ for i in $(kubectl get clusterrole | grep ceph | awk '{print $1}'); do kubectl d
 for i in $(kubectl get clusterrole | grep rbd | awk '{print $1}'); do kubectl delete clusterrole $i ; done
 for i in $(kubectl get clusterrole | grep objectstorage- | awk '{print $1}'); do kubectl delete clusterrole $i ; done
 for i in $(kubectl get clusterrolebinding | grep -E '(ceph|rook|rbd-csi|objectstorage-prov)' | awk '{print $1}' ) ; do kubectl delete clusterrolebinding $i ; done
+

+ 2 - 2
dezendorf/homelab/talos/bin/deleteall.sh

@@ -12,7 +12,7 @@ echo ""
 OBJECTS=$(kubectl api-resources --verbs=list --namespaced -o name | xargs -n 1 kubectl get --show-kind --ignore-not-found -n $1 | sort | awk '{print $1}'  | grep \/ )
 
 for i in ${OBJECTS} ; do
-  kubectl -n $1 delete $i &
+  kubectl -n $1 delete $i --force &
 done
 
 echo ""
@@ -22,4 +22,4 @@ OBJECTS=$(kubectl api-resources --verbs=list --namespaced -o name | xargs -n 1 k
 
 for i in ${OBJECTS} ; do
   kubectl -n $1 edit $i ;
-done
+done

+ 7 - 0
dezendorf/homelab/talos/bin/finalizer

@@ -0,0 +1,7 @@
+for CRD in $(kubectl get crd -n rook-ceph | awk '/ceph.rook.io/ {print $1}'); do
+    kubectl get -n rook-ceph "$CRD" -o name | \
+    xargs -I {} kubectl patch -n rook-ceph {} --type merge -p '{"metadata":{"finalizers": []}}'
+done
+
+kubectl -n rook-ceph patch configmap rook-ceph-mon-endpoints --type merge -p '{"metadata":{"finalizers": []}}'
+kubectl -n rook-ceph patch secrets rook-ceph-mon --type merge -p '{"metadata":{"finalizers": []}}'

+ 30 - 7
dezendorf/homelab/talos/bin/wipe-all

@@ -3,6 +3,14 @@ X86=$(kubectl get nodes  -o wide --show-labels | grep -v STATUS | grep -v contro
 CONTROL=$(kubectl get nodes  -o wide --show-labels | grep -v STATUS | grep control-plane| awk '{print $1}')
 DATA=$(kubectl get nodes  -o wide --show-labels | grep -v STATUS | grep -v master| awk '{print $1}')
 
+for i in $DATA ; do
+  ./bin/wipe-ceph $i /var/lib/ceph
+done
+
+for i in $CONTROL ; do
+  ./bin/wipe-ceph $i /var/lib/ceph
+done
+
 for i in $DATA ; do
   ./bin/wipe-node $i
 done
@@ -13,6 +21,13 @@ for i in $DATA ; do
   NODES+=(" -n $i ")
 done
 
+for i in $CONTROL ; do
+  echo mindwipe $i
+  NODES+=(" -n $i ")
+done
+
+#exit
+
 talosctl reset --system-labels-to-wipe STATE --system-labels-to-wipe EPHEMERAL --graceful=false --reboot ${NODES[@]}
 
 echo "Waiting for master node to come online"
@@ -24,8 +39,16 @@ done
 
 sleep 10
 
-echo "Applying config to 192.168.0.11"
-talosctl apply --insecure -f nodeconfig/controlplane.yaml -n 192.168.0.11
+echo "Applying config to control plane nodes"
+for i in $CONTROL; do
+  while ! nc -z 192.168.0.11 50000 ; do
+    j=$((j+1))
+    echo $j
+  done
+
+  echo "Applying controlplane config to $i"
+  talosctl apply --insecure -f nodeconfig/controlplane.yaml -n $i
+done
 
 sleep 10
 
@@ -45,11 +68,11 @@ while ! nc -z 192.168.0.11 6443 ; do
   echo $j
 done
 
-echo "applying configs for x86 workers"
-for i in $X86 ; do
-  echo "talosctl apply --insecure -f nodeconfig/worker.yaml -n $i"
-  talosctl apply --insecure -f nodeconfig/worker.yaml -n $i
-done
+#echo "applying configs for x86 workers"
+#for i in $X86 ; do
+#  echo "talosctl apply --insecure -f nodeconfig/worker.yaml -n $i"
+#  talosctl apply --insecure -f nodeconfig/worker.yaml -n $i
+#done
 
 echo "sleeping 30"
 sleep 30

+ 35 - 0
dezendorf/homelab/talos/bin/wipe-ceph

@@ -0,0 +1,35 @@
+#!/bin/bash
+
+if [ $# -ne 1 ]; then
+  echo "Incorrect number of arguments"
+fi
+
+NODE=$1
+DIR=$2
+
+echo "Resetting $DIR on ${NODE}"
+
+NODEIP=$(kubectl get nodes -o wide | grep ${NODE} | grep -v "INTERNAL-IP" | awk '{print $6}')
+
+echo "Node IP: $NODEIP"
+
+echo "Creating ceph-wipe pod to clear $DIR on $NODE (${NODEIP})"
+cat <<EOF | kubectl apply -f -
+apiVersion: v1
+kind: Pod
+metadata:
+  name: ceph-wipe-${NODE}
+spec:
+  restartPolicy: Never
+  nodeName: ${NODE}
+  containers:
+  - name: ceph-wipe-${NODE}
+    image: busybox
+    securityContext:
+      privileged: true
+    command: ["/bin/sh", "-c", "rm -rf ${DIR}"]
+EOF
+
+kubectl wait --timeout=900s --for=jsonpath='{.status.phase}=Succeeded' pod ceph-wipe-${NODE}
+kubectl delete pod ceph-wipe-${NODE}
+

+ 4 - 2
dezendorf/homelab/talos/bin/wipe-node

@@ -9,8 +9,10 @@ NODE=$1
 echo "Resetting ${NODE}"
 
 NODEIP=$(kubectl get nodes -o wide | grep ${NODE} | grep -v "INTERNAL-IP" | awk '{print $6}')
-#DISKS=$(talosctl -n ${NODEIP} disks | grep usb | awk '{print $2}' | grep -v DEV | grep -v "512 GB" | grep -v "250 GB" | grep -v "/dev/mmc")
-DISKS=$(talosctl disks -n ${NODE} | grep -v DEV | grep sdb |  grep "2.0 TB" | grep -v "/dev/mmc" | awk '{print $2}')
+#DISKS=$(talosctl disks -n ${NODEIP} | grep -v DEV | grep -v usb | grep -v "2.0 TB" | grep -v "/dev/mmc" | awk '{print $2}')
+DISKS=$(talosctl disks -n ${NODEIP} | grep -v DEV | grep -v '*$' | awk '{print $2}')
+
+talosctl disks -n ${NODEIP} | grep -v DEV | grep -v '*$'
 
 echo "Disks: $DISKS"
 echo "Node IP: $NODEIP"

+ 2 - 2
dezendorf/homelab/talos/ceph-values.yaml

@@ -341,10 +341,10 @@ cephClusterSpec:
     osd:
       limits:
         cpu: "2000m"
-        memory: "2560Mi"
+        memory: "5120Mi"
       requests:
         cpu: "1000m"
-        memory: "2560Mi"
+        memory: "4096Mi"
     prepareosd:
       # limits: It is not recommended to set limits on the OSD prepare job
       #         since it's a one-time burst for memory that must be allowed to

+ 2696 - 0
dezendorf/homelab/talos/dmesg.ceph-thin1.txt

@@ -0,0 +1,2696 @@
+ceph-thin1: kern:  notice: [2024-03-10T02:23:42.792907552Z]: Linux version 6.1.61-talos (@buildkitsandbox) (gcc (GCC) 12.3.0, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT_DYNAMIC Wed Nov  8 10:39:42 UTC 2023
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: Command line: BOOT_IMAGE=/A/vmlinuz talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: [Firmware Info]: CPU: Re-enabling disabled Topology Extensions Support.
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-provided physical RAM map:
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x0000000000100000-0x00000000ddf91fff] usable
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000ddf92000-0x00000000de08bfff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000de08c000-0x00000000de0d9fff] ACPI data
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000de0da000-0x00000000de576fff] ACPI NVS
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000de577000-0x00000000de853fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: BIOS-e820: [mem 0x0000000100000000-0x00000002feffffff] usable
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: NX (Execute Disable) protection: active
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: SMBIOS 2.8 present.
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: DMI: HP HP t630 Thin Client/8158, BIOS M40 v01.09 09/03/2018
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: tsc: Fast TSC calibration using PIT
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.792907552Z]: tsc: Detected 1996.373 MHz processor
+ceph-thin1: kern:   debug: [2024-03-10T02:23:42.796390552Z]: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
+ceph-thin1: kern:   debug: [2024-03-10T02:23:42.796403552Z]: e820: remove [mem 0x000a0000-0x000fffff] usable
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.796446552Z]: last_pfn = 0x2ff000 max_arch_pfn = 0x400000000
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.796808552Z]: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
+ceph-thin1: kern:   debug: [2024-03-10T02:23:42.797300552Z]: e820: update [mem 0xdf000000-0xffffffff] usable ==> reserved
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.797330552Z]: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.815140552Z]: found SMP MP-table at [mem 0x000fcc10-0x000fcc1f]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.815201552Z]: Kernel/User page tables isolation: force enabled on command line.
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.815207552Z]: Using GB pages for direct mapping
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816852552Z]: RAMDISK: [mem 0x30ccd000-0x3465dfff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816864552Z]: ACPI: Early table checksum verification disabled
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816872552Z]: ACPI: RSDP 0x00000000000F05B0 000024 (v02 HPQOEM)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816888552Z]: ACPI: XSDT 0x00000000DE0AB090 00009C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816910552Z]: ACPI: FACP 0x00000000DE0BB9D8 00010C (v05 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin1: kern: warning: [2024-03-10T02:23:42.816927552Z]: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20220331/tbfadt-615)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816943552Z]: ACPI: DSDT 0x00000000DE0AB1B8 010819 (v02 HPQOEM SLIC-WKS 01072009 INTL 20120913)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816957552Z]: ACPI: FACS 0x00000000DE575C80 000040
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816967552Z]: ACPI: APIC 0x00000000DE0BBAE8 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816981552Z]: ACPI: FPDT 0x00000000DE0BBB68 000044 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.816992552Z]: ACPI: FIDT 0x00000000DE0BBBB0 00009C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817004552Z]: ACPI: TCPA 0x00000000DE0BBC50 000032 (v02 ALASKA NAPAASF  00000001 MSFT 01000013)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817016552Z]: ACPI: MCFG 0x00000000DE0BBC88 00003C (v01 HPQOEM SLIC-WKS 01072009 MSFT 00010013)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817028552Z]: ACPI: HPET 0x00000000DE0BBCC8 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI  00000005)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817039552Z]: ACPI: UEFI 0x00000000DE0BBD00 000042 (v01                 00000000      00000000)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817051552Z]: ACPI: IVRS 0x00000000DE0BBD48 0000D0 (v02 AMD    AGESA    00000001 AMD  00000000)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817063552Z]: ACPI: SSDT 0x00000000DE0BBE18 000843 (v01 HPQOEM SLIC-WKS 00000001 INTL 20120913)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817074552Z]: ACPI: SSDT 0x00000000DE0BC660 000EE4 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817085552Z]: ACPI: SSDT 0x00000000DE0BD548 00873A (v02 AMD    AGESA    00000002 MSFT 04000000)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817097552Z]: ACPI: CRAT 0x00000000DE0C5C88 000528 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817109552Z]: ACPI: SSDT 0x00000000DE0C61B0 00147F (v01 AMD    CPMDFIGP 00000001 INTL 20120913)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817120552Z]: ACPI: SSDT 0x00000000DE0C7630 0015F0 (v01 AMD    CPMCMN   00000001 INTL 20120913)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817130552Z]: ACPI: Reserving FACP table memory at [mem 0xde0bb9d8-0xde0bbae3]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817136552Z]: ACPI: Reserving DSDT table memory at [mem 0xde0ab1b8-0xde0bb9d0]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817141552Z]: ACPI: Reserving FACS table memory at [mem 0xde575c80-0xde575cbf]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817146552Z]: ACPI: Reserving APIC table memory at [mem 0xde0bbae8-0xde0bbb65]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817150552Z]: ACPI: Reserving FPDT table memory at [mem 0xde0bbb68-0xde0bbbab]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817154552Z]: ACPI: Reserving FIDT table memory at [mem 0xde0bbbb0-0xde0bbc4b]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817158552Z]: ACPI: Reserving TCPA table memory at [mem 0xde0bbc50-0xde0bbc81]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817161552Z]: ACPI: Reserving MCFG table memory at [mem 0xde0bbc88-0xde0bbcc3]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817165552Z]: ACPI: Reserving HPET table memory at [mem 0xde0bbcc8-0xde0bbcff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817169552Z]: ACPI: Reserving UEFI table memory at [mem 0xde0bbd00-0xde0bbd41]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817173552Z]: ACPI: Reserving IVRS table memory at [mem 0xde0bbd48-0xde0bbe17]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817177552Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bbe18-0xde0bc65a]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817181552Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bc660-0xde0bd543]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817184552Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bd548-0xde0c5c81]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817188552Z]: ACPI: Reserving CRAT table memory at [mem 0xde0c5c88-0xde0c61af]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817192552Z]: ACPI: Reserving SSDT table memory at [mem 0xde0c61b0-0xde0c762e]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817196552Z]: ACPI: Reserving SSDT table memory at [mem 0xde0c7630-0xde0c8c1f]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817308552Z]: No NUMA configuration found
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817312552Z]: Faking a node at [mem 0x0000000000000000-0x00000002feffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817328552Z]: NODE_DATA(0) allocated [mem 0x2feffc000-0x2feffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817466552Z]: Zone ranges:
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817469552Z]:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817476552Z]:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817483552Z]:   Normal   [mem 0x0000000100000000-0x00000002feffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817489552Z]: Movable zone start for each node
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817492552Z]: Early memory node ranges
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817494552Z]:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817499552Z]:   node   0: [mem 0x0000000000100000-0x00000000ddf91fff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817505552Z]:   node   0: [mem 0x00000000de854000-0x00000000deffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817509552Z]:   node   0: [mem 0x0000000100000000-0x00000002feffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817517552Z]: Initmem setup node 0 [mem 0x0000000000001000-0x00000002feffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817536552Z]: On node 0, zone DMA: 1 pages in unavailable ranges
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.817649552Z]: On node 0, zone DMA: 99 pages in unavailable ranges
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.842632552Z]: On node 0, zone DMA32: 2242 pages in unavailable ranges
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900258552Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900382552Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900483552Z]: ACPI: PM-Timer IO Port: 0x808
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900504552Z]: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900521552Z]: IOAPIC[0]: apic_id 0, version 33, address 0xfec00000, GSI 0-23
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900533552Z]: IOAPIC[1]: apic_id 1, version 33, address 0xfec01000, GSI 24-55
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900542552Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900550552Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900566552Z]: ACPI: Using ACPI (MADT) for SMP configuration information
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900570552Z]: ACPI: HPET id: 0x10228201 base: 0xfed00000
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900583552Z]: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900661552Z]: [mem 0xdf000000-0xf7ffffff] available for PCI devices
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900666552Z]: Booting paravirtualized kernel on bare hardware
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.900674552Z]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.931990552Z]: setup_percpu: NR_CPUS:512 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.932901552Z]: percpu: Embedded 56 pages/cpu s192080 r8192 d29104 u524288
+ceph-thin1: kern:   debug: [2024-03-10T02:23:42.932925552Z]: pcpu-alloc: s192080 r8192 d29104 u524288 alloc=1*2097152
+ceph-thin1: kern:   debug: [2024-03-10T02:23:42.932936552Z]: pcpu-alloc: [0] 0 1 2 3 
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.933025552Z]: Fallback order for Node 0: 0 
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.933036552Z]: Built 1 zonelists, mobility grouping on.  Total pages: 2957025
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.933043552Z]: Policy zone: Normal
+ceph-thin1: kern:  notice: [2024-03-10T02:23:42.933047552Z]: Kernel command line: BOOT_IMAGE=/A/vmlinuz talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin1: kern:  notice: [2024-03-10T02:23:42.934122552Z]: Unknown kernel command line parameters "BOOT_IMAGE=/A/vmlinuz pti=on", will be passed to user space.
+ceph-thin1: kern:  notice: [2024-03-10T02:23:42.934215552Z]: random: crng init done
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.939156552Z]: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.941646552Z]: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.941728552Z]: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
+ceph-thin1: kern:    info: [2024-03-10T02:23:42.941780552Z]: software IO TLB: area num 4.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.068191552Z]: Memory: 11608756K/12016488K available (28692K kernel code, 3989K rwdata, 17468K rodata, 3088K init, 2692K bss, 407472K reserved, 0K cma-reserved)
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.068713552Z]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.068759552Z]: Kernel/User page tables isolation: enabled
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.068867552Z]: ftrace: allocating 82001 entries in 321 pages
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.132532552Z]: ftrace: allocated 321 pages with 3 groups
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138095552Z]: Dynamic Preempt: voluntary
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138214552Z]: rcu: Preemptible hierarchical RCU implementation.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138217552Z]: rcu: \x09RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138223552Z]: \x09Trampoline variant of Tasks RCU enabled.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138226552Z]: \x09Rude variant of Tasks RCU enabled.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138227552Z]: \x09Tracing variant of Tasks RCU enabled.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138231552Z]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.138234552Z]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.164122552Z]: NR_IRQS: 33024, nr_irqs: 1000, preallocated irqs: 16
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.164439552Z]: rcu: srcu_init: Setting srcu_struct sizes based on contention.
+ceph-thin1: kern:   debug: [2024-03-10T02:23:43.164564552Z]: spurious 8259A interrupt: IRQ7.
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.166453552Z]: Console: colour VGA+ 80x25
+ceph-thin1: kern:    info: [2024-03-10T02:23:43.172993552Z]: printk: console [tty0] enabled
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.183545552Z]: printk: console [ttyS0] enabled
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.233647552Z]: ACPI: Core revision 20220331
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.280976552Z]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.390221552Z]: APIC: Switch to symmetric I/O mode setup
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.450112552Z]: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.538212552Z]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d985aa42, max_idle_ns: 881590676094 ns
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.664019552Z]: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.74 BogoMIPS (lpj=7985492)
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.668038552Z]: BIOS may not properly restore RDRAND after suspend, hiding RDRAND via CPUID. Use rdrand=force to reenable.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.672052552Z]: LVT offset 1 assigned for vector 0xf9
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.676032552Z]: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.680011552Z]: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.684019552Z]: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.688017552Z]: Spectre V2 : Mitigation: Retpolines
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.692011552Z]: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.696011552Z]: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.700011552Z]: Spectre V2 : Enabling Speculation Barrier for firmware calls
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.704012552Z]: RETBleed: Mitigation: untrained return thunk
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.708016552Z]: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.712016552Z]: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.716024552Z]: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.720011552Z]: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.724011552Z]: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.728013552Z]: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.732011552Z]: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.782812552Z]: Freeing SMP alternatives memory: 68K
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.784015552Z]: pid_max: default: 32768 minimum: 301
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.788121552Z]: LSM: Security Framework initializing
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.792027552Z]: Yama: becoming mindful.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.796158552Z]: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.800083552Z]: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.919816552Z]: smpboot: CPU0: AMD Embedded G-Series GX-420GI Radeon R7E (family: 0x15, model: 0x60, stepping: 0x1)
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.920503552Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.924012552Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.928083552Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.932011552Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.936070552Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.940011552Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.944067552Z]: Performance Events: Fam15h core perfctr, AMD PMU driver.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.948013552Z]: ... version:                0
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.952011552Z]: ... bit width:              48
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.956011552Z]: ... generic registers:      6
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.960011552Z]: ... value mask:             0000ffffffffffff
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.968010552Z]: ... max period:             00007fffffffffff
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.972010552Z]: ... fixed-purpose events:   0
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.976010552Z]: ... event mask:             000000000000003f
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.980488552Z]: signal: max sigframe size: 1776
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.984087552Z]: rcu: Hierarchical SRCU implementation.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.988011552Z]: rcu: \x09Max phase no-delay instances is 1000.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.992587552Z]: MCE: In-kernel MCE decoding enabled.
+ceph-thin1: kern:    info: [2024-03-10T02:23:54.996173552Z]: smp: Bringing up secondary CPUs ...
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.000370552Z]: x86: Booting SMP configuration:
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.004013552Z]: .... node  #0, CPUs:      #1 #2 #3
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.012089552Z]: smp: Brought up 1 node, 4 CPUs
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.020012552Z]: smpboot: Max logical packages: 1
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.024024552Z]: smpboot: Total of 4 processors activated (15970.98 BogoMIPS)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.032908552Z]: devtmpfs: initialized
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.037246552Z]: ACPI: PM: Registering ACPI NVS region [mem 0xde0da000-0xde576fff] (4837376 bytes)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.040419552Z]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.044040552Z]: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.048432552Z]: PM: RTC time: 02:23:35, date: 2024-03-10
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.058505552Z]: NET: Registered PF_NETLINK/PF_ROUTE protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.060986552Z]: audit: initializing netlink subsys (disabled)
+ceph-thin1: kern:  notice: [2024-03-10T02:23:55.064093552Z]: audit: type=2000 audit(1710037399.428:1): state=initialized audit_enabled=0 res=1
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.064347552Z]: thermal_sys: Registered thermal governor 'step_wise'
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.068026552Z]: thermal_sys: Registered thermal governor 'user_space'
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.072075552Z]: cpuidle: using governor menu
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.192837552Z]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.268268552Z]: dca service started, version 1.12.1
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.324045552Z]: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.436018552Z]: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.516058552Z]: PCI: Using configuration type 1 for base access
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.604221552Z]: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.608137552Z]: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.688018552Z]: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.764279552Z]: cryptd: max_cpu_qlen set to 1000
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.816371552Z]: ACPI: Added _OSI(Module Device)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.868016552Z]: ACPI: Added _OSI(Processor Device)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.920016552Z]: ACPI: Added _OSI(3.0 _SCP Extensions)
+ceph-thin1: kern:    info: [2024-03-10T02:23:55.976014552Z]: ACPI: Added _OSI(Processor Aggregator Device)
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.085494552Z]: ACPI: 6 ACPI AML tables successfully acquired and loaded
+ceph-thin1: kern:  notice: [2024-03-10T02:23:56.169404552Z]: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.258824552Z]: ACPI: Interpreter enabled
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.304084552Z]: ACPI: PM: (supports S0 S3 S5)
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.352012552Z]: ACPI: Using IOAPIC for interrupt routing
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.408123552Z]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.520015552Z]: PCI: Using E820 reservations for host bridge windows
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.592817552Z]: ACPI: Enabled 5 GPEs in block 00 to 1F
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.611025552Z]: ACPI: PM: Power Resource [P0SD]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.612130552Z]: ACPI: PM: Power Resource [P3SD]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.616311552Z]: ACPI: PM: Power Resource [P0U2]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.620124552Z]: ACPI: PM: Power Resource [P3U2]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.628106552Z]: ACPI: PM: Power Resource [P0U3]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.632114552Z]: ACPI: PM: Power Resource [P3U3]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.636783552Z]: ACPI: PM: Power Resource [P0ST]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.640119552Z]: ACPI: PM: Power Resource [P3ST]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.644310552Z]: ACPI: PM: Power Resource [P0SA]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.648100552Z]: ACPI: PM: Power Resource [P3SA]
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.664183552Z]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.668025552Z]: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.672282552Z]: acpi PNP0A08:00: _OSC: platform does not support [LTR]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.676489552Z]: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.680065552Z]: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.685224552Z]: PCI host bridge to bus 0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.688015552Z]: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.692012552Z]: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.696012552Z]: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.700013552Z]: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.704013552Z]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.708012552Z]: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.712015552Z]: pci_bus 0000:00: root bus resource [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.716013552Z]: pci_bus 0000:00: root bus resource [bus 00-ff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.720423552Z]: pci 0000:00:00.0: [1022:1576] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.724310552Z]: pci 0000:00:00.2: [1022:1577] type 00 class 0x080600
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.728317552Z]: pci 0000:00:01.0: [1002:9874] type 00 class 0x030000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.732031552Z]: pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.736024552Z]: pci 0000:00:01.0: reg 0x18: [mem 0xf0000000-0xf07fffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.740023552Z]: pci 0000:00:01.0: reg 0x20: [io  0xf000-0xf0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.744020552Z]: pci 0000:00:01.0: reg 0x24: [mem 0xfeb00000-0xfeb3ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.748019552Z]: pci 0000:00:01.0: reg 0x30: [mem 0xfeb40000-0xfeb5ffff pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.752020552Z]: pci 0000:00:01.0: enabling Extended Tags
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.756039552Z]: pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.760066552Z]: pci 0000:00:01.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.764012552Z]: pci 0000:00:01.0: PME# supported from D1 D2 D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.768288552Z]: pci 0000:00:01.1: [1002:9840] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.772031552Z]: pci 0000:00:01.1: reg 0x10: [mem 0xfeb64000-0xfeb67fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.776054552Z]: pci 0000:00:01.1: enabling Extended Tags
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.780071552Z]: pci 0000:00:01.1: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.784162552Z]: pci 0000:00:02.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.788188552Z]: pci 0000:00:02.2: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.792065552Z]: pci 0000:00:02.2: enabling Extended Tags
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.796086552Z]: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.800276552Z]: pci 0000:00:02.3: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.804065552Z]: pci 0000:00:02.3: enabling Extended Tags
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.808083552Z]: pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.812295552Z]: pci 0000:00:03.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.816205552Z]: pci 0000:00:08.0: [1022:1578] type 00 class 0x108000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.820029552Z]: pci 0000:00:08.0: reg 0x10: [mem 0xf0800000-0xf081ffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.824019552Z]: pci 0000:00:08.0: reg 0x18: [mem 0xfe800000-0xfe8fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.828019552Z]: pci 0000:00:08.0: reg 0x1c: [mem 0xfeb6f000-0xfeb6ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.832025552Z]: pci 0000:00:08.0: reg 0x24: [mem 0xfeb6a000-0xfeb6bfff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.836265552Z]: pci 0000:00:09.0: [1022:157d] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.840205552Z]: pci 0000:00:09.2: [1022:157a] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.844025552Z]: pci 0000:00:09.2: reg 0x10: [mem 0xfeb60000-0xfeb63fff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.848088552Z]: pci 0000:00:09.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.852260552Z]: pci 0000:00:10.0: [1022:7914] type 00 class 0x0c0330
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.856041552Z]: pci 0000:00:10.0: reg 0x10: [mem 0xfeb68000-0xfeb69fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.860166552Z]: pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.864285552Z]: pci 0000:00:11.0: [1022:7901] type 00 class 0x010601
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.868032552Z]: pci 0000:00:11.0: reg 0x10: [io  0xf140-0xf147]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.872022552Z]: pci 0000:00:11.0: reg 0x14: [io  0xf130-0xf133]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.876022552Z]: pci 0000:00:11.0: reg 0x18: [io  0xf120-0xf127]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.880022552Z]: pci 0000:00:11.0: reg 0x1c: [io  0xf110-0xf113]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.884022552Z]: pci 0000:00:11.0: reg 0x20: [io  0xf100-0xf10f]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.888022552Z]: pci 0000:00:11.0: reg 0x24: [mem 0xfeb6d000-0xfeb6d3ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.892073552Z]: pci 0000:00:11.0: PME# supported from D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.896263552Z]: pci 0000:00:12.0: [1022:7908] type 00 class 0x0c0320
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.900031552Z]: pci 0000:00:12.0: reg 0x10: [mem 0xfeb6c000-0xfeb6c0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.904122552Z]: pci 0000:00:12.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.912012552Z]: pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.916236552Z]: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.920298552Z]: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.924381552Z]: pci 0000:00:18.0: [1022:1570] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.928171552Z]: pci 0000:00:18.1: [1022:1571] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.932173552Z]: pci 0000:00:18.2: [1022:1572] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.936171552Z]: pci 0000:00:18.3: [1022:1573] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.940171552Z]: pci 0000:00:18.4: [1022:1574] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.944160552Z]: pci 0000:00:18.5: [1022:1575] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.948292552Z]: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.952035552Z]: pci 0000:01:00.0: reg 0x10: [io  0xe000-0xe0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.956042552Z]: pci 0000:01:00.0: reg 0x18: [mem 0xfea04000-0xfea04fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.960033552Z]: pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.964144552Z]: pci 0000:01:00.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.968012552Z]: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.972359552Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.976018552Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.980018552Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.984171552Z]: pci 0000:02:00.0: [8086:24fb] type 00 class 0x028000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.988055552Z]: pci 0000:02:00.0: reg 0x10: [mem 0xfe900000-0xfe901fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.992251552Z]: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:56.996388552Z]: pci 0000:00:02.3: PCI bridge to [bus 02]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.000020552Z]: pci 0000:00:02.3:   bridge window [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.010093552Z]: ACPI: PCI: Interrupt link LNKA configured for IRQ 10
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.012166552Z]: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.016151552Z]: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.020172552Z]: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.024158552Z]: ACPI: PCI: Interrupt link LNKE configured for IRQ 5
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.028136552Z]: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.032133552Z]: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.036132552Z]: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.041454552Z]: iommu: Default domain type: Translated 
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.044014552Z]: iommu: DMA domain TLB invalidation policy: lazy mode 
+ceph-thin1: kern:  notice: [2024-03-10T02:23:57.048311552Z]: SCSI subsystem initialized
+ceph-thin1: kern:   debug: [2024-03-10T02:23:57.052069552Z]: libata version 3.00 loaded.
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.052127552Z]: ACPI: bus type USB registered
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.056082552Z]: usbcore: registered new interface driver usbfs
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.060043552Z]: usbcore: registered new interface driver hub
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.064033552Z]: usbcore: registered new device driver usb
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.072021552Z]: pps_core: LinuxPPS API ver. 1 registered
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.076011552Z]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.080021552Z]: PTP clock support registered
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.084069552Z]: EDAC MC: Ver: 3.0.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.088705552Z]: NET: Registered PF_ATMPVC protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.092014552Z]: NET: Registered PF_ATMSVC protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.096035552Z]: NetLabel: Initializing
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.100014552Z]: NetLabel:  domain hash size = 128
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.104010552Z]: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.108062552Z]: NetLabel:  unlabeled traffic allowed by default
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.112109552Z]: PCI: Using ACPI for IRQ routing
+ceph-thin1: kern:   debug: [2024-03-10T02:23:57.118622552Z]: PCI: pci_cache_line_size set to 64 bytes
+ceph-thin1: kern:   debug: [2024-03-10T02:23:57.118722552Z]: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
+ceph-thin1: kern:   debug: [2024-03-10T02:23:57.118731552Z]: e820: reserve RAM buffer [mem 0xddf92000-0xdfffffff]
+ceph-thin1: kern:   debug: [2024-03-10T02:23:57.118738552Z]: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
+ceph-thin1: kern:   debug: [2024-03-10T02:23:57.118743552Z]: e820: reserve RAM buffer [mem 0x2ff000000-0x2ffffffff]
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.118812552Z]: pci 0000:00:01.0: vgaarb: setting as boot VGA device
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.120007552Z]: pci 0000:00:01.0: vgaarb: bridge control possible
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.120007552Z]: pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.120025552Z]: vgaarb: loaded
+ceph-thin1: kern: warning: [2024-03-10T02:23:57.125067552Z]: acpi PNP0C14:01: duplicate WMI GUID 5FB7F034-2C63-45E9-BE91-3D44E2C707E4 (first instance was on PNP0C14:00)
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0C14:01
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.132774552Z]: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.136011552Z]: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.142276552Z]: clocksource: Switched to clocksource tsc-early
+ceph-thin1: kern:  notice: [2024-03-10T02:23:57.270599552Z]: VFS: Disk quotas dquot_6.6.0
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.317526552Z]: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.399822552Z]: pnp: PnP ACPI init
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.436665552Z]: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:00
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.516047552Z]: system 00:01: [mem 0xc0000000-0xdfffffff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:01
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.599629552Z]: system 00:02: [mem 0xfeb80000-0xfebfffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:02
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.679903552Z]: system 00:04: [io  0x0a00-0x0a1f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.750722552Z]: system 00:04: [io  0x0a20-0x0a2f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.821500552Z]: system 00:04: [io  0x0e00-0x0efe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.892283552Z]: system 00:04: [io  0x0a40-0x0a5f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:    info: [2024-03-10T02:23:57.963058552Z]: system 00:04: [io  0x0a60-0x0a7f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.033828552Z]: system 00:04: [io  0x0a80-0x0a9f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.104588552Z]: system 00:04: [io  0x0a30-0x0a3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin1: kern:   debug: [2024-03-10T02:23:58.176273552Z]: pnp 00:07: [dma 0 disabled]
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:07
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.177478552Z]: system 00:08: [io  0x04d0-0x04d1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.248210552Z]: system 00:08: [io  0x040b] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.311710552Z]: system 00:08: [io  0x04d6] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.375213552Z]: system 00:08: [io  0x0c00-0x0c01] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.445981552Z]: system 00:08: [io  0x0c14] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.509497552Z]: system 00:08: [io  0x0c50-0x0c51] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.580252552Z]: system 00:08: [io  0x0c52] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.643750552Z]: system 00:08: [io  0x0c6c] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.707254552Z]: system 00:08: [io  0x0c6f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.770758552Z]: system 00:08: [io  0x0cd0-0x0cd1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.841540552Z]: system 00:08: [io  0x0cd2-0x0cd3] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.912317552Z]: system 00:08: [io  0x0cd4-0x0cd5] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:58.983075552Z]: system 00:08: [io  0x0cd6-0x0cd7] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.053852552Z]: system 00:08: [io  0x0cd8-0x0cdf] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.124610552Z]: system 00:08: [io  0x0800-0x089f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.195383552Z]: system 00:08: [io  0x0b00-0x0b0f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.266143552Z]: system 00:08: [io  0x0b20-0x0b3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.336903552Z]: system 00:08: [io  0x0900-0x090f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.407669552Z]: system 00:08: [io  0x0910-0x091f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.478457552Z]: system 00:08: [io  0xfe00-0xfefe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.549216552Z]: system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.632431552Z]: system 00:08: [mem 0xfec01000-0xfec01fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.715642552Z]: system 00:08: [mem 0xfedc0000-0xfedc0fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.794695552Z]: system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.873748552Z]: system 00:08: [mem 0xfed80000-0xfed8ffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:23:59.952810552Z]: system 00:08: [mem 0xfed61000-0xfed70fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.031877552Z]: system 00:08: [mem 0xfec10000-0xfec10fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.110939552Z]: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.191582552Z]: pnp: PnP ACPI: found 10 devices
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.253064552Z]: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.359230552Z]: NET: Registered PF_INET protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.418383552Z]: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.520211552Z]: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.623349552Z]: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.716523552Z]: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.814680552Z]: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.904412552Z]: TCP: Hash tables configured (established 131072 bind 65536)
+ceph-thin1: kern:    info: [2024-03-10T02:24:00.983827552Z]: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.065257552Z]: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.151833552Z]: NET: Registered PF_UNIX/PF_LOCAL protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.220120552Z]: RPC: Registered named UNIX socket transport module.
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.290898552Z]: RPC: Registered udp transport module.
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.347127552Z]: RPC: Registered tcp transport module.
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.403381552Z]: RPC: Registered tcp NFSv4.1 backchannel transport module.
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.480421552Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.539853552Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.612707552Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.693866552Z]: pci 0000:00:02.3: PCI bridge to [bus 02]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.753234552Z]: pci 0000:00:02.3:   bridge window [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.834400552Z]: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.908294552Z]: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:01.982202552Z]: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.056107552Z]: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.130022552Z]: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.212234552Z]: pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.294435552Z]: pci_bus 0000:00: resource 10 [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.377676552Z]: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.444305552Z]: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.519222552Z]: pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:02
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.594444552Z]: pci 0000:00:01.1: D0 power state depends on 0000:00:01.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.670423552Z]: pci 0000:00:01.1: quirk_gpu_hda+0x0/0x10 took 74270 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.748100552Z]: pci 0000:00:10.0: PME# does not work under D0, disabling it
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.827260552Z]: pci 0000:00:10.0: pci_fixup_amd_fch_xhci_pme+0x0/0x29 took 77304 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:02.936950552Z]: pci 0000:00:12.0: quirk_usb_early_handoff+0x0/0x720 took 18641 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.025588552Z]: PCI: CLS 0 bytes, default 64
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.072765552Z]: Unpacking initramfs...
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.078547552Z]: AMD-Vi: Using global IVHD EFR:0x77ef22294ada, EFR2:0x0
+ceph-thin1: kern: warning: [2024-03-10T02:24:03.187472552Z]: AMD-Vi: [Firmware Warn]: EFR mismatch. Use IVHD EFR (0x37ef22294ada : 0x77ef22294ada), EFR2 (0x0 : 0x0).
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.313340552Z]: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.395733552Z]: pci 0000:00:01.0: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.456185552Z]: pci 0000:00:01.1: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.516727552Z]: pci 0000:00:02.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.577158552Z]: pci 0000:00:02.2: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.637547552Z]: pci 0000:00:02.3: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.697967552Z]: pci 0000:00:03.0: Adding to iommu group 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.758436552Z]: pci 0000:00:08.0: Adding to iommu group 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.818856552Z]: pci 0000:00:09.0: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.879316552Z]: pci 0000:00:09.2: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:03.939712552Z]: pci 0000:00:10.0: Adding to iommu group 5
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.000126552Z]: pci 0000:00:11.0: Adding to iommu group 6
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.060528552Z]: pci 0000:00:12.0: Adding to iommu group 7
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.120971552Z]: pci 0000:00:14.0: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.181461552Z]: pci 0000:00:14.3: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.241971552Z]: pci 0000:00:18.0: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.302383552Z]: pci 0000:00:18.1: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.362790552Z]: pci 0000:00:18.2: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.423197552Z]: pci 0000:00:18.3: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.483643552Z]: pci 0000:00:18.4: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.544142552Z]: pci 0000:00:18.5: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.604609552Z]: pci 0000:01:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.665018552Z]: pci 0000:02:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.728175552Z]: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.793817552Z]: AMD-Vi: Extended features (0x77ef22294ada, 0x0): PPR NX GT IA GA PC GA_vAPIC
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.890989552Z]: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
+ceph-thin1: kern:    info: [2024-03-10T02:24:04.968027552Z]: software IO TLB: mapped [mem 0x00000000d9f92000-0x00000000ddf92000] (64MB)
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.063357552Z]: LVT offset 0 assigned for vector 0x400
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.152567552Z]: Freeing initrd memory: 58948K
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.200835552Z]: perf: AMD IBS detected (0x000007ff)
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.255054552Z]: amd_uncore: 4  amd_nb counters detected
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.313872552Z]: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
+ceph-thin1: kern:     err: [2024-03-10T02:24:05.399211552Z]: kvm: no hardware support for 'kvm_intel'
+ceph-thin1: kern:     err: [2024-03-10T02:24:05.458618552Z]: kvm: support for 'kvm_amd' disabled by bios
+ceph-thin1: kern:  notice: [2024-03-10T02:24:05.524388552Z]: Initialise system trusted keyrings
+ceph-thin1: kern:  notice: [2024-03-10T02:24:05.577594552Z]: Key type blacklist registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.625915552Z]: workingset: timestamp_bits=40 max_order=22 bucket_order=0
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.710930552Z]: squashfs: version 4.0 (2009/01/31) Phillip Lougher
+ceph-thin1: kern:  notice: [2024-03-10T02:24:05.781535552Z]: NFS: Registering the id_resolver key type
+ceph-thin1: kern:  notice: [2024-03-10T02:24:05.843246552Z]: Key type id_resolver registered
+ceph-thin1: kern:  notice: [2024-03-10T02:24:05.893280552Z]: Key type id_legacy registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:05.941336552Z]: nfs4filelayout_init: NFSv4 File Layout Driver Registering...
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.021490552Z]: nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
+ceph-thin1: kern:  notice: [2024-03-10T02:24:06.110963552Z]: Key type cifs.spnego registered
+ceph-thin1: kern:  notice: [2024-03-10T02:24:06.160984552Z]: Key type cifs.idmap registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.210184552Z]: fuse: init (API version 7.37)
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.258593552Z]: SGI XFS with ACLs, security attributes, quota, no debug enabled
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.344342552Z]: ceph: loaded (mds proto 32)
+ceph-thin1: kern:  notice: [2024-03-10T02:24:06.390443552Z]: integrity: Platform Keyring initialized
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.487567552Z]: NET: Registered PF_ALG protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.536576552Z]: tsc: Refined TSC clocksource calibration: 1996.251 MHz
+ceph-thin1: kern:  notice: [2024-03-10T02:24:06.544877552Z]: Key type asymmetric registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.544924552Z]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cb1e4d56, max_idle_ns: 881590790753 ns
+ceph-thin1: kern:  notice: [2024-03-10T02:24:06.544971552Z]: Asymmetric key parser 'x509' registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.845492552Z]: clocksource: Switched to clocksource tsc
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.845552552Z]: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
+ceph-thin1: kern:    info: [2024-03-10T02:24:06.993500552Z]: io scheduler mq-deadline registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.047775552Z]: io scheduler kyber registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.096962552Z]: pcieport 0000:00:02.2: PME: Signaling with IRQ 26
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.166229552Z]: pcieport 0000:00:02.3: PME: Signaling with IRQ 27
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.235340552Z]: hv_vmbus: registering driver hyperv_fb
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.292713552Z]: IPMI message handler: version 39.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.345906552Z]: ipmi device interface
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.385646552Z]: ipmi_si: IPMI System Interface driver
+ceph-thin1: kern: warning: [2024-03-10T02:24:07.442020552Z]: ipmi_si: Unable to find any System Interface(s)
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.508720552Z]: IPMI poweroff: Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.618323552Z]: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.718334552Z]: ACPI: button: Power Button [PWRB]
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.770563552Z]: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.859206552Z]: ACPI: button: Power Button [PWRF]
+ceph-thin1: kern:    info: [2024-03-10T02:24:07.911536552Z]: ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.000484552Z]: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.109851552Z]: ACPI: \x5c_PR_.P000: Found 2 idle states
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.166532552Z]: ACPI: \x5c_PR_.P001: Found 2 idle states
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.223178552Z]: ACPI: \x5c_PR_.P002: Found 2 idle states
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.279693552Z]: ACPI: \x5c_PR_.P003: Found 2 idle states
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.336484552Z]: ioatdma: Intel(R) QuickData Technology Driver 5.00
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.406746552Z]: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.481856552Z]: 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.571301552Z]: Non-volatile memory driver v1.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.621347552Z]: Linux agpgart interface v0.103
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.674304552Z]: tpm_tis 00:09: 1.2 TPM (device-id 0x1A, rev-id 16)
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:09
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.831632552Z]: ACPI: bus type drm_connector registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.890287552Z]: [drm] amdgpu kernel modesetting enabled.
+ceph-thin1: kern:    info: [2024-03-10T02:24:08.978368552Z]: [drm] initializing kernel modesetting (CARRIZO 0x1002:0x9874 0x103C:0x8158 0x88).
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.080484552Z]: [drm] register mmio base: 0xFEB00000
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.135744552Z]: [drm] register mmio size: 262144
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.187198552Z]: [drm] add ip block number 0 <vi_common>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.245559552Z]: [drm] add ip block number 1 <gmc_v8_0>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.302787552Z]: [drm] add ip block number 2 <cz_ih>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.356954552Z]: [drm] add ip block number 3 <gfx_v8_0>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.414244552Z]: [drm] add ip block number 4 <sdma_v3_0>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.472561552Z]: [drm] add ip block number 5 <powerplay>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.530877552Z]: [drm] add ip block number 6 <dm>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.581927552Z]: [drm] add ip block number 7 <uvd_v6_0>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.639209552Z]: [drm] add ip block number 8 <vce_v3_0>
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.712697552Z]: [drm] BIOS signature incorrect 5b 7
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.766977552Z]: amdgpu 0000:00:01.0: amdgpu: Fetched VBIOS from ROM BAR
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.841901552Z]: amdgpu: ATOM BIOS: 113-C75100-X28
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.894014552Z]: [drm] UVD is enabled in physical mode
+ceph-thin1: kern:    info: [2024-03-10T02:24:09.950227552Z]: [drm] VCE enabled in physical mode
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.003360552Z]: amdgpu 0000:00:01.0: vgaarb: deactivate vga console
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.075115552Z]: Console: switching to colour dummy device 80x25
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.141698552Z]: amdgpu 0000:00:01.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.148680552Z]: [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.337214552Z]: amdgpu 0000:00:01.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.337227552Z]: amdgpu 0000:00:01.0: amdgpu: GART: 1024M 0x000000FF00000000 - 0x000000FF3FFFFFFF
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.337244552Z]: [drm] Detected VRAM RAM=512M, BAR=512M
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.337248552Z]: [drm] RAM width 128bits UNKNOWN
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.337438552Z]: [drm] amdgpu: 512M of VRAM memory ready
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.716071552Z]: [drm] amdgpu: 5697M of GTT memory ready.
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.775457552Z]: [drm] GART: num cpu pages 262144, num gpu pages 262144
+ceph-thin1: kern:    info: [2024-03-10T02:24:10.849365552Z]: [drm] PCIE GART of 1024M enabled (table at 0x000000F400A00000).
+ceph-thin1: kern: warning: [2024-03-10T02:24:10.932807552Z]: amdgpu 0000:00:01.0: Direct firmware load for amdgpu/carrizo_pfp.bin failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:     err: [2024-03-10T02:24:11.042982552Z]: amdgpu 0000:00:01.0: amdgpu: gfx8: Failed to load firmware "amdgpu/carrizo_pfp.bin"
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:     err: [2024-03-10T02:24:11.146949552Z]: [drm:gfx_v8_0_sw_init.cold] *ERROR* Failed to load gfx firmware!
+ceph-thin1: kern:     err: [2024-03-10T02:24:11.231211552Z]: [drm:amdgpu_device_init.cold] *ERROR* sw_init of IP block <gfx_v8_0> failed -2
+ceph-thin1: kern:     err: [2024-03-10T02:24:11.330009552Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu_device_ip_init failed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:     err: [2024-03-10T02:24:11.407009552Z]: amdgpu 0000:00:01.0: amdgpu: Fatal error during GPU init
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:11.483009552Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu: finishing device.
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.557035552Z]: ------------[ cut here ]------------
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.612200552Z]: WARNING: CPU: 2 PID: 1 at drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c:655 amdgpu_irq_put+0x45/0x70
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.727607552Z]: Modules linked in:
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.764146552Z]: CPU: 2 PID: 1 Comm: swapper/0 Not tainted 6.1.61-talos #1
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.841118552Z]: Hardware name: HP HP t630 Thin Client/8158, BIOS M40 v01.09 09/03/2018
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.931593552Z]: RIP: 0010:amdgpu_irq_put+0x45/0x70
+ceph-thin1: kern: warning: [2024-03-10T02:24:11.984714552Z]: Code: 48 8b 4e 10 48 83 39 00 74 2c 89 d1 48 8d 04 88 8b 08 85 c9 74 14 f0 ff 08 b8 00 00 00 00 74 05 e9 f0 3d 16 01 e9 8b fd ff ff <0f> 0b b8 ea ff ff ff e9 df 3d 16 01 b8 ea ff ff ff e9 d5 3d 16 01
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.209075552Z]: RSP: 0018:ffffad2840037c28 EFLAGS: 00010246
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.271531552Z]: RAX: ffffa24fc0c5fa70 RBX: ffffa24fc70e0000 RCX: 0000000000000000
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.356868552Z]: RDX: 0000000000000000 RSI: ffffa24fc70e0be0 RDI: ffffa24fc70e0000
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.442186552Z]: RBP: ffffa24fc70e0010 R08: 0000000000000000 R09: 00000000401ec4fd
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.527510552Z]: R10: 0000000000000003 R11: ffffffff9a762d48 R12: ffffa24fc70e0010
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.612816552Z]: R13: 0000000000000001 R14: ffffa24fc70e0010 R15: ffffa24fc70e0000
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.698133552Z]: FS:  0000000000000000(0000) GS:ffffa251b3500000(0000) knlGS:0000000000000000
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.794841552Z]: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.863521552Z]: CR2: 0000000000000000 CR3: 00000001e0010000 CR4: 00000000001506e0
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.948827552Z]: Call Trace:
+ceph-thin1: kern: warning: [2024-03-10T02:24:12.978094552Z]:  <TASK>
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.003215552Z]:  ? __warn+0x7d/0xc0
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.040776552Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.086624552Z]:  ? report_bug+0xe6/0x170
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.129382552Z]:  ? handle_bug+0x41/0x70
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.171080552Z]:  ? exc_invalid_op+0x13/0x60
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.216974552Z]:  ? asm_exc_invalid_op+0x16/0x20
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.267004552Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.312877552Z]:  gmc_v8_0_hw_fini+0x17/0xa0
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.358742552Z]:  amdgpu_device_fini_hw+0x1cc/0x2af
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.411892552Z]:  amdgpu_driver_load_kms.cold+0x54/0x6a
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.469190552Z]:  amdgpu_pci_probe+0x125/0x340
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.517129552Z]:  local_pci_probe+0x41/0x80
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.561953552Z]:  pci_device_probe+0xbf/0x230
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.608856552Z]:  ? kernfs_create_link+0x5d/0xa0
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.658889552Z]:  ? sysfs_do_create_link_sd+0x6e/0xe0
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.714107552Z]:  really_probe+0xc7/0x280
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.756865552Z]:  ? pm_runtime_barrier+0x50/0x90
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.806877552Z]:  __driver_probe_device+0x73/0xf0
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.857955552Z]:  driver_probe_device+0x1f/0x90
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.906925552Z]:  __driver_attach+0x84/0x130
+ceph-thin1: kern: warning: [2024-03-10T02:24:13.952810552Z]:  ? __device_attach_driver+0xc0/0xc0
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.006972552Z]:  bus_for_each_dev+0x87/0xd0
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.052847552Z]:  bus_add_driver+0x186/0x1d0
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.098719552Z]:  driver_register+0x89/0xe0
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.143570552Z]:  ? drm_sched_fence_slab_init+0x87/0x87
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.200874552Z]:  do_one_initcall+0x59/0x230
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.246745552Z]:  kernel_init_freeable+0x2bb/0x35d
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.298850552Z]:  ? rest_init+0xd0/0xd0
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.339529552Z]:  kernel_init+0x16/0x130
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.381251552Z]:  ret_from_fork+0x22/0x30
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.424018552Z]:  </TASK>
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.450170552Z]: ---[ end trace 0000000000000000 ]---
+ceph-thin1: kern: warning: [2024-03-10T02:24:14.505938552Z]: amdgpu: probe of 0000:00:01.0 failed with error -2
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.575999552Z]: [drm] amdgpu: ttm finalized
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.628267552Z]: loop: module loaded
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.666191552Z]: rbd: loaded (major 252)
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.708091552Z]: Guest personality initialized and is inactive
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.772701552Z]: VMCI host device registered (name=vmci, major=10, minor=126)
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.852832552Z]: Initialized host personality
+ceph-thin1: kern:    info: [2024-03-10T02:24:14.899797552Z]: Loading iSCSI transport class v2.0-870.
+ceph-thin1: kern:  notice: [2024-03-10T02:24:14.958833552Z]: iscsi: registered transport (tcp)
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.010908552Z]: isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.088120552Z]: hv_vmbus: registering driver hv_storvsc
+ceph-thin1: kern:   debug: [2024-03-10T02:24:15.147944552Z]: ahci 0000:00:11.0: version 3.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.148414552Z]: ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.245215552Z]: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp fbs pio slum part 
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.346178552Z]: scsi host0: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host0
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.381177552Z]: scsi host1: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host1
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.415847552Z]: ata1: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d100 irq 19
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.504314552Z]: ata2: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d180 irq 19
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.595715552Z]: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.689311552Z]: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.805961552Z]: tun: Universal TUN/TAP device driver, 1.6
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.867016552Z]: QLogic/NetXen Network Driver v4.0.82
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.922482552Z]: usbcore: registered new interface driver r8152
+ceph-thin1: kern:    info: [2024-03-10T02:24:15.988096552Z]: hv_vmbus: registering driver hv_netvsc
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.045375552Z]: Fusion MPT base driver 3.04.20
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.072489552Z]: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.094369552Z]: Copyright (c) 1999-2008 LSI Corporation
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.094566552Z]: Fusion MPT SAS Host driver 3.04.20
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.168345552Z]: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.227191552Z]: ehci-pci 0000:00:12.0: EHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.280379552Z]: ata2.00: ATA-9: TEAM TM8PS7002T, W0220A0, max UDMA/133
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.353716552Z]: ehci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.416670552Z]: ata2.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.490107552Z]: ehci-pci 0000:00:12.0: debug port 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.578601552Z]: ata1.00: ATA-9: Fanxiang S201 2TB, W0220A0, max UDMA/133
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.660817552Z]: ehci-pci 0000:00:12.0: irq 18, io mem 0xfeb6c000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.715408552Z]: ata1.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.804575552Z]: ehci-pci 0000:00:12.0: USB 2.0 started, EHCI 1.00
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.859981552Z]: ata2.00: configured for UDMA/133
+ceph-thin1: kern:    info: [2024-03-10T02:24:16.941281552Z]: hub 1-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.010769552Z]: ata1.00: configured for UDMA/133
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.060489552Z]: hub 1-0:1.0: 2 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.061477552Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.105720552Z]: scsi 0:0:0:0: Direct-Access     ATA      Fanxiang S201 2T 0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.156453552Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.205139552Z]: sd 0:0:0:0: [sda] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.205191552Z]: sd 0:0:0:0: Attached scsi generic sg0 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.205567552Z]: scsi 1:0:0:0: Direct-Access     ATA      TEAM TM8PS7002T  0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.206466552Z]: sd 1:0:0:0: Attached scsi generic sg1 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.206632552Z]: sd 1:0:0:0: [sdb] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.206668552Z]: sd 1:0:0:0: [sdb] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:   debug: [2024-03-10T02:24:17.206676552Z]: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.206729552Z]: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.206798552Z]: sd 1:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.208264552Z]: sd 1:0:0:0: [sdb] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.267167552Z]: xhci_hcd 0000:00:10.0: hcc params 0x014040c3 hci version 0x100 quirks 0x0000000000000410
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.363517552Z]: sd 0:0:0:0: [sda] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.452893552Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.512470552Z]: usb 1-1: new high-speed USB device number 2 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1
+ceph-thin1: kern:   debug: [2024-03-10T02:24:17.544489552Z]: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.544571552Z]: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.608098552Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.689624552Z]: hub 1-1:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.689764552Z]: hub 1-1:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.704814552Z]: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.768263552Z]: xhci_hcd 0000:00:10.0: Host supports USB 3.0 SuperSpeed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:17.862354552Z]: sd 0:0:0:0: [sda] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:17.918694552Z]: hub 2-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:18.000473552Z]: usb 1-1.3: new high-speed USB device number 3 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:18.236471552Z]: usb 1-1.4: new high-speed USB device number 4 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.4
+ceph-thin1: kern:    info: [2024-03-10T02:24:18.264631552Z]: hub 2-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.209284552Z]: usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
+ SUBSYSTEM=usb
+ DEVICE=+usb:usb3
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.306568552Z]: hub 3-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.351424552Z]: hub 3-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.400067552Z]: usbcore: registered new interface driver cdc_acm
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.467764552Z]: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.565397552Z]: scsi host2: uas
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host2
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.599265552Z]: usbcore: registered new interface driver uas
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.662918552Z]: usb-storage 1-1.3:1.0: USB Mass Storage device detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3:1.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.700478552Z]: usb 2-4: new full-speed USB device number 2 using xhci_hcd
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-4
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.738312552Z]: scsi host3: usb-storage 1-1.3:1.0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host3
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.816163552Z]: scsi 2:0:0:0: Direct-Access     SABRENT  SSHD             0    PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.868295552Z]: usbcore: registered new interface driver usb-storage
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.970286552Z]: sd 2:0:0:0: Attached scsi generic sg2 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.971475552Z]: sd 2:0:0:0: [sdc] 937703088 512-byte logical blocks: (480 GB/447 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.971484552Z]: sd 2:0:0:0: [sdc] 4096-byte physical blocks
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.971963552Z]: sd 2:0:0:0: [sdc] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:   debug: [2024-03-10T02:24:19.971971552Z]: sd 2:0:0:0: [sdc] Mode Sense: 43 00 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.972714552Z]: sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:19.972963552Z]: sd 2:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern: warning: [2024-03-10T02:24:19.972971552Z]: sd 2:0:0:0: [sdc] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:19.977297552Z]: sd 2:0:0:0: [sdc] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:20.036602552Z]: usbcore: registered new interface driver usbserial_generic
+ceph-thin1: kern:    info: [2024-03-10T02:24:20.761582552Z]: usbserial: USB Serial support registered for generic
+ceph-thin1: kern:    info: [2024-03-10T02:24:20.833481552Z]: usbcore: registered new interface driver ch341
+ceph-thin1: kern:    info: [2024-03-10T02:24:20.899101552Z]: usbserial: USB Serial support registered for ch341-uart
+ceph-thin1: kern:    info: [2024-03-10T02:24:20.974077552Z]: usbcore: registered new interface driver cp210x
+ceph-thin1: kern:  notice: [2024-03-10T02:24:20.976168552Z]: scsi 3:0:0:0: Direct-Access     PNY      USB 3.2.1 FD     PMAP PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.040777552Z]: usbserial: USB Serial support registered for cp210x
+ceph-thin1: kern:  notice: [2024-03-10T02:24:21.137965552Z]: sd 3:0:0:0: Attached scsi generic sg3 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:21.138578552Z]: sd 3:0:0:0: [sdd] 242147328 512-byte logical blocks: (124 GB/115 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:21.139696552Z]: sd 3:0:0:0: [sdd] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:   debug: [2024-03-10T02:24:21.139704552Z]: sd 3:0:0:0: [sdd] Mode Sense: 45 00 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:  notice: [2024-03-10T02:24:21.140823552Z]: sd 3:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.208302552Z]: usbcore: registered new interface driver ftdi_sio
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.596400552Z]: usbserial: USB Serial support registered for FTDI USB Serial Device
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.683878552Z]: usbcore: registered new interface driver pl2303
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.750490552Z]: usbserial: USB Serial support registered for pl2303
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.821515552Z]: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.921794552Z]: serio: i8042 KBD port at 0x60,0x64 irq 1
+ceph-thin1: kern:    info: [2024-03-10T02:24:21.981200552Z]: serio: i8042 AUX port at 0x60,0x64 irq 12
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.041723552Z]: hv_vmbus: registering driver hyperv_keyboard
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.105648552Z]: mousedev: PS/2 mouse device common for all mice
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.118396552Z]:  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.173084552Z]: rtc_cmos 00:03: RTC can wake from S4
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin1: kern:  notice: [2024-03-10T02:24:22.227348552Z]: sd 3:0:0:0: [sdd] Attached SCSI removable disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.282343552Z]: rtc_cmos 00:03: registered as rtc0
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin1: kern: warning: [2024-03-10T02:24:22.347282552Z]: hpet: Lost 3 RTC interrupts
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.446451552Z]: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin1: kern:     err: [2024-03-10T02:24:22.538180552Z]: fail to initialize ptp_kvm
+ceph-thin1: kern: warning: [2024-03-10T02:24:22.538522552Z]: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.729146552Z]: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.830513552Z]: sdhci: Secure Digital Host Controller Interface driver
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.904365552Z]: sdhci: Copyright(c) Pierre Ossman
+ceph-thin1: kern:    info: [2024-03-10T02:24:22.956632552Z]: sdhci-pltfm: SDHCI platform and OF driver helper
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.024618552Z]: hid: raw HID events driver (C) Jiri Kosina
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.087105552Z]: usbcore: registered new interface driver usbhid
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.153719552Z]: usbhid: USB HID core driver
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.200767552Z]: hv_utils: Registering HyperV Utility Driver
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.263245552Z]: hv_vmbus: registering driver hv_utils
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.319511552Z]: hv_vmbus: registering driver hv_balloon
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.377938552Z]: NET: Registered PF_LLC protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.435168552Z]: GACT probability NOT on
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.476969552Z]: Mirror/redirect action on
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.520756552Z]: Simple TC action Loaded
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.562893552Z]: netem: version 1.3
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.599494552Z]: u32 classifier
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.631794552Z]:     input device check on
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.675507552Z]:     Actions configured
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.829886552Z]: xt_time: kernel timezone is -0000
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.882064552Z]: IPVS: Registered protocols (TCP, UDP)
+ceph-thin1: kern:    info: [2024-03-10T02:24:23.938357552Z]: IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.025829552Z]: IPVS: ipvs loaded.
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.062337552Z]: IPVS: [rr] scheduler registered.
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.113424552Z]: IPVS: [wrr] scheduler registered.
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.165544552Z]: IPVS: [lc] scheduler registered.
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.216635552Z]: IPVS: [sh] scheduler registered.
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.267884552Z]: ipip: IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.333821552Z]: gre: GRE over IPv4 demultiplexor driver
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.392144552Z]: Initializing XFRM netlink socket
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.443532552Z]: NET: Registered PF_INET6 protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.504314552Z]: Segment Routing with IPv6
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.548145552Z]: In-situ OAM (IOAM) with IPv6
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.595160552Z]: mip6: Mobile IPv6
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.630779552Z]: sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.702530552Z]: NET: Registered PF_PACKET protocol family
+ceph-thin1: kern:  notice: [2024-03-10T02:24:24.763043552Z]: Bridge firewalling registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.811284552Z]: NET: Registered PF_APPLETALK protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.874793552Z]: NET: Registered PF_X25 protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.932066552Z]: X25: Linux Version 0.2
+ceph-thin1: kern:    info: [2024-03-10T02:24:24.972820552Z]: RPC: Registered rdma transport module.
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.030131552Z]: RPC: Registered rdma backchannel transport module.
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.100050552Z]: l2tp_core: L2TP core driver, V2.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.152138552Z]: NET: Registered PF_PHONET protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.212665552Z]: 8021q: 802.1Q VLAN Support v1.8
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.269182552Z]: DCCP: Activated CCID 2 (TCP-like)
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.321358552Z]: DCCP: Activated CCID 3 (TCP-Friendly Rate Control)
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.391629552Z]: sctp: Hash tables configured (bind 256/256)
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.454813552Z]: NET: Registered PF_RDS protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.513540552Z]: NET: Registered PF_IEEE802154 protocol family
+ceph-thin1: kern:  notice: [2024-03-10T02:24:25.578133552Z]: Key type dns_resolver registered
+ceph-thin1: kern:  notice: [2024-03-10T02:24:25.629180552Z]: Key type ceph registered
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.672192552Z]: libceph: loaded (mon/osd proto 15/24)
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.728483552Z]: openvswitch: Open vSwitch switching datapath
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.793198552Z]: NET: Registered PF_VSOCK protocol family
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.852594552Z]: mpls_gso: MPLS GSO support
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.897410552Z]: x86/pm: family 0x15 cpu detected, MSR saving is needed during suspending.
+ceph-thin1: kern:    info: [2024-03-10T02:24:25.992595552Z]: microcode: CPU0: patch_level=0x0600611a
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.050863552Z]: microcode: CPU1: patch_level=0x0600611a
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.109263552Z]: microcode: CPU2: patch_level=0x0600611a
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.167549552Z]: microcode: CPU3: patch_level=0x0600611a
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.225882552Z]: microcode: Microcode Update Driver: v2.2.
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.225902552Z]: IPI shorthand broadcast: enabled
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.337390552Z]: AVX2 version of gcm_enc/dec engaged.
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.392779552Z]: AES CTR mode by8 optimization enabled
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.450220552Z]: sched_clock: Marking stable (32185701419, 11471532235)->(56250211609, -12592977955)
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.554602552Z]: registered taskstats version 1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:26.603548552Z]: Loading compiled-in X.509 certificates
+ceph-thin1: kern:  notice: [2024-03-10T02:24:26.664161552Z]: Loaded X.509 cert 'Sidero Labs, Inc.: Build time throw-away kernel key: 5ec02fb0cf80adf5fd052b049a2f3c73c62e9f08'
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.799372552Z]: ima: Allocated hash algorithm: sha512
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.893209552Z]: ima: No architecture policies found
+ceph-thin1: kern:    info: [2024-03-10T02:24:26.953619552Z]: PM:   Magic number: 0:763:358
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.001767552Z]: printk: console [netcon0] enabled
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.053842552Z]: netconsole: network logging started
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.108695552Z]: acpi_cpufreq: overriding BIOS provided _PSD data
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.186347552Z]: Freeing unused kernel image (initmem) memory: 3088K
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.264624552Z]: Write protecting the kernel read-only data: 49152k
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.335612552Z]: Freeing unused kernel image (text/rodata gap) memory: 2024K
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.415331552Z]: Freeing unused kernel image (rodata/data gap) memory: 964K
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.604069552Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.681031552Z]: x86/mm: Checking user space page tables
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.845497552Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin1: kern:    info: [2024-03-10T02:24:27.922500552Z]: Run /init as init process
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966296552Z]:   with arguments:
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966298552Z]:     /init
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966299552Z]:   with environment:
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966301552Z]:     HOME=/
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966302552Z]:     TERM=linux
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966304552Z]:     BOOT_IMAGE=/A/vmlinuz
+ceph-thin1: kern:   debug: [2024-03-10T02:24:27.966306552Z]:     pti=on
+ceph-thin1: user: warning: [2024-03-10T02:24:27.981768552Z]: [talos] [initramfs] TPM device is not available
+ceph-thin1: user: warning: [2024-03-10T02:24:28.052768552Z]: [talos] [initramfs] TPM device is not available, skipping PCR extension
+ceph-thin1: user: warning: [2024-03-10T02:24:28.144372552Z]: [talos] [initramfs] booting Talos v1.5.5
+ceph-thin1: user: warning: [2024-03-10T02:24:28.203754552Z]: [talos] [initramfs] mounting the rootfs
+ceph-thin1: kern:    info: [2024-03-10T02:24:28.262238552Z]: loop0: detected capacity change from 0 to 105192
+ceph-thin1: user: warning: [2024-03-10T02:24:28.346338552Z]: [talos] [initramfs] bind mounting /lib/firmware
+ceph-thin1: user: warning: [2024-03-10T02:24:28.415774552Z]: [talos] [initramfs] entering the rootfs
+ceph-thin1: user: warning: [2024-03-10T02:24:28.474160552Z]: [talos] [initramfs] moving mounts to the new rootfs
+ceph-thin1: user: warning: [2024-03-10T02:24:28.545612552Z]: [talos] [initramfs] changing working directory into /root
+ceph-thin1: user: warning: [2024-03-10T02:24:28.622739552Z]: [talos] [initramfs] moving /root to /
+ceph-thin1: user: warning: [2024-03-10T02:24:28.678976552Z]: [talos] [initramfs] changing root directory
+ceph-thin1: user: warning: [2024-03-10T02:24:28.741468552Z]: [talos] [initramfs] cleaning up initramfs
+ceph-thin1: user: warning: [2024-03-10T02:24:28.806370552Z]: [talos] [initramfs] TPM device is not available, skipping PCR extension
+ceph-thin1: user: warning: [2024-03-10T02:24:28.897911552Z]: [talos] [initramfs] executing /sbin/init
+ceph-thin1: user: warning: [2024-03-10T02:24:33.052753552Z]: [talos] task setupLogger (1/1): done, 366.656\xc2\xb5s
+ceph-thin1: user: warning: [2024-03-10T02:24:33.120700552Z]: [talos] phase logger (1/11): done, 68.362706ms
+ceph-thin1: user: warning: [2024-03-10T02:24:33.186521552Z]: [talos] phase systemRequirements (2/11): 6 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:33.257375552Z]: [talos] task setRLimit (6/6): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:33.314720552Z]: [talos] task setRLimit (6/6): done, 57.372963ms
+ceph-thin1: user: warning: [2024-03-10T02:24:33.381356552Z]: [talos] task mountCgroups (4/6): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:33.441735552Z]: [talos] task mountPseudoFilesystems (5/6): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:33.512513552Z]: [talos] task mountBPFFS (3/6): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:33.570837552Z]: [talos] task setupSystemDirectory (2/6): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:33.639548552Z]: [talos] task enforceKSPPRequirements (1/6): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:33.711519552Z]: [talos] task setupSystemDirectory (2/6): done, 454.088635ms
+ceph-thin1: user: warning: [2024-03-10T02:24:33.790569552Z]: [talos] task mountCgroups (4/6): done, 454.271549ms
+ceph-thin1: user: warning: [2024-03-10T02:24:33.861413552Z]: [talos] task mountPseudoFilesystems (5/6): done, 454.435861ms
+ceph-thin1: user: warning: [2024-03-10T02:24:33.942673552Z]: [talos] task mountBPFFS (3/6): done, 683.475057ms
+ceph-thin1: user: warning: [2024-03-10T02:24:34.051819552Z]: [talos] task enforceKSPPRequirements (1/6): done, 794.380159ms
+ceph-thin1: user: warning: [2024-03-10T02:24:34.134282552Z]: [talos] phase systemRequirements (2/11): done, 947.783017ms
+ceph-thin1: user: warning: [2024-03-10T02:24:34.213452552Z]: [talos] phase integrity (3/11): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:34.278561552Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin1: user: warning: [2024-03-10T02:24:34.448184552Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin1: user: warning: [2024-03-10T02:24:34.616660552Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "127.0.0.1/8", "link": "lo"}
+ceph-thin1: user: warning: [2024-03-10T02:24:34.787424552Z]: [talos] task writeIMAPolicy (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:34.849988552Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin1: kern:  notice: [2024-03-10T02:24:34.850261552Z]: audit: type=1807 audit(1710037439.209:2): action=dont_measure fsmagic=0x9fa0 res=1
+ceph-thin1: kern:    info: [2024-03-10T02:24:34.850402552Z]: ima: policy update completed
+ceph-thin1: user: warning: [2024-03-10T02:24:35.019557552Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin1: kern:  notice: [2024-03-10T02:24:35.122352552Z]: audit: type=1807 audit(1710037439.209:3): action=dont_measure fsmagic=0x62656572 res=1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:35.122356552Z]: audit: type=1807 audit(1710037439.209:4): action=dont_measure fsmagic=0x64626720 res=1
+ceph-thin1: user: warning: [2024-03-10T02:24:35.169303552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: kern:  notice: [2024-03-10T02:24:35.337605552Z]: audit: type=1807 audit(1710037439.209:5): action=dont_measure fsmagic=0x1021994 res=1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:35.337609552Z]: audit: type=1807 audit(1710037439.209:6): action=dont_measure fsmagic=0x1cd1 res=1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:36.008944552Z]: audit: type=1807 audit(1710037439.209:7): action=dont_measure fsmagic=0x42494e4d res=1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:36.116037552Z]: audit: type=1807 audit(1710037439.209:8): action=dont_measure fsmagic=0x73636673 res=1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:36.223174552Z]: audit: type=1807 audit(1710037439.209:9): action=dont_measure fsmagic=0xf97cff8c res=1
+ceph-thin1: kern:  notice: [2024-03-10T02:24:36.330318552Z]: audit: type=1807 audit(1710037439.209:10): action=dont_measure fsmagic=0x43415d53 res=1
+ceph-thin1: user: warning: [2024-03-10T02:24:36.338335552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: kern:  notice: [2024-03-10T02:24:36.438467552Z]: audit: type=1807 audit(1710037439.209:11): action=dont_measure fsmagic=0x27e0eb res=1
+ceph-thin1: user: warning: [2024-03-10T02:24:36.793079552Z]: [talos] task writeIMAPolicy (1/1): done, 2.166011238s
+ceph-thin1: user: warning: [2024-03-10T02:24:36.866011552Z]: [talos] phase integrity (3/11): done, 2.652564586s
+ceph-thin1: user: warning: [2024-03-10T02:24:36.935753552Z]: [talos] phase etc (4/11): 3 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:36.991029552Z]: [talos] task setUserEnvVars (3/3): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:37.053600552Z]: [talos] task setUserEnvVars (3/3): done, 62.593327ms
+ceph-thin1: user: warning: [2024-03-10T02:24:37.125444552Z]: [talos] task CreateSystemCgroups (1/3): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:37.193094552Z]: [talos] task createOSReleaseFile (2/3): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:37.269306552Z]: [talos] task createOSReleaseFile (2/3): done, 278.250528ms
+ceph-thin1: user: warning: [2024-03-10T02:24:37.356055552Z]: [talos] task CreateSystemCgroups (1/3): done, 365.01676ms
+ceph-thin1: user: warning: [2024-03-10T02:24:37.433232552Z]: [talos] phase etc (4/11): done, 497.484895ms
+ceph-thin1: user: warning: [2024-03-10T02:24:37.496875552Z]: [talos] phase earlyServices (5/11): 2 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:37.562625552Z]: [talos] task startMachined (2/2): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:37.624176552Z]: [talos] task startUdevd (1/2): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:37.682657552Z]: [talos] TPM device is not available, skipping PCR extension
+ceph-thin1: user: warning: [2024-03-10T02:24:37.761864552Z]: [talos] service[machined](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:24:37.836852552Z]: [talos] service[machined](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-10T02:24:37.918061552Z]: [talos] service[udevd](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:24:37.989869552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:38.238147552Z]: [talos] service[machined](Running): Service started as goroutine
+ceph-thin1: user: warning: [2024-03-10T02:24:38.322456552Z]: [talos] service[udevd](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-10T02:24:38.919225552Z]: [talos] service[machined](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-10T02:24:38.998578552Z]: [talos] task startMachined (2/2): done, 1.435968641s
+ceph-thin1: user: warning: [2024-03-10T02:24:39.239657552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:40.489174552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:41.738385552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:42.539004552Z]: [talos] service[udevd](Running): Process Process(["/sbin/udevd" "--resolve-names=never"]) started with PID 697
+ceph-thin1: daemon:    info: [2024-03-10T02:24:42.803284552Z]: udevd[697]: starting version 3.2.12
+ceph-thin1: user: warning: [2024-03-10T02:24:42.987855552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: daemon:    info: [2024-03-10T02:24:43.059322552Z]: udevd[697]: starting eudev-3.2.12
+ceph-thin1: kern:    info: [2024-03-10T02:24:43.640408552Z]: r8169 0000:01:00.0 eth0: RTL8168h/8111h, 7c:d3:0a:2d:70:0e, XID 541, IRQ 34
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:43.736196552Z]: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:43.839807552Z]: r8169 0000:01:00.0 enp1s0: renamed from eth0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-10T02:24:44.133599552Z]: [talos] service[udevd](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-10T02:24:44.209736552Z]: [talos] task startUdevd (1/2): done, 6.647107153s
+ceph-thin1: kern: warning: [2024-03-10T02:24:44.236054552Z]: r8169 0000:01:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-10T02:24:44.278595552Z]: [talos] phase earlyServices (5/11): done, 6.781717211s
+ceph-thin1: kern:     err: [2024-03-10T02:24:44.460379552Z]: r8169 0000:01:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-10T02:24:44.460586552Z]: [talos] phase meta (6/11): 1 tasks(s)
+ceph-thin1: kern:    info: [2024-03-10T02:24:44.588645552Z]: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
+ SUBSYSTEM=mdio_bus
+ DEVICE=+mdio_bus:r8169-0-100:00
+ceph-thin1: user: warning: [2024-03-10T02:24:44.607201552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:44.981630552Z]: [talos] task reloadMeta (1/1): starting
+ceph-thin1: kern:    info: [2024-03-10T02:24:45.074073552Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-10T02:24:45.148570552Z]: [talos] META: loaded 0 keys
+ceph-thin1: user: warning: [2024-03-10T02:24:45.194748552Z]: [talos] task reloadMeta (1/1): done, 587.431774ms
+ceph-thin1: user: warning: [2024-03-10T02:24:45.263496552Z]: [talos] phase meta (6/11): done, 802.920219ms
+ceph-thin1: user: warning: [2024-03-10T02:24:45.328086552Z]: [talos] phase dashboard (7/11): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:45.389545552Z]: [talos] task startDashboard (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:45.452032552Z]: [talos] task startDashboard (1/1): done, 62.488538ms
+ceph-thin1: user: warning: [2024-03-10T02:24:45.523833552Z]: [talos] phase dashboard (7/11): done, 195.747317ms
+ceph-thin1: user: warning: [2024-03-10T02:24:45.593570552Z]: [talos] service[dashboard](Waiting): Waiting for service "machined" to be "up", file "/system/run/machined/machine.sock" to exist
+ceph-thin1: user: warning: [2024-03-10T02:24:45.745373552Z]: [talos] phase mountSystem (9/11): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:45.808968552Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:45.876689552Z]: [talos] service[dashboard](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:24:45.953550552Z]: [talos] service[dashboard](Preparing): Creating service runner
+ceph-thin1: kern:  notice: [2024-03-10T02:24:45.968068552Z]: XFS (sdd5): Mounting V5 Filesystem
+ceph-thin1: user: warning: [2024-03-10T02:24:46.036521552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:46.338312552Z]: [talos] service[dashboard](Running): Process Process(["/sbin/dashboard"]) started with PID 1634
+ceph-thin1: user: warning: [2024-03-10T02:24:47.338523552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: kern:    info: [2024-03-10T02:24:48.423230552Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: kern:    info: [2024-03-10T02:24:48.514886552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T02:24:48.551331552Z]: XFS (sdd5): Ending clean mount
+ceph-thin1: user: warning: [2024-03-10T02:24:48.588328552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:48.898695552Z]: [talos] task mountStatePartition (1/1): done, 3.089707952s
+ceph-thin1: user: warning: [2024-03-10T02:24:48.976892552Z]: [talos] phase mountSystem (9/11): done, 3.383284545s
+ceph-thin1: user: warning: [2024-03-10T02:24:49.048787552Z]: [talos] phase config (10/11): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:49.108116552Z]: [talos] node identity established {"component": "controller-runtime", "controller": "cluster.NodeIdentityController", "node_id": "FxZHeH15UnK1ckSA2zyS0iZGMdHzIgkQbXfAHQiSKa1"}
+ceph-thin1: user: warning: [2024-03-10T02:24:49.307714552Z]: [talos] task loadConfig (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:49.373577552Z]: [talos] machine config loaded successfully {"component": "controller-runtime", "controller": "config.AcquireController", "sources": ["state"]}
+ceph-thin1: user: warning: [2024-03-10T02:24:49.539451552Z]: [talos] enabling JSON logging {"component": "controller-runtime"}
+ceph-thin1: user: warning: [2024-03-10T02:24:49.626275552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-ddu-377", "domainname": ""}
+ceph-thin1: user: warning: [2024-03-10T02:24:49.805098552Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin1: user: warning: [2024-03-10T02:24:50.032651552Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87", "192.168.1.9"]}
+ceph-thin1: user: warning: [2024-03-10T02:24:50.211405552Z]: [talos] task loadConfig (1/1): done, 430.696972ms
+ceph-thin1: user: warning: [2024-03-10T02:24:50.280185552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:50.528550552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-ddu-377", "domainname": ""}
+ceph-thin1: user: warning: [2024-03-10T02:24:50.707511552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-10T02:24:50.707617552Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin1: user: warning: [2024-03-10T02:24:50.707638552Z]: [talos] phase config (10/11): done, 1.231403689s
+ceph-thin1: user: warning: [2024-03-10T02:24:50.707664552Z]: [talos] phase unmountSystem (11/11): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:50.707710552Z]: [talos] task unmountStatePartition (1/1): starting
+ceph-thin1: kern:  notice: [2024-03-10T02:24:51.101901552Z]: XFS (sdd5): Unmounting Filesystem
+ceph-thin1: user: warning: [2024-03-10T02:24:51.329741552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-10T02:24:51.979595552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:52.236378552Z]: [talos] task unmountStatePartition (1/1): done, 1.286389283s
+ceph-thin1: user: warning: [2024-03-10T02:24:52.236454552Z]: [talos] phase unmountSystem (11/11): done, 1.528773858s
+ceph-thin1: user: warning: [2024-03-10T02:24:52.236469552Z]: [talos] initialize sequence: done: 19.184205826s
+ceph-thin1: user: warning: [2024-03-10T02:24:52.236513552Z]: [talos] install sequence: 0 phase(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:52.236526552Z]: [talos] install sequence: done: 12.377\xc2\xb5s
+ceph-thin1: user: warning: [2024-03-10T02:24:52.236589552Z]: [talos] boot sequence: 18 phase(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:52.627922552Z]: [talos] phase saveStateEncryptionConfig (1/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:52.706061552Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin1: user: warning: [2024-03-10T02:24:52.820567552Z]: [talos] task SaveStateEncryptionConfig (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:52.894643552Z]: [talos] task SaveStateEncryptionConfig (1/1): done, 188.420404ms
+ceph-thin1: user: warning: [2024-03-10T02:24:52.979080552Z]: [talos] phase saveStateEncryptionConfig (1/18): done, 351.171001ms
+ceph-thin1: user: warning: [2024-03-10T02:24:52.979098552Z]: [talos] phase mountState (2/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:52.979131552Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin1: kern:  notice: [2024-03-10T02:24:52.993772552Z]: XFS (sdd5): Mounting V5 Filesystem
+ceph-thin1: user: warning: [2024-03-10T02:24:53.249568552Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:53.506432552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-10T02:24:53.908590552Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be registered, api certificates
+ceph-thin1: user: warning: [2024-03-10T02:24:54.045296552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin1", "domainname": "dezendorf.net"}
+ceph-thin1: user: warning: [2024-03-10T02:24:54.236195552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "network.RouteSpecController", "error": "1 error occurred:\x5cn\x5ct* error adding route: netlink receive: network is unreachable, message {Family:2 DstLength:0 SrcLength:0 Tos:0 Table:0 Protocol:3 Scope:0 Type:1 Flags:0 Attributes:{Dst:<nil> Src:192.168.0.21 Gateway:192.168.1.1 OutIface:8 Priority:1024 Table:254 Mark:0 Pref:<nil> Expires:<nil> Metrics:<nil> Multipath:[]}}\x5cn\x5cn"}
+ceph-thin1: kern:    info: [2024-03-10T02:24:54.740919552Z]: XFS (sdd5): Ending clean mount
+ceph-thin1: user: warning: [2024-03-10T02:24:54.741410552Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.21/23", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T02:24:54.968897552Z]: [talos] ntp query error with server "72.30.35.89" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 72.30.35.89:123: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:55.186185552Z]: [talos] task mountStatePartition (1/1): done, 2.001202564s
+ceph-thin1: user: warning: [2024-03-10T02:24:55.264401552Z]: [talos] phase mountState (2/18): done, 2.28530002s
+ceph-thin1: user: warning: [2024-03-10T02:24:55.264421552Z]: [talos] ntp query error with server "108.181.220.94" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.181.220.94:123: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:55.264548552Z]: [talos] ntp query error with server "5.78.89.3" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 5.78.89.3:123: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-10T02:24:55.770867552Z]: [talos] phase saveConfig (3/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:55.833427552Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin1: user: warning: [2024-03-10T02:24:55.833485552Z]: [talos] adjusting time (jump) by 24.669743104s via 72.30.35.88, state TIME_OK, status STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin1: user: warning: [2024-03-10T02:24:56.277290552Z]: [talos] synchronized RTC with system clock {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin1: user: warning: [2024-03-10T02:24:56.414542552Z]: [talos] task saveConfig (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:56.414554552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp [2a01:111:f100:2000::a83e:3731]:443: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-10T02:24:56.841869552Z]: [talos] task saveConfig (1/1): done, 1.008143336s
+ceph-thin1: user: warning: [2024-03-10T02:24:56.910783552Z]: [talos] phase saveConfig (3/18): done, 1.646139218s
+ceph-thin1: user: warning: [2024-03-10T02:24:56.910805552Z]: [talos] phase memorySizeCheck (4/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:56.910843552Z]: [talos] task memorySizeCheck (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:57.113124552Z]: [talos] memory size is OK
+ceph-thin1: user: warning: [2024-03-10T02:24:57.156989552Z]: [talos] memory size is 11400 MiB
+ceph-thin1: user: warning: [2024-03-10T02:24:57.157027552Z]: [talos] task memorySizeCheck (1/1): done, 246.181154ms
+ceph-thin1: user: warning: [2024-03-10T02:24:57.157062552Z]: [talos] phase memorySizeCheck (4/18): done, 246.260192ms
+ceph-thin1: user: warning: [2024-03-10T02:24:57.157077552Z]: [talos] phase diskSizeCheck (5/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:57.423662552Z]: [talos] task diskSizeCheck (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:57.485216552Z]: [talos] disk size is OK
+ceph-thin1: user: warning: [2024-03-10T02:24:57.485231552Z]: [talos] disk size is 118236 MiB
+ceph-thin1: user: warning: [2024-03-10T02:24:57.485258552Z]: [talos] task diskSizeCheck (1/1): done, 61.598155ms
+ceph-thin1: user: warning: [2024-03-10T02:24:57.485291552Z]: [talos] phase diskSizeCheck (5/18): done, 328.215236ms
+ceph-thin1: user: warning: [2024-03-10T02:24:57.721727552Z]: [talos] phase env (6/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:57.721799552Z]: [talos] task setUserEnvVars (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:57.839527552Z]: [talos] task setUserEnvVars (1/1): done, 117.749616ms
+ceph-thin1: user: warning: [2024-03-10T02:24:57.839559552Z]: [talos] phase env (6/18): done, 117.834867ms
+ceph-thin1: user: warning: [2024-03-10T02:24:57.839579552Z]: [talos] phase containerd (7/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:24:58.038449552Z]: [talos] task startContainerd (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:24:58.038509552Z]: [talos] service[containerd](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:24:58.179125552Z]: [talos] service[containerd](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-10T02:24:58.179975552Z]: [talos] service[containerd](Running): Process Process(["/bin/containerd" "--address" "/system/run/containerd/containerd.sock" "--state" "/system/run/containerd" "--root" "/system/var/lib/containerd"]) started with PID 1656
+ceph-thin1: user: warning: [2024-03-10T02:24:58.820852552Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin1: user: warning: [2024-03-10T02:24:59.326974552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp [2a01:111:f100:2000::a83e:3731]:443: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-10T02:25:01.606904552Z]: [talos] service[containerd](Running): Health check failed: rpc error: code = DeadlineExceeded desc = context deadline exceeded
+ceph-thin1: user: warning: [2024-03-10T02:25:04.181978552Z]: [talos] service[containerd](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-10T02:25:04.263404552Z]: [talos] service[apid](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:25:04.334348552Z]: [talos] task startContainerd (1/1): done, 6.224945899s
+ceph-thin1: user: warning: [2024-03-10T02:25:04.408399552Z]: [talos] service[apid](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-10T02:25:04.485623552Z]: [talos] phase containerd (7/18): done, 6.56897908s
+ceph-thin1: user: warning: [2024-03-10T02:25:04.485686552Z]: [talos] phase dbus (8/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:04.611796552Z]: [talos] task startDBus (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:04.670410552Z]: [talos] task startDBus (1/1): done, 58.616458ms
+ceph-thin1: user: warning: [2024-03-10T02:25:04.737140552Z]: [talos] phase dbus (8/18): done, 251.455194ms
+ceph-thin1: user: warning: [2024-03-10T02:25:04.801671552Z]: [talos] phase ephemeral (9/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:04.863349552Z]: [talos] task mountEphemeralPartition (1/1): starting
+ceph-thin1: kern:  notice: [2024-03-10T02:25:04.951551552Z]: XFS (sdd6): Mounting V5 Filesystem
+ceph-thin1: user: warning: [2024-03-10T02:25:06.677087552Z]: [talos] service[apid](Running): Started task apid (PID 1717) for container apid
+ceph-thin1: kern:    info: [2024-03-10T02:25:08.171377552Z]: XFS (sdd6): Ending clean mount
+ceph-thin1: user: warning: [2024-03-10T02:25:08.302465552Z]: [talos] task mountEphemeralPartition (1/1): done, 3.439183928s
+ceph-thin1: user: warning: [2024-03-10T02:25:08.384786552Z]: [talos] phase ephemeral (9/18): done, 3.583113779s
+ceph-thin1: user: warning: [2024-03-10T02:25:08.384806552Z]: [talos] phase var (10/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:08.384841552Z]: [talos] task setupVarDirectory (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:08.385263552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "error": "error writing kubelet PKI: open /etc/kubernetes/bootstrap-kubeconfig: read-only file system"}
+ceph-thin1: user: warning: [2024-03-10T02:25:08.813434552Z]: [talos] task setupVarDirectory (1/1): done, 21.226739ms
+ceph-thin1: user: warning: [2024-03-10T02:25:08.813523552Z]: [talos] phase var (10/18): done, 428.679182ms
+ceph-thin1: user: warning: [2024-03-10T02:25:08.953044552Z]: [talos] phase overlay (11/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:09.013593552Z]: [talos] task mountOverlayFilesystems (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:09.095529552Z]: [talos] task mountOverlayFilesystems (1/1): done, 81.925844ms
+ceph-thin1: user: warning: [2024-03-10T02:25:09.177024552Z]: [talos] phase overlay (11/18): done, 223.927448ms
+ceph-thin1: user: warning: [2024-03-10T02:25:09.245949552Z]: [talos] phase legacyCleanup (12/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:09.312732552Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:09.388969552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin1: user: warning: [2024-03-10T02:25:09.501436552Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): done, 76.396296ms
+ceph-thin1: user: warning: [2024-03-10T02:25:09.586840552Z]: [talos] phase legacyCleanup (12/18): done, 340.895182ms
+ceph-thin1: user: warning: [2024-03-10T02:25:09.661817552Z]: [talos] phase udevSetup (13/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:09.661872552Z]: [talos] task writeUdevRules (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:09.662117552Z]: [talos] task writeUdevRules (1/1): done, 242.001\xc2\xb5s
+ceph-thin1: user: warning: [2024-03-10T02:25:09.857742552Z]: [talos] phase udevSetup (13/18): done, 195.923275ms
+ceph-thin1: user: warning: [2024-03-10T02:25:09.857761552Z]: [talos] phase userDisks (14/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:09.857922552Z]: [talos] task mountUserDisks (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:10.053625552Z]: [talos] task mountUserDisks (1/1): done, 195.74525ms
+ceph-thin1: user: warning: [2024-03-10T02:25:10.125554552Z]: [talos] phase userDisks (14/18): done, 267.790525ms
+ceph-thin1: user: warning: [2024-03-10T02:25:10.196403552Z]: [talos] phase userSetup (15/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:10.196492552Z]: [talos] task writeUserFiles (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:10.196517552Z]: [talos] task writeUserFiles (1/1): done, 27.322\xc2\xb5s
+ceph-thin1: user: warning: [2024-03-10T02:25:10.196535552Z]: [talos] phase userSetup (15/18): done, 141.597\xc2\xb5s
+ceph-thin1: user: warning: [2024-03-10T02:25:10.196548552Z]: [talos] phase lvm (16/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:10.196580552Z]: [talos] task activateLogicalVolumes (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:10.501964552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be registered
+ceph-thin1: user: warning: [2024-03-10T02:25:10.685171552Z]: [talos] service[apid](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-10T02:25:10.803060552Z]: [talos] task activateLogicalVolumes (1/1): done, 606.459224ms
+ceph-thin1: user: warning: [2024-03-10T02:25:10.884370552Z]: [talos] phase lvm (16/18): done, 687.813384ms
+ceph-thin1: user: warning: [2024-03-10T02:25:10.948939552Z]: [talos] phase extendPCRStartAll (17/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:11.019798552Z]: [talos] task extendPCRStartAll (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:11.089117552Z]: [talos] TPM device is not available, skipping PCR extension
+ceph-thin1: user: warning: [2024-03-10T02:25:11.168376552Z]: [talos] task extendPCRStartAll (1/1): done, 148.575805ms
+ceph-thin1: user: warning: [2024-03-10T02:25:11.244435552Z]: [talos] phase extendPCRStartAll (17/18): done, 295.496983ms
+ceph-thin1: user: warning: [2024-03-10T02:25:11.323558552Z]: [talos] phase startEverything (18/18): 1 tasks(s)
+ceph-thin1: user: warning: [2024-03-10T02:25:11.392419552Z]: [talos] task startAllServices (1/1): starting
+ceph-thin1: user: warning: [2024-03-10T02:25:11.392489552Z]: [talos] task startAllServices (1/1): waiting for 7 services
+ceph-thin1: user: warning: [2024-03-10T02:25:11.392607552Z]: [talos] service[cri](Waiting): Waiting for network
+ceph-thin1: user: warning: [2024-03-10T02:25:11.606174552Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "containerd" to be "up", service "cri" to be "up", service "dashboard" to be "up", service "kubelet" to be "up", service "machined" to be "up", service "udevd" to be "up"
+ceph-thin1: user: warning: [2024-03-10T02:25:11.606197552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up"
+ceph-thin1: user: warning: [2024-03-10T02:25:11.606224552Z]: [talos] service[cri](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:25:11.606380552Z]: [talos] service[cri](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-10T02:25:11.607323552Z]: [talos] service[cri](Running): Process Process(["/bin/containerd" "--address" "/run/containerd/containerd.sock" "--config" "/etc/cri/containerd.toml"]) started with PID 1739
+ceph-thin1: user: warning: [2024-03-10T02:25:12.610874552Z]: [talos] service[cri](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-10T02:25:12.685003552Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-10T02:25:26.393306552Z]: [talos] task startAllServices (1/1): service "kubelet" to be "up"
+ceph-thin1: user: warning: [2024-03-10T02:25:28.441759552Z]: [talos] adjusting time (slew) by 2.056679ms via 72.30.35.88, state TIME_OK, status STA_PLL | STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin1: user: warning: [2024-03-10T02:25:41.392533552Z]: [talos] task startAllServices (1/1): service "kubelet" to be "up"
+ceph-thin1: user: warning: [2024-03-10T02:25:55.134910552Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-10T02:25:55.504611552Z]: [talos] service[kubelet](Running): Started task kubelet (PID 1787) for container kubelet
+ceph-thin1: user: warning: [2024-03-10T02:25:56.391043552Z]: [talos] task startAllServices (1/1): service "kubelet" to be "up"
+ceph-thin1: user: warning: [2024-03-10T02:25:57.335944552Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-10T02:25:57.414322552Z]: [talos] task startAllServices (1/1): done, 46.023622745s
+ceph-thin1: user: warning: [2024-03-10T02:25:57.490534552Z]: [talos] phase startEverything (18/18): done, 46.168679706s
+ceph-thin1: user: warning: [2024-03-10T02:25:57.568649552Z]: [talos] boot sequence: done: 1m5.333781935s
+ceph-thin1: user: warning: [2024-03-10T02:27:18.658863552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"talos-ddu-377\x5c" not found"}
+ceph-thin1: user: warning: [2024-03-10T02:28:41.155834552Z]: [talos] machine is running and ready {"component": "controller-runtime", "controller": "runtime.MachineStatusController"}
+ceph-thin1: kern:    info: [2024-03-10T02:35:56.955885552Z]: cni0: port 1(veth29b30f4a) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T02:35:57.024762552Z]: cni0: port 1(veth29b30f4a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T02:35:57.025016552Z]: device veth29b30f4a entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T02:35:57.175773552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T02:35:57.250928552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth29b30f4a: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T02:35:57.251112552Z]: cni0: port 1(veth29b30f4a) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T02:35:57.403187552Z]: cni0: port 1(veth29b30f4a) entered forwarding state
+ceph-thin1: user: warning: [2024-03-10T03:18:51.157229552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T04:39:26.260791552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T06:00:01.387530552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T07:20:36.501435552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T08:41:11.627185552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T10:01:46.750584552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T11:22:21.866945552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T12:42:56.981084552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T14:03:32.184083552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-10T15:03:54.582886552Z]: cni0: port 1(veth29b30f4a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:03:54.652527552Z]: device veth29b30f4a left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:03:54.713092552Z]: cni0: port 1(veth29b30f4a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.325035552Z]: cni0: port 1(veth263a056b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.393880552Z]: cni0: port 1(veth263a056b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.463166552Z]: device veth263a056b entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.527120552Z]: cni0: port 1(veth263a056b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.596005552Z]: cni0: port 1(veth263a056b) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.667269552Z]: cni0: port 1(veth263a056b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.752812552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.828215552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth263a056b: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.828270552Z]: cni0: port 1(veth263a056b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:24.980548552Z]: cni0: port 1(veth263a056b) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:07:31.138380552Z]: cni0: port 1(veth263a056b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:31.208238552Z]: device veth263a056b left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:07:31.268868552Z]: cni0: port 1(veth263a056b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.270216552Z]: cni0: port 1(veth6e1ad90c) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.339087552Z]: cni0: port 1(veth6e1ad90c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.408256552Z]: device veth6e1ad90c entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.472193552Z]: cni0: port 1(veth6e1ad90c) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.541061552Z]: cni0: port 1(veth6e1ad90c) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.621488552Z]: cni0: port 1(veth6e1ad90c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.694540552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.769947552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6e1ad90c: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.853527552Z]: cni0: port 1(veth6e1ad90c) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:32.853533552Z]: cni0: port 1(veth6e1ad90c) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:07:36.150687552Z]: cni0: port 1(veth6e1ad90c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:36.220362552Z]: device veth6e1ad90c left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:07:36.280994552Z]: cni0: port 1(veth6e1ad90c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.229770552Z]: cni0: port 1(vethcc2f3edb) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.298699552Z]: cni0: port 1(vethcc2f3edb) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.367784552Z]: device vethcc2f3edb entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.431814552Z]: cni0: port 1(vethcc2f3edb) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.500709552Z]: cni0: port 1(vethcc2f3edb) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.571850552Z]: cni0: port 1(vethcc2f3edb) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.645250552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.720634552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethcc2f3edb: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.804247552Z]: cni0: port 1(vethcc2f3edb) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:07:37.873158552Z]: cni0: port 1(vethcc2f3edb) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:07:41.213379552Z]: cni0: port 1(vethcc2f3edb) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:07:41.283016552Z]: device vethcc2f3edb left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:07:41.343591552Z]: cni0: port 1(vethcc2f3edb) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.444013552Z]: cni0: port 1(vethbf554cbf) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.512880552Z]: cni0: port 1(vethbf554cbf) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.581967552Z]: device vethbf554cbf entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.657181552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.732542552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethbf554cbf: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.816112552Z]: cni0: port 1(vethbf554cbf) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:11:33.816118552Z]: cni0: port 1(vethbf554cbf) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:11:37.043591552Z]: cni0: port 1(vethbf554cbf) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:11:37.113267552Z]: device vethbf554cbf left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:11:37.173763552Z]: cni0: port 1(vethbf554cbf) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.042035552Z]: cni0: port 1(vetha38d7f9d) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.110898552Z]: cni0: port 1(vetha38d7f9d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.111160552Z]: device vetha38d7f9d entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.254364552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.329642552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha38d7f9d: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.329695552Z]: cni0: port 1(vetha38d7f9d) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:32.329701552Z]: cni0: port 1(vetha38d7f9d) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:15:35.889675552Z]: cni0: port 1(vetha38d7f9d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:35.959665552Z]: device vetha38d7f9d left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:15:36.020191552Z]: cni0: port 1(vetha38d7f9d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.000498552Z]: cni0: port 1(veth1545a5e4) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.069428552Z]: cni0: port 1(veth1545a5e4) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.069754552Z]: device veth1545a5e4 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.202184552Z]: cni0: port 1(veth1545a5e4) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.271117552Z]: cni0: port 1(veth1545a5e4) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.342188552Z]: cni0: port 1(veth1545a5e4) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.412747552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.488077552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1545a5e4: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.488139552Z]: cni0: port 1(veth1545a5e4) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:37.640413552Z]: cni0: port 1(veth1545a5e4) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:15:40.921528552Z]: cni0: port 1(veth1545a5e4) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:40.991223552Z]: device veth1545a5e4 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:15:41.051857552Z]: cni0: port 1(veth1545a5e4) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.277611552Z]: cni0: port 1(veth5d7c20f9) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.346491552Z]: cni0: port 1(veth5d7c20f9) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.415779552Z]: device veth5d7c20f9 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.489030552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.564428552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5d7c20f9: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.648148552Z]: cni0: port 1(veth5d7c20f9) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:15:42.716987552Z]: cni0: port 1(veth5d7c20f9) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:15:50.966353552Z]: cni0: port 1(veth5d7c20f9) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:15:51.036123552Z]: device veth5d7c20f9 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:15:51.096689552Z]: cni0: port 1(veth5d7c20f9) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:20:18.979173552Z]: cni0: port 1(vethece8d8ea) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:20:19.047993552Z]: cni0: port 1(vethece8d8ea) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:20:19.117039552Z]: device vethece8d8ea entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:20:19.193728552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:20:19.269001552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethece8d8ea: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:20:19.269057552Z]: cni0: port 1(vethece8d8ea) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:20:19.421214552Z]: cni0: port 1(vethece8d8ea) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:23:15.475846552Z]: cni0: port 1(vethece8d8ea) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:23:15.547321552Z]: device vethece8d8ea left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:23:15.607868552Z]: cni0: port 1(vethece8d8ea) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.265176552Z]: cni0: port 1(vetha54db14e) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.334004552Z]: cni0: port 1(vetha54db14e) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.403128552Z]: device vetha54db14e entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.491426552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.566655552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha54db14e: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.650065552Z]: cni0: port 1(vetha54db14e) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:02.650074552Z]: cni0: port 1(vetha54db14e) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:24:05.895777552Z]: cni0: port 1(vetha54db14e) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:05.965772552Z]: device vetha54db14e left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:06.026253552Z]: cni0: port 1(vetha54db14e) entered disabled state
+ceph-thin1: user: warning: [2024-03-10T15:24:07.304567552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.485968552Z]: cni0: port 1(vethea8d5b17) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.554765552Z]: cni0: port 1(vethea8d5b17) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.623845552Z]: device vethea8d5b17 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.696951552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.772176552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethea8d5b17: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.772230552Z]: cni0: port 1(vethea8d5b17) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:43.772236552Z]: cni0: port 1(vethea8d5b17) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:24:47.047099552Z]: cni0: port 1(vethea8d5b17) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:47.116834552Z]: device vethea8d5b17 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:47.177427552Z]: cni0: port 1(vethea8d5b17) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.295706552Z]: cni0: port 1(vethbeb36c98) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.364541552Z]: cni0: port 1(vethbeb36c98) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.433543552Z]: device vethbeb36c98 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.508190552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.583438552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethbeb36c98: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.583489552Z]: cni0: port 1(vethbeb36c98) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:48.735695552Z]: cni0: port 1(vethbeb36c98) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:24:52.081485552Z]: cni0: port 1(vethbeb36c98) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:52.151010552Z]: device vethbeb36c98 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:52.211562552Z]: cni0: port 1(vethbeb36c98) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.385847552Z]: cni0: port 1(veth44236cd3) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.454639552Z]: cni0: port 1(veth44236cd3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.523767552Z]: device veth44236cd3 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.608717552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.683906552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth44236cd3: link becomes ready
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.767442552Z]: cni0: port 1(veth44236cd3) entered blocking state
+ceph-thin1: kern:    info: [2024-03-10T15:24:53.767450552Z]: cni0: port 1(veth44236cd3) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-10T15:25:02.131810552Z]: cni0: port 1(veth44236cd3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-10T15:25:02.201508552Z]: device veth44236cd3 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-10T15:25:02.262088552Z]: cni0: port 1(veth44236cd3) entered disabled state
+ceph-thin1: user: warning: [2024-03-10T16:44:42.425418552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T18:05:17.542152552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T19:25:52.669840552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T20:46:27.802467552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T22:07:02.927776552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-10T23:27:38.039754552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T00:48:13.155528552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T02:08:48.274978552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T03:29:23.408956552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T04:49:58.560386552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T06:10:33.672314552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T07:31:08.802120552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T08:51:43.928458552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T10:12:19.050456552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T11:32:54.174938552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T12:53:29.293284552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T14:14:04.413930552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T15:34:39.542574552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T16:55:14.660347552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T18:15:49.900389552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T19:36:25.011922552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T20:57:00.282357552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T22:17:35.409417552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-11T23:38:10.526918552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T00:58:45.643486552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T02:19:20.770264552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T03:39:55.897617552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T05:00:31.153245552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T06:21:06.306396552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T07:41:41.434084552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T09:02:16.566664552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T10:22:51.685105552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T11:43:26.954706552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T13:04:02.080224552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T14:24:37.199487552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T15:45:12.329075552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T17:05:47.447232552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T18:26:22.566245552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T19:46:57.690037552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T21:07:32.809591552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T22:28:07.932432552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-12T23:48:43.052601552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T01:09:18.168141552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T02:29:53.291746552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T03:50:28.425011552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T05:11:03.548975552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T06:31:38.666576552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T07:52:13.796470552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T09:12:48.913004552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T10:33:24.040357552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T11:53:59.152605552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T12:54:53.251490552Z]: [talos] failed refreshing discovery service data {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "error updating local affiliate data: rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:56925->192.168.1.9:53: read: connection refused\x5c""}
+ceph-thin1: user: warning: [2024-03-13T13:09:38.636220552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:09:39.975482552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:09:41.310991552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:09:43.272458552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:09:46.023069552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:09:48.839268552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:09:56.625524552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:10:02.534370552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:34901->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:10:21.815826552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:39864->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:10:47.931557552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:39864->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:11:13.286544552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:39864->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:11:46.156072552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:39864->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:13:08.741067552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:56804->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:13:45.091551552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:56804->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:14:34.378471552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T13:14:46.236376552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:38602->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:15:33.605840552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:38602->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:16:23.784574552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:33018->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:17:37.421328552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:33018->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:18:29.702933552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:60586->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:19:09.697033552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:60586->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:20:11.496339552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:60586->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:21:20.177579552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:60148->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:22:19.836404552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:60148->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:23:04.888415552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:37976->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:24:16.643363552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:37976->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:25:02.123192552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53024->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:25:38.979057552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53024->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:26:37.719892552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53024->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:27:52.438046552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:59652->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:29:04.285468552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:59652->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:29:43.203210552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:59652->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:30:37.787546552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:35813->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:31:12.773750552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:35813->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:32:31.050074552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:45283->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:33:06.107246552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:45283->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:34:07.900651552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:40806->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:35:24.875228552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:40806->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:36:11.270044552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53880->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:37:12.011450552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53880->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:38:25.251502552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:39775->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:39:22.911288552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:47973->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:39:55.626448552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:47973->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:40:41.194517552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:47973->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:41:56.359019552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:54885->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:42:31.717870552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:54885->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:43:47.010124552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:54885->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:44:51.831846552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:42422->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:45:40.908852552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:42422->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:47:10.108586552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:60421->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:48:21.359385552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53023->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:49:09.481676552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:53023->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:50:16.830913552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:43470->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:51:07.081640552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:43470->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:51:47.799950552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:36352->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:53:12.883865552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:36352->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:54:04.040521552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:55815->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:55:28.719756552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:33630->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:56:45.379436552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:33630->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:57:49.973748552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:37120->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:58:52.470519552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:37120->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T13:59:37.923702552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.21:37120->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-13T14:35:09.499662552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T15:55:44.613803552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T17:16:19.740627552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T18:36:54.873526552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T19:57:29.990481552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T21:18:05.101771552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T22:38:40.216861552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-13T23:59:15.329542552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T01:19:50.458899552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T02:40:25.582522552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T04:01:00.704328552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T05:21:35.834463552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T06:42:10.959816552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T08:02:46.096674552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T09:23:21.214585552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T10:43:56.444801552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T12:04:31.565580552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T13:25:06.688442552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T14:45:41.806281552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T16:06:16.929460552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T17:26:52.046648552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T18:47:27.162301552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T20:08:02.288165552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T21:28:37.405112552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-14T22:49:12.522054552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T00:09:47.637717552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T01:30:22.764426552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T02:50:57.879529552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T04:11:33.005132552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T05:32:08.119982552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T06:52:43.239296552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T08:13:18.362173552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T09:33:53.480233552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T10:54:28.767795552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T12:15:03.898793552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T13:35:39.025247552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T14:56:14.149858552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T16:16:49.281975552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T17:37:24.402334552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T18:57:59.518585552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T20:18:34.646854552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T21:39:09.788270552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-15T22:59:44.916795552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T00:20:20.032723552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T01:40:55.290731552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T03:01:30.407056552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T04:22:05.527985552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T05:42:40.650894552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T07:03:15.774265552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T08:23:51.039678552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T09:44:26.167952552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T11:05:01.297496552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T12:25:36.414943552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T13:46:11.534551552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T15:06:46.653607552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T16:27:21.788448552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T17:47:57.000521552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T19:08:32.128869552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T20:29:07.335194552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T21:49:42.457588552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-16T23:10:17.585362552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T00:30:52.710959552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T01:51:27.833701552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T03:12:02.967173552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T04:32:38.086845552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T05:53:13.292317552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T07:13:48.521378552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T08:34:23.656617552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T09:54:58.784072552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T11:15:33.904373552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T12:36:09.032676552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T13:56:44.163508552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T15:17:19.279642552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T16:37:54.419878552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T17:58:29.544148552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T19:19:04.667577552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T20:39:39.790699552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T22:00:14.914594552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-17T23:20:50.229717552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T00:41:25.355056552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T02:02:00.808735552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T03:22:36.019652552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T04:43:11.139795552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T06:03:46.263355552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T07:24:21.390129552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T08:44:56.504967552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T10:05:31.620893552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T11:26:06.954706552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T12:46:42.073010552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T14:07:17.190662552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T15:27:52.315258552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T16:48:27.442527552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T18:09:02.560324552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T19:29:37.678989552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T20:50:12.798139552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T22:10:47.918230552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-18T23:31:23.042340552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T00:51:58.160986552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T02:12:33.467802552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T03:33:08.593027552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T04:53:43.719529552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T06:14:18.840772552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T07:34:53.958485552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T08:55:29.099845552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T10:16:04.224305552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T11:36:39.343471552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T12:57:14.469854552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T14:17:49.612888552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T15:38:24.724746552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T16:58:59.844271552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T18:19:34.973889552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T19:40:10.084122552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T21:00:45.212419552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T22:21:20.348007552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-19T23:41:55.467238552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T01:02:30.602204552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T02:23:05.726219552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T03:43:40.856073552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T05:04:15.987200552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T06:24:51.110412552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T07:45:26.243787552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T09:06:01.381814552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T10:26:36.515862552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T11:47:11.632291552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T13:07:46.762750552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T14:28:21.891562552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T15:48:57.009823552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T17:09:32.138348552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T18:30:07.278953552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T19:50:42.385746552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T21:11:17.503302552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T22:31:52.626481552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-20T23:52:27.760075552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T01:13:02.926864552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T02:33:38.059458552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T03:54:13.180282552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T05:14:48.371675552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T06:35:23.481749552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T07:33:05.157233552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "Get \x5c"https://192.168.0.11:6443/api/v1/nodes?allowWatchBookmarks=true&fieldSelector=metadata.name%3Dceph-thin1&resourceVersion=2837824&timeout=5m37s&timeoutSeconds=337&watch=true\x5c": http2: client connection lost"}
+ceph-thin1: user: warning: [2024-03-21T07:33:36.930910552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin1&resourceVersion=2837824\x5c": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)"}
+ceph-thin1: user: warning: [2024-03-21T07:33:40.611112552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin1&resourceVersion=2837824\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin1: user: warning: [2024-03-21T07:33:46.755045552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin1&resourceVersion=2837824\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin1: user: warning: [2024-03-21T07:33:59.042363552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin1&resourceVersion=2837824\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin1: kern:    info: [2024-03-21T07:39:00.756029552Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-21T07:39:00.825766552Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin1: user: warning: [2024-03-21T07:39:01.055012552Z]: [talos] removed address 192.168.0.21/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin1: user: warning: [2024-03-21T07:39:01.055837552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:01.566278552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-ddu-377", "domainname": ""}
+ceph-thin1: user: warning: [2024-03-21T07:39:01.746564552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-ddu-377?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:01.746582552Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 1787, container kubelet)
+ceph-thin1: user: warning: [2024-03-21T07:39:02.231172552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-ddu-377?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:02.554003552Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin1: user: warning: [2024-03-21T07:39:02.640955552Z]: [talos] kubelet client certificate does not match expected nodename, removing {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "expected": "system:node:talos-ddu-377", "actual": "system:node:ceph-thin1"}
+ceph-thin1: user: warning: [2024-03-21T07:39:02.905411552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:03.256299552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin1: user: warning: [2024-03-21T07:39:03.256428552Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-21T07:39:03.509592552Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-21T07:39:03.992712552Z]: [talos] service[kubelet](Running): Started task kubelet (PID 21939) for container kubelet
+ceph-thin1: user: warning: [2024-03-21T07:39:05.604815552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:05.955748552Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-21T07:39:11.548545552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:20.306594552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:30.842810552Z]: [talos] failed refreshing discovery service data {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "error updating local affiliate data: rpc error: code = DeadlineExceeded desc = context deadline exceeded"}
+ceph-thin1: user: warning: [2024-03-21T07:39:38.697915552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:39:41.450782552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-21T07:39:52.464886552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-21T07:40:00.846525552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 4 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.12:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.13:50001: connect: network is unreachable\x5c"\x5cn\x5cttimeout"}
+ceph-thin1: user: warning: [2024-03-21T07:40:03.539708552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-21T07:40:14.695320552Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-ddu-377&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin1: user: warning: [2024-03-21T07:40:15.825888552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: kern:    info: [2024-03-21T07:40:21.652280552Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-21T07:40:26.782881552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin1", "domainname": "dezendorf.net"}
+ceph-thin1: user: warning: [2024-03-21T07:40:26.974000552Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.21/23", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T07:40:27.154706552Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 21939, container kubelet)
+ceph-thin1: user: warning: [2024-03-21T07:40:27.275783552Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin1: user: warning: [2024-03-21T07:40:27.714903552Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin1: user: warning: [2024-03-21T07:40:27.802724552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin1: user: warning: [2024-03-21T07:40:27.916669552Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-21T07:40:28.044189552Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-21T07:40:28.982778552Z]: [talos] service[kubelet](Running): Started task kubelet (PID 22417) for container kubelet
+ceph-thin1: kern:    info: [2024-03-21T07:40:29.131079552Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-21T07:40:29.199840552Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin1: user: warning: [2024-03-21T07:40:29.428967552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-ddu-377", "domainname": ""}
+ceph-thin1: user: warning: [2024-03-21T07:40:29.429006552Z]: [talos] removed address 192.168.0.21/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin1: user: warning: [2024-03-21T07:40:29.429129552Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 22417, container kubelet)
+ceph-thin1: user: warning: [2024-03-21T07:40:29.890724552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-21T07:40:30.383556552Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin1: user: warning: [2024-03-21T07:40:30.471624552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin1: user: warning: [2024-03-21T07:40:30.585542552Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-21T07:40:30.728333552Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-21T07:40:31.176954552Z]: [talos] service[kubelet](Running): Started task kubelet (PID 22538) for container kubelet
+ceph-thin1: user: warning: [2024-03-21T07:40:33.003788552Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin1: kern:    info: [2024-03-21T07:40:33.400499552Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin1: user: warning: [2024-03-21T07:40:38.530712552Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin1", "domainname": "dezendorf.net"}
+ceph-thin1: user: warning: [2024-03-21T07:40:38.721400552Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin1: user: warning: [2024-03-21T07:40:38.975664552Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.21/23", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T07:40:39.155945552Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 22538, container kubelet)
+ceph-thin1: user: warning: [2024-03-21T07:40:39.511123552Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin1: user: warning: [2024-03-21T07:40:39.598685552Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin1: user: warning: [2024-03-21T07:40:39.712827552Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin1: user: warning: [2024-03-21T07:40:39.843061552Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin1: user: warning: [2024-03-21T07:40:40.324721552Z]: [talos] service[kubelet](Running): Started task kubelet (PID 22696) for container kubelet
+ceph-thin1: user: warning: [2024-03-21T07:40:41.270361552Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"talos-ddu-377\x5c" not found"}
+ceph-thin1: user: warning: [2024-03-21T07:40:42.144661552Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin1: user: warning: [2024-03-21T07:40:44.329543552Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin1: user: warning: [2024-03-21T08:34:34.428789552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T09:55:09.552283552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T11:15:44.677839552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T12:36:19.795459552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T13:56:54.911461552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T15:17:30.036233552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T16:38:05.168500552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T17:58:40.284310552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T19:19:15.407575552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T20:39:50.544838552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T22:00:25.823451552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-21T23:21:00.928412552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T00:41:36.059160552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T02:02:11.199725552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T03:22:46.425913552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T04:43:21.555091552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T06:03:56.664659552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T07:24:31.781393552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T08:45:06.891585552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T10:05:42.027652552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T11:26:17.149470552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T12:46:52.277559552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T14:07:27.391308552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T15:28:02.501186552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T16:48:37.634574552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.265016552Z]: cni0: port 1(vethda4d342b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.336213552Z]: cni0: port 1(vethda4d342b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.407678552Z]: device vethda4d342b entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.490968552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.568506552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethda4d342b: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.568568552Z]: cni0: port 1(vethda4d342b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:54:17.568575552Z]: cni0: port 1(vethda4d342b) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:54:21.095272552Z]: cni0: port 1(vethda4d342b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:54:21.167449552Z]: device vethda4d342b left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:54:21.230249552Z]: cni0: port 1(vethda4d342b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.052009552Z]: cni0: port 1(veth3c1a3527) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.123199552Z]: cni0: port 1(veth3c1a3527) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.194748552Z]: device veth3c1a3527 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.275668552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.353262552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3c1a3527: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.353317552Z]: cni0: port 1(veth3c1a3527) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:00.510269552Z]: cni0: port 1(veth3c1a3527) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:55:04.281226552Z]: cni0: port 1(veth3c1a3527) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:04.353304552Z]: device veth3c1a3527 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:55:04.416208552Z]: cni0: port 1(veth3c1a3527) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:05.426872552Z]: cni0: port 1(veth26deaaee) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:05.498079552Z]: cni0: port 1(veth26deaaee) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:05.569550552Z]: device veth26deaaee entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:55:05.635652552Z]: cni0: port 1(veth26deaaee) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:05.706795552Z]: cni0: port 1(veth26deaaee) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:55:05.780153552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth26deaaee: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:55:10.465896552Z]: cni0: port 1(veth26deaaee) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:10.537849552Z]: device veth26deaaee left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:55:10.600734552Z]: cni0: port 1(veth26deaaee) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:11.662952552Z]: cni0: port 1(veth1e7cdaae) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:11.734116552Z]: cni0: port 1(veth1e7cdaae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:11.805692552Z]: device veth1e7cdaae entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:55:11.871832552Z]: cni0: port 1(veth1e7cdaae) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:11.942963552Z]: cni0: port 1(veth1e7cdaae) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:55:12.016368552Z]: cni0: port 1(veth1e7cdaae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:12.098867552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:55:12.176495552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1e7cdaae: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:55:12.262396552Z]: cni0: port 1(veth1e7cdaae) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:55:12.262406552Z]: cni0: port 1(veth1e7cdaae) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:55:21.511798552Z]: cni0: port 1(veth1e7cdaae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:55:21.583707552Z]: device veth1e7cdaae left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:55:21.646562552Z]: cni0: port 1(veth1e7cdaae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:05.789557552Z]: cni0: port 1(veth4883a3ed) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:57:05.860810552Z]: cni0: port 1(veth4883a3ed) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:05.932352552Z]: device veth4883a3ed entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:57:06.010692552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:57:06.088467552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4883a3ed: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:57:06.174278552Z]: cni0: port 1(veth4883a3ed) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:57:06.174285552Z]: cni0: port 1(veth4883a3ed) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:57:09.925924552Z]: cni0: port 1(veth4883a3ed) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:09.997823552Z]: device veth4883a3ed left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:57:10.060690552Z]: cni0: port 1(veth4883a3ed) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.363367552Z]: cni0: port 1(veth9119ed20) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.434638552Z]: cni0: port 1(veth9119ed20) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.434932552Z]: device veth9119ed20 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.585403552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.662971552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9119ed20: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.663038552Z]: cni0: port 1(veth9119ed20) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:57:48.819938552Z]: cni0: port 1(veth9119ed20) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:57:54.261332552Z]: cni0: port 1(veth9119ed20) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:54.333527552Z]: device veth9119ed20 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:57:54.396357552Z]: cni0: port 1(veth9119ed20) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:55.633973552Z]: cni0: port 1(vethace14104) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:57:55.705115552Z]: cni0: port 1(vethace14104) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:57:55.776567552Z]: device vethace14104 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:57:55.861867552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:57:55.939441552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethace14104: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:57:55.939499552Z]: cni0: port 1(vethace14104) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:57:56.096453552Z]: cni0: port 1(vethace14104) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:58:00.461617552Z]: cni0: port 1(vethace14104) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:58:00.533546552Z]: device vethace14104 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:58:00.596385552Z]: cni0: port 1(vethace14104) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:58:01.902961552Z]: cni0: port 1(veth1fb1c263) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:58:01.974135552Z]: cni0: port 1(veth1fb1c263) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:58:02.045579552Z]: device veth1fb1c263 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:58:02.124361552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:58:02.202078552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1fb1c263: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:58:02.288084552Z]: cni0: port 1(veth1fb1c263) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:58:02.359270552Z]: cni0: port 1(veth1fb1c263) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T17:58:11.512858552Z]: cni0: port 1(veth1fb1c263) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:58:11.584879552Z]: device veth1fb1c263 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:58:11.647726552Z]: cni0: port 1(veth1fb1c263) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.532963552Z]: cni0: port 1(veth9deb98d2) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.604144552Z]: cni0: port 1(veth9deb98d2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.675652552Z]: device veth9deb98d2 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.756959552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.834608552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9deb98d2: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.920456552Z]: cni0: port 1(veth9deb98d2) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T17:59:26.920462552Z]: cni0: port 1(veth9deb98d2) entered forwarding state
+ceph-thin1: user: warning: [2024-03-22T18:09:12.848039552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-22T18:45:34.837517552Z]: cni0: port 1(veth9deb98d2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:45:34.909328552Z]: device veth9deb98d2 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:45:34.972014552Z]: cni0: port 1(veth9deb98d2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:46:22.832535552Z]: cni0: port 1(veth827d0cc7) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:46:22.903570552Z]: cni0: port 1(veth827d0cc7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:46:22.974842552Z]: device veth827d0cc7 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:46:23.062966552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:46:23.140490552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth827d0cc7: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:46:23.140553552Z]: cni0: port 1(veth827d0cc7) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:46:23.140559552Z]: cni0: port 1(veth827d0cc7) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T18:46:27.881525552Z]: cni0: port 1(veth827d0cc7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:46:27.953481552Z]: device veth827d0cc7 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:46:28.016171552Z]: cni0: port 1(veth827d0cc7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:21.701995552Z]: cni0: port 1(veth0f55ee22) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:47:21.772983552Z]: cni0: port 1(veth0f55ee22) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:21.844225552Z]: device veth0f55ee22 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:47:21.924727552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:47:22.002236552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth0f55ee22: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:47:22.088019552Z]: cni0: port 1(veth0f55ee22) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:47:22.159063552Z]: cni0: port 1(veth0f55ee22) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T18:47:27.108888552Z]: cni0: port 1(veth0f55ee22) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:27.181059552Z]: device veth0f55ee22 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:47:27.243772552Z]: cni0: port 1(veth0f55ee22) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:28.623719552Z]: cni0: port 1(veth014b50ab) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:47:28.694694552Z]: cni0: port 1(veth014b50ab) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:28.765926552Z]: device veth014b50ab entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:47:28.846360552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:47:28.923737552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth014b50ab: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:47:29.009482552Z]: cni0: port 1(veth014b50ab) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:47:29.080535552Z]: cni0: port 1(veth014b50ab) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T18:47:35.149394552Z]: cni0: port 1(veth014b50ab) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:35.221242552Z]: device veth014b50ab left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:47:35.283998552Z]: cni0: port 1(veth014b50ab) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:36.661813552Z]: cni0: port 1(veth5e4353d4) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:47:36.732865552Z]: cni0: port 1(veth5e4353d4) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:36.804043552Z]: device veth5e4353d4 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:47:36.881013552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:47:36.958364552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5e4353d4: link becomes ready
+ceph-thin1: kern:    info: [2024-03-22T18:47:37.044064552Z]: cni0: port 1(veth5e4353d4) entered blocking state
+ceph-thin1: kern:    info: [2024-03-22T18:47:37.115070552Z]: cni0: port 1(veth5e4353d4) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-22T18:47:45.676531552Z]: cni0: port 1(veth5e4353d4) entered disabled state
+ceph-thin1: kern:    info: [2024-03-22T18:47:45.748312552Z]: device veth5e4353d4 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-22T18:47:45.811062552Z]: cni0: port 1(veth5e4353d4) entered disabled state
+ceph-thin1: user: warning: [2024-03-22T19:29:47.975651552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T20:50:23.093878552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T22:10:58.216045552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-22T23:31:33.429840552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T00:52:08.630588552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T02:12:43.835823552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T03:33:18.955361552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T04:53:54.091451552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T06:14:29.213716552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T07:35:04.334307552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T08:55:39.449992552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T10:16:14.581115552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T11:36:49.710773552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T12:57:24.835364552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T14:17:59.956246552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-23T15:29:21.921364552Z]: cni0: port 1(vethabee8ec3) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:29:21.992433552Z]: cni0: port 1(vethabee8ec3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:29:22.063793552Z]: device vethabee8ec3 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:29:22.144202552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:29:22.221692552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethabee8ec3: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:29:22.307439552Z]: cni0: port 1(vethabee8ec3) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:29:22.307445552Z]: cni0: port 1(vethabee8ec3) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T15:29:29.005148552Z]: cni0: port 1(vethabee8ec3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:29:29.076888552Z]: device vethabee8ec3 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:29:29.139724552Z]: cni0: port 1(vethabee8ec3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.152388552Z]: cni0: port 1(veth3f8cab8b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.223579552Z]: cni0: port 1(veth3f8cab8b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.294920552Z]: device veth3f8cab8b entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.375403552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.452976552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3f8cab8b: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.538737552Z]: cni0: port 1(veth3f8cab8b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:30:34.538744552Z]: cni0: port 1(veth3f8cab8b) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T15:30:38.255587552Z]: cni0: port 1(veth3f8cab8b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:38.327374552Z]: device veth3f8cab8b left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:30:38.390190552Z]: cni0: port 1(veth3f8cab8b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:39.796985552Z]: cni0: port 1(veth8cf087ca) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:30:39.868077552Z]: cni0: port 1(veth8cf087ca) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:39.939358552Z]: device veth8cf087ca entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:30:40.018937552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:30:40.096373552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth8cf087ca: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:30:40.182125552Z]: cni0: port 1(veth8cf087ca) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:30:40.182133552Z]: cni0: port 1(veth8cf087ca) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T15:30:43.271624552Z]: cni0: port 1(veth8cf087ca) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:43.343457552Z]: device veth8cf087ca left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:30:43.406176552Z]: cni0: port 1(veth8cf087ca) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:44.867085552Z]: cni0: port 1(vethce58c0c6) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:30:44.938231552Z]: cni0: port 1(vethce58c0c6) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:45.009525552Z]: device vethce58c0c6 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:30:45.088145552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:30:45.165657552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethce58c0c6: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:30:45.165718552Z]: cni0: port 1(vethce58c0c6) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:30:45.165726552Z]: cni0: port 1(vethce58c0c6) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T15:30:54.333435552Z]: cni0: port 1(vethce58c0c6) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:30:54.405241552Z]: device vethce58c0c6 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:30:54.468010552Z]: cni0: port 1(vethce58c0c6) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:34:03.897965552Z]: cni0: port 1(veth5de61bd7) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:34:03.969061552Z]: cni0: port 1(veth5de61bd7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:34:04.040442552Z]: device veth5de61bd7 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:34:04.125260552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:34:04.202780552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5de61bd7: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T15:34:04.288645552Z]: cni0: port 1(veth5de61bd7) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T15:34:04.288654552Z]: cni0: port 1(veth5de61bd7) entered forwarding state
+ceph-thin1: user: warning: [2024-03-23T15:38:35.095361552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-23T15:48:41.054986552Z]: cni0: port 1(veth5de61bd7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T15:48:41.126678552Z]: device veth5de61bd7 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T15:48:41.189297552Z]: cni0: port 1(veth5de61bd7) entered disabled state
+ceph-thin1: user: warning: [2024-03-23T16:59:10.228576552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T18:19:45.376662552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T19:40:20.515069552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T21:00:55.656597552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-23T22:21:30.791975552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-23T22:56:57.543816552Z]: cni0: port 1(veth71835b98) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:56:57.614818552Z]: cni0: port 1(veth71835b98) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:56:57.685984552Z]: device veth71835b98 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:56:57.769688552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:56:57.847034552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth71835b98: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:56:57.847089552Z]: cni0: port 1(veth71835b98) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:56:58.003614552Z]: cni0: port 1(veth71835b98) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T22:57:01.539022552Z]: cni0: port 1(veth71835b98) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:57:01.611007552Z]: device veth71835b98 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:57:01.673692552Z]: cni0: port 1(veth71835b98) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:06.870632552Z]: cni0: port 1(veth51d2ff81) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:58:06.941683552Z]: cni0: port 1(veth51d2ff81) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:07.013041552Z]: device veth51d2ff81 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:58:07.095454552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:58:07.172948552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth51d2ff81: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:58:07.258597552Z]: cni0: port 1(veth51d2ff81) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:58:07.329553552Z]: cni0: port 1(veth51d2ff81) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T22:58:10.794857552Z]: cni0: port 1(veth51d2ff81) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:10.866705552Z]: device veth51d2ff81 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:58:10.929399552Z]: cni0: port 1(veth51d2ff81) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.363408552Z]: cni0: port 1(veth6f3dcdf7) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.434398552Z]: cni0: port 1(veth6f3dcdf7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.505561552Z]: device veth6f3dcdf7 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.585326552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.662729552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6f3dcdf7: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.748361552Z]: cni0: port 1(veth6f3dcdf7) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:58:12.748370552Z]: cni0: port 1(veth6f3dcdf7) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T22:58:17.821022552Z]: cni0: port 1(veth6f3dcdf7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:17.892784552Z]: device veth6f3dcdf7 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:58:17.955452552Z]: cni0: port 1(veth6f3dcdf7) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.536041552Z]: cni0: port 1(veth347df42d) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.607003552Z]: cni0: port 1(veth347df42d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.678319552Z]: device veth347df42d entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.763848552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.841232552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth347df42d: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.841297552Z]: cni0: port 1(veth347df42d) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T22:58:19.841305552Z]: cni0: port 1(veth347df42d) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T22:58:28.874804552Z]: cni0: port 1(veth347df42d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T22:58:28.946661552Z]: device veth347df42d left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T22:58:29.009324552Z]: cni0: port 1(veth347df42d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.460408552Z]: cni0: port 1(veth10861a32) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.531499552Z]: cni0: port 1(veth10861a32) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.602814552Z]: device veth10861a32 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.689731552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.767276552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth10861a32: link becomes ready
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.767361552Z]: cni0: port 1(veth10861a32) entered blocking state
+ceph-thin1: kern:    info: [2024-03-23T23:00:05.767372552Z]: cni0: port 1(veth10861a32) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-23T23:04:14.933957552Z]: cni0: port 1(veth10861a32) entered disabled state
+ceph-thin1: kern:    info: [2024-03-23T23:04:15.005898552Z]: device veth10861a32 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-23T23:04:15.068702552Z]: cni0: port 1(veth10861a32) entered disabled state
+ceph-thin1: user: warning: [2024-03-23T23:42:05.923787552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T01:02:41.072062552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.309928552Z]: cni0: port 1(veth339cbfae) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.380694552Z]: cni0: port 1(veth339cbfae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.451617552Z]: device veth339cbfae entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.534343552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.611411552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth339cbfae: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.696696552Z]: cni0: port 1(veth339cbfae) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:23:14.696707552Z]: cni0: port 1(veth339cbfae) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:23:17.513270552Z]: cni0: port 1(veth339cbfae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:23:17.584823552Z]: device veth339cbfae left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:23:17.647241552Z]: cni0: port 1(veth339cbfae) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.212490552Z]: cni0: port 1(veth0871ccf2) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.283137552Z]: cni0: port 1(veth0871ccf2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.354098552Z]: device veth0871ccf2 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.433443552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.510573552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth0871ccf2: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.595852552Z]: cni0: port 1(veth0871ccf2) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:15.666551552Z]: cni0: port 1(veth0871ccf2) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:24:19.748052552Z]: cni0: port 1(veth0871ccf2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:19.819424552Z]: device veth0871ccf2 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:24:19.881807552Z]: cni0: port 1(veth0871ccf2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.005787552Z]: cni0: port 1(veth22049798) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.076464552Z]: cni0: port 1(veth22049798) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.147509552Z]: device veth22049798 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.230373552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.307383552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth22049798: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.392710552Z]: cni0: port 1(veth22049798) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:21.463432552Z]: cni0: port 1(veth22049798) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:24:24.776038552Z]: cni0: port 1(veth22049798) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:24.847475552Z]: device veth22049798 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:24:24.909848552Z]: cni0: port 1(veth22049798) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:25.966781552Z]: cni0: port 1(veth6861ba45) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.037456552Z]: cni0: port 1(veth6861ba45) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.037654552Z]: device veth6861ba45 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.174004552Z]: cni0: port 1(veth6861ba45) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.244592552Z]: cni0: port 1(veth6861ba45) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.317881552Z]: cni0: port 1(veth6861ba45) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.393320552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.470600552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6861ba45: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.555795552Z]: cni0: port 1(veth6861ba45) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:24:26.626439552Z]: cni0: port 1(veth6861ba45) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:24:35.826150552Z]: cni0: port 1(veth6861ba45) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:24:35.897945552Z]: device veth6861ba45 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:24:35.960317552Z]: cni0: port 1(veth6861ba45) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:25:55.903079552Z]: cni0: port 1(veth12007f15) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:25:55.973818552Z]: cni0: port 1(veth12007f15) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:25:55.974221552Z]: device veth12007f15 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:25:56.122857552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:25:56.199884552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth12007f15: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:25:56.285189552Z]: cni0: port 1(veth12007f15) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:25:56.355853552Z]: cni0: port 1(veth12007f15) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.338942552Z]: cni0: port 2(veth34f08923) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.409757552Z]: cni0: port 2(veth34f08923) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.480949552Z]: device veth34f08923 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.578023552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.656545552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth34f08923: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.742416552Z]: cni0: port 2(veth34f08923) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:09.742427552Z]: cni0: port 2(veth34f08923) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:31:13.588754552Z]: cni0: port 2(veth34f08923) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:13.660543552Z]: device veth34f08923 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:13.723019552Z]: cni0: port 2(veth34f08923) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.214661552Z]: cni0: port 2(veth937f5559) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.285420552Z]: cni0: port 2(veth937f5559) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.356480552Z]: device veth937f5559 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.443257552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.520383552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth937f5559: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.605972552Z]: cni0: port 2(veth937f5559) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:18.605982552Z]: cni0: port 2(veth937f5559) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:31:45.944234552Z]: cni0: port 2(veth937f5559) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:46.015839552Z]: device veth937f5559 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:46.078212552Z]: cni0: port 2(veth937f5559) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.290930552Z]: cni0: port 2(vethe7531c6a) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.361711552Z]: cni0: port 2(vethe7531c6a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.432558552Z]: device vethe7531c6a entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.533704552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.610978552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe7531c6a: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.696293552Z]: cni0: port 2(vethe7531c6a) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:50.696304552Z]: cni0: port 2(vethe7531c6a) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:31:53.786170552Z]: cni0: port 2(vethe7531c6a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:53.857786552Z]: device vethe7531c6a left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:53.920237552Z]: cni0: port 2(vethe7531c6a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:58.844528552Z]: cni0: port 2(veth1ccc938e) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:58.915181552Z]: cni0: port 2(veth1ccc938e) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:31:58.986072552Z]: device veth1ccc938e entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:31:59.066387552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:59.143502552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1ccc938e: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:31:59.228775552Z]: cni0: port 2(veth1ccc938e) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:31:59.228787552Z]: cni0: port 2(veth1ccc938e) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:32:02.924955552Z]: cni0: port 2(veth1ccc938e) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:32:02.998323552Z]: device veth1ccc938e left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:32:03.061047552Z]: cni0: port 2(veth1ccc938e) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:32:05.914921552Z]: cni0: port 2(vetha735716a) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:32:05.985541552Z]: cni0: port 2(vetha735716a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:32:06.056303552Z]: device vetha735716a entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:32:06.160611552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:32:06.244455552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha735716a: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T01:32:06.332886552Z]: cni0: port 2(vetha735716a) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T01:32:06.403492552Z]: cni0: port 2(vetha735716a) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T01:32:13.964250552Z]: cni0: port 2(vetha735716a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:32:14.035733552Z]: device vetha735716a left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:32:14.098198552Z]: cni0: port 2(vetha735716a) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:32:35.461036552Z]: cni0: port 1(veth12007f15) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T01:32:35.532637552Z]: device veth12007f15 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T01:32:35.595072552Z]: cni0: port 1(veth12007f15) entered disabled state
+ceph-thin1: user: warning: [2024-03-24T02:23:16.201071552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T03:43:51.352410552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T05:04:26.476173552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T06:25:01.608108552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T07:45:36.732160552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T09:06:11.868362552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T10:26:47.095177552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T11:47:22.220521552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T13:07:57.349760552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T14:28:32.569783552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-24T15:35:40.894169552Z]: cni0: port 1(vethdc88bea8) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:35:40.965260552Z]: cni0: port 1(vethdc88bea8) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:35:41.036514552Z]: device vethdc88bea8 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:35:41.113161552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:35:41.190750552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethdc88bea8: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:35:41.276561552Z]: cni0: port 1(vethdc88bea8) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:35:41.276568552Z]: cni0: port 1(vethdc88bea8) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T15:35:49.999859552Z]: cni0: port 1(vethdc88bea8) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:35:50.071816552Z]: device vethdc88bea8 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:35:50.134621552Z]: cni0: port 1(vethdc88bea8) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.123219552Z]: cni0: port 1(veth5339549b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.194282552Z]: cni0: port 1(veth5339549b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.265544552Z]: device veth5339549b entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.345366552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.422875552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5339549b: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.508616552Z]: cni0: port 1(veth5339549b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:36:40.508623552Z]: cni0: port 1(veth5339549b) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T15:36:47.315964552Z]: cni0: port 1(veth5339549b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:47.387854552Z]: device veth5339549b left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:36:47.450611552Z]: cni0: port 1(veth5339549b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.006675552Z]: cni0: port 1(veth73bf0e9b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.077773552Z]: cni0: port 1(veth73bf0e9b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.149037552Z]: device veth73bf0e9b entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.227147552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.304518552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth73bf0e9b: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.390214552Z]: cni0: port 1(veth73bf0e9b) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:36:49.390221552Z]: cni0: port 1(veth73bf0e9b) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T15:36:54.377116552Z]: cni0: port 1(veth73bf0e9b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:54.448971552Z]: device veth73bf0e9b left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:36:54.511658552Z]: cni0: port 1(veth73bf0e9b) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.094460552Z]: cni0: port 1(veth87d5db62) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.165496552Z]: cni0: port 1(veth87d5db62) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.236874552Z]: device veth87d5db62 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.314641552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.392154552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth87d5db62: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.477866552Z]: cni0: port 1(veth87d5db62) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T15:36:56.477874552Z]: cni0: port 1(veth87d5db62) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T15:37:05.724920552Z]: cni0: port 1(veth87d5db62) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T15:37:05.796830552Z]: device veth87d5db62 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T15:37:05.859614552Z]: cni0: port 1(veth87d5db62) entered disabled state
+ceph-thin1: user: warning: [2024-03-24T15:49:07.697449552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T17:09:42.822526552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T18:30:17.946451552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T19:50:53.074341552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.160446552Z]: cni0: port 1(veth32c8a387) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.231599552Z]: cni0: port 1(veth32c8a387) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.302976552Z]: device veth32c8a387 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.384362552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.461992552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth32c8a387: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.462044552Z]: cni0: port 1(veth32c8a387) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:50:46.462049552Z]: cni0: port 1(veth32c8a387) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T20:53:31.412108552Z]: cni0: port 1(veth32c8a387) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:53:31.484469552Z]: device veth32c8a387 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:53:31.547344552Z]: cni0: port 1(veth32c8a387) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.491496552Z]: cni0: port 1(veth2ca11cd2) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.562587552Z]: cni0: port 1(veth2ca11cd2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.633836552Z]: device veth2ca11cd2 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.713456552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.791136552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth2ca11cd2: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.877229552Z]: cni0: port 1(veth2ca11cd2) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:53:51.948515552Z]: cni0: port 1(veth2ca11cd2) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T20:53:56.037700552Z]: cni0: port 1(veth2ca11cd2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:53:56.109780552Z]: device veth2ca11cd2 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:53:56.172528552Z]: cni0: port 1(veth2ca11cd2) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.098079552Z]: cni0: port 1(veth80a8fcc3) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.169294552Z]: cni0: port 1(veth80a8fcc3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.240753552Z]: device veth80a8fcc3 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.318339552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.396035552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth80a8fcc3: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.396089552Z]: cni0: port 1(veth80a8fcc3) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:48.396096552Z]: cni0: port 1(veth80a8fcc3) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T20:54:52.297927552Z]: cni0: port 1(veth80a8fcc3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:52.369822552Z]: device veth80a8fcc3 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:54:52.432720552Z]: cni0: port 1(veth80a8fcc3) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.515736552Z]: cni0: port 1(veth1278146c) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.587013552Z]: cni0: port 1(veth1278146c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.658407552Z]: device veth1278146c entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.724467552Z]: cni0: port 1(veth1278146c) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.795707552Z]: cni0: port 1(veth1278146c) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.796079552Z]: cni0: port 1(veth1278146c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:53.814720552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:54:54.018673552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1278146c: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:54:54.104542552Z]: cni0: port 1(veth1278146c) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:54.104548552Z]: cni0: port 1(veth1278146c) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T20:54:57.335487552Z]: cni0: port 1(veth1278146c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:57.407599552Z]: device veth1278146c left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:54:57.470462552Z]: cni0: port 1(veth1278146c) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:58.634506552Z]: cni0: port 1(veth7cad94df) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:58.705706552Z]: cni0: port 1(veth7cad94df) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:54:58.777117552Z]: device veth7cad94df entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:54:58.858682552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:54:58.936347552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7cad94df: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:54:59.022289552Z]: cni0: port 1(veth7cad94df) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:54:59.022295552Z]: cni0: port 1(veth7cad94df) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-24T20:55:09.565755552Z]: cni0: port 1(veth7cad94df) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:55:09.638050552Z]: device veth7cad94df left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:55:09.700955552Z]: cni0: port 1(veth7cad94df) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:56:46.850936552Z]: cni0: port 1(veth5d9c5c4d) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:56:46.922151552Z]: cni0: port 1(veth5d9c5c4d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-24T20:56:46.993727552Z]: device veth5d9c5c4d entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-24T20:56:47.071540552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:56:47.149224552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5d9c5c4d: link becomes ready
+ceph-thin1: kern:    info: [2024-03-24T20:56:47.235208552Z]: cni0: port 1(veth5d9c5c4d) entered blocking state
+ceph-thin1: kern:    info: [2024-03-24T20:56:47.235217552Z]: cni0: port 1(veth5d9c5c4d) entered forwarding state
+ceph-thin1: user: warning: [2024-03-24T21:11:28.192681552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T22:32:03.310101552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-24T23:52:38.435690552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T01:13:13.571370552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T02:33:48.705161552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T03:54:23.827717552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T05:14:58.951003552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T06:35:34.070955552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T07:56:09.200294552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T09:16:44.340102552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T10:37:19.461029552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T11:57:54.591553552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T13:18:29.726353552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T14:39:04.860171552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T15:59:39.992937552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T17:20:15.127101552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T18:40:50.256638552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T20:01:25.386046552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T21:22:00.505300552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-25T22:42:35.631285552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T00:03:10.849172552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T01:23:45.972837552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T02:44:21.103641552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T04:04:56.445693552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T05:25:31.567655552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T06:46:06.696798552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T08:06:41.821363552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T09:27:16.963455552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T10:47:52.093902552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-26T12:04:40.461652552Z]: cni0: port 1(veth5d9c5c4d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:04:40.533525552Z]: device veth5d9c5c4d left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:04:40.596337552Z]: cni0: port 1(veth5d9c5c4d) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:04:42.847613552Z]: cni0: port 1(vethb0459915) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:04:42.918651552Z]: cni0: port 1(vethb0459915) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:04:42.989977552Z]: device vethb0459915 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:04:43.068378552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:04:43.145828552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb0459915: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:04:43.231680552Z]: cni0: port 1(vethb0459915) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:04:43.302783552Z]: cni0: port 1(vethb0459915) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-26T12:04:48.577247552Z]: cni0: port 2(veth4038cf57) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:04:48.648325552Z]: cni0: port 2(veth4038cf57) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:04:48.719505552Z]: device veth4038cf57 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:04:48.797714552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:04:48.875366552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4038cf57: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:04:48.961120552Z]: cni0: port 2(veth4038cf57) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:04:49.032110552Z]: cni0: port 2(veth4038cf57) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-26T12:05:13.202202552Z]: cni0: port 2(veth4038cf57) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:05:13.273962552Z]: device veth4038cf57 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:05:13.336648552Z]: cni0: port 2(veth4038cf57) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:06:36.688450552Z]: cni0: port 1(vethb0459915) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:06:36.762290552Z]: device vethb0459915 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:06:36.824977552Z]: cni0: port 1(vethb0459915) entered disabled state
+ceph-thin1: user: warning: [2024-03-26T12:08:27.227657552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.648617552Z]: cni0: port 1(vethfce6d389) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.719700552Z]: cni0: port 1(vethfce6d389) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.790979552Z]: device vethfce6d389 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.873184552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.950565552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethfce6d389: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.950620552Z]: cni0: port 1(vethfce6d389) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:09:30.950626552Z]: cni0: port 1(vethfce6d389) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-26T12:09:34.119037552Z]: cni0: port 1(vethfce6d389) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:09:34.190985552Z]: device vethfce6d389 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:09:34.253712552Z]: cni0: port 1(vethfce6d389) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.348255552Z]: cni0: port 1(vethafbbddbf) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.419280552Z]: cni0: port 1(vethafbbddbf) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.490421552Z]: device vethafbbddbf entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.569192552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.646574552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethafbbddbf: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.732243552Z]: cni0: port 1(vethafbbddbf) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:10:28.732250552Z]: cni0: port 1(vethafbbddbf) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-26T12:10:32.342506552Z]: cni0: port 1(vethafbbddbf) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:32.414992552Z]: device vethafbbddbf left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:10:32.477721552Z]: cni0: port 1(vethafbbddbf) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.570779552Z]: cni0: port 1(vethe1b6c499) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.641736552Z]: cni0: port 1(vethe1b6c499) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.713045552Z]: device vethe1b6c499 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.797053552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.874451552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe1b6c499: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.960065552Z]: cni0: port 1(vethe1b6c499) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:10:33.960072552Z]: cni0: port 1(vethe1b6c499) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-26T12:10:37.360725552Z]: cni0: port 1(vethe1b6c499) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:37.432634552Z]: device vethe1b6c499 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:10:37.495305552Z]: cni0: port 1(vethe1b6c499) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.181594552Z]: cni0: port 1(veth1978fe42) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.252544552Z]: cni0: port 1(veth1978fe42) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.323959552Z]: device veth1978fe42 entered promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.405235552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.482607552Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1978fe42: link becomes ready
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.482662552Z]: cni0: port 1(veth1978fe42) entered blocking state
+ceph-thin1: kern:    info: [2024-03-26T12:10:39.482668552Z]: cni0: port 1(veth1978fe42) entered forwarding state
+ceph-thin1: kern:    info: [2024-03-26T12:10:47.467525552Z]: cni0: port 1(veth1978fe42) entered disabled state
+ceph-thin1: kern:    info: [2024-03-26T12:10:47.539335552Z]: device veth1978fe42 left promiscuous mode
+ceph-thin1: kern:    info: [2024-03-26T12:10:47.602067552Z]: cni0: port 1(veth1978fe42) entered disabled state
+ceph-thin1: user: warning: [2024-03-26T13:29:02.356629552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T14:49:37.633695552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T16:10:12.760423552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T17:30:47.890706552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T18:51:23.024185552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T20:11:58.150809552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T21:32:33.402220552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-26T22:53:08.551307552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T00:13:43.817415552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T01:34:18.943844552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T02:54:54.069953552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T03:25:44.559973552Z]: [talos] ntp query error with server "72.30.35.88" {"component": "controller-runtime", "controller": "time.SyncController", "error": "read udp 192.168.0.21:47340->72.30.35.88:123: i/o timeout"}
+ceph-thin1: user: warning: [2024-03-27T04:15:29.202341552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T05:36:04.332893552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T06:56:39.460593552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T08:17:14.590804552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T09:37:49.719837552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T10:58:24.849288552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T12:18:59.980616552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T13:39:35.291294552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin1: user: warning: [2024-03-27T15:00:10.416575552Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}

+ 2953 - 0
dezendorf/homelab/talos/dmesg.ceph-thin2.txt

@@ -0,0 +1,2953 @@
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000de0a1000-0x00000000de0dafff] ACPI data
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000de0db000-0x00000000de577fff] ACPI NVS
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000de578000-0x00000000de853fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: BIOS-e820: [mem 0x0000000100000000-0x00000002deffffff] usable
+ceph-thin2: kern:  notice: [2024-03-10T02:18:45.371566158Z]: random: crng init done
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: NX (Execute Disable) protection: active
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.371566158Z]: e820: update [mem 0x00092190-0x0009219f] usable ==> usable
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.371566158Z]: e820: update [mem 0x00092190-0x0009219f] usable ==> usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: extended physical RAM map:
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x0000000000000000-0x000000000009218f] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x0000000000092190-0x000000000009219f] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000000921a0-0x000000000009818f] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x0000000000098190-0x000000000009819f] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000000981a0-0x000000000009ebff] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x000000000009ec00-0x000000000009ffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000000e0000-0x00000000000fffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x0000000000100000-0x00000000ddfa6fff] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000ddfa7000-0x00000000de0a0fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000de0a1000-0x00000000de0dafff] ACPI data
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000de0db000-0x00000000de577fff] ACPI NVS
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000de578000-0x00000000de853fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: reserve setup_data: [mem 0x0000000100000000-0x00000002deffffff] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: SMBIOS 2.8 present.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: DMI: HP HP t630 Thin Client/8158, BIOS M40 v01.03 10/05/2016
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: tsc: Fast TSC calibration using PIT
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.371566158Z]: tsc: Detected 1996.217 MHz processor
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.375043158Z]: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.375055158Z]: e820: remove [mem 0x000a0000-0x000fffff] usable
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.375103158Z]: last_pfn = 0x2df000 max_arch_pfn = 0x400000000
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.375465158Z]: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.375951158Z]: e820: update [mem 0xdf000000-0xffffffff] usable ==> reserved
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.375978158Z]: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.393788158Z]: found SMP MP-table at [mem 0x000fcc10-0x000fcc1f]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.393850158Z]: Kernel/User page tables isolation: force enabled on command line.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.393856158Z]: Using GB pages for direct mapping
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396451158Z]: RAMDISK: [mem 0xd606f000-0xd99fffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396463158Z]: ACPI: Early table checksum verification disabled
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396471158Z]: ACPI: RSDP 0x00000000000F05B0 000024 (v02 HPQOEM)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396486158Z]: ACPI: XSDT 0x00000000DE0AC090 0000A4 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396506158Z]: ACPI: FACP 0x00000000DE0BC7F0 00010C (v05 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin2: kern: warning: [2024-03-10T02:18:45.396524158Z]: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20220331/tbfadt-615)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396541158Z]: ACPI: DSDT 0x00000000DE0AC1C8 010623 (v02 HPQOEM SLIC-WKS 01072009 INTL 20120913)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396555158Z]: ACPI: FACS 0x00000000DE576C80 000040
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396565158Z]: ACPI: APIC 0x00000000DE0BC900 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396577158Z]: ACPI: FPDT 0x00000000DE0BC980 000044 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396589158Z]: ACPI: FIDT 0x00000000DE0BC9C8 00009C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396600158Z]: ACPI: TCPA 0x00000000DE0BCA68 000032 (v02 ALASKA NAPAASF  00000001 MSFT 01000013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396612158Z]: ACPI: MCFG 0x00000000DE0BCAA0 00003C (v01 HPQOEM SLIC-WKS 01072009 MSFT 00010013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396624158Z]: ACPI: HPET 0x00000000DE0BCAE0 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI  00000005)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396635158Z]: ACPI: UEFI 0x00000000DE0BCB18 000042 (v01                 00000000      00000000)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396647158Z]: ACPI: IVRS 0x00000000DE0BCB60 0000D0 (v02 AMD    AGESA    00000001 AMD  00000000)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396658158Z]: ACPI: DBGP 0x00000000DE0BCC30 000034 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396670158Z]: ACPI: SSDT 0x00000000DE0BCC68 000843 (v01 HPQOEM SLIC-WKS 00000001 INTL 20120913)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396681158Z]: ACPI: SSDT 0x00000000DE0BD4B0 000EE4 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396692158Z]: ACPI: SSDT 0x00000000DE0BE398 00873A (v02 AMD    AGESA    00000002 MSFT 04000000)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396703158Z]: ACPI: CRAT 0x00000000DE0C6AD8 000528 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396714158Z]: ACPI: SSDT 0x00000000DE0C7000 00147F (v01 AMD    CPMDFIGP 00000001 INTL 20120913)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396726158Z]: ACPI: SSDT 0x00000000DE0C8480 0015F0 (v01 AMD    CPMCMN   00000001 INTL 20120913)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396736158Z]: ACPI: Reserving FACP table memory at [mem 0xde0bc7f0-0xde0bc8fb]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396742158Z]: ACPI: Reserving DSDT table memory at [mem 0xde0ac1c8-0xde0bc7ea]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396747158Z]: ACPI: Reserving FACS table memory at [mem 0xde576c80-0xde576cbf]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396751158Z]: ACPI: Reserving APIC table memory at [mem 0xde0bc900-0xde0bc97d]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396755158Z]: ACPI: Reserving FPDT table memory at [mem 0xde0bc980-0xde0bc9c3]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396759158Z]: ACPI: Reserving FIDT table memory at [mem 0xde0bc9c8-0xde0bca63]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396763158Z]: ACPI: Reserving TCPA table memory at [mem 0xde0bca68-0xde0bca99]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396767158Z]: ACPI: Reserving MCFG table memory at [mem 0xde0bcaa0-0xde0bcadb]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396771158Z]: ACPI: Reserving HPET table memory at [mem 0xde0bcae0-0xde0bcb17]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396774158Z]: ACPI: Reserving UEFI table memory at [mem 0xde0bcb18-0xde0bcb59]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396778158Z]: ACPI: Reserving IVRS table memory at [mem 0xde0bcb60-0xde0bcc2f]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396782158Z]: ACPI: Reserving DBGP table memory at [mem 0xde0bcc30-0xde0bcc63]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396786158Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bcc68-0xde0bd4aa]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396790158Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bd4b0-0xde0be393]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396794158Z]: ACPI: Reserving SSDT table memory at [mem 0xde0be398-0xde0c6ad1]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396798158Z]: ACPI: Reserving CRAT table memory at [mem 0xde0c6ad8-0xde0c6fff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396801158Z]: ACPI: Reserving SSDT table memory at [mem 0xde0c7000-0xde0c847e]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396806158Z]: ACPI: Reserving SSDT table memory at [mem 0xde0c8480-0xde0c9a6f]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396917158Z]: No NUMA configuration found
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396920158Z]: Faking a node at [mem 0x0000000000000000-0x00000002deffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.396936158Z]: NODE_DATA(0) allocated [mem 0x2deffc000-0x2deffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397070158Z]: Zone ranges:
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397073158Z]:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397081158Z]:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397087158Z]:   Normal   [mem 0x0000000100000000-0x00000002deffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397093158Z]: Movable zone start for each node
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397096158Z]: Early memory node ranges
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397098158Z]:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397103158Z]:   node   0: [mem 0x0000000000100000-0x00000000ddfa6fff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397108158Z]:   node   0: [mem 0x00000000de854000-0x00000000deffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397112158Z]:   node   0: [mem 0x0000000100000000-0x00000002deffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397121158Z]: Initmem setup node 0 [mem 0x0000000000001000-0x00000002deffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397139158Z]: On node 0, zone DMA: 1 pages in unavailable ranges
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.397252158Z]: On node 0, zone DMA: 98 pages in unavailable ranges
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.422271158Z]: On node 0, zone DMA32: 2221 pages in unavailable ranges
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476364158Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476488158Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476589158Z]: ACPI: PM-Timer IO Port: 0x808
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476611158Z]: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476629158Z]: IOAPIC[0]: apic_id 0, version 33, address 0xfec00000, GSI 0-23
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476640158Z]: IOAPIC[1]: apic_id 1, version 33, address 0xfec01000, GSI 24-55
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476649158Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476656158Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476672158Z]: ACPI: Using ACPI (MADT) for SMP configuration information
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476676158Z]: ACPI: HPET id: 0x10228201 base: 0xfed00000
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476689158Z]: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476772158Z]: [mem 0xdf000000-0xf7ffffff] available for PCI devices
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476777158Z]: Booting paravirtualized kernel on bare hardware
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.476784158Z]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.508116158Z]: setup_percpu: NR_CPUS:512 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.509025158Z]: percpu: Embedded 56 pages/cpu s192080 r8192 d29104 u524288
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.509051158Z]: pcpu-alloc: s192080 r8192 d29104 u524288 alloc=1*2097152
+ceph-thin2: kern:   debug: [2024-03-10T02:18:45.509061158Z]: pcpu-alloc: [0] 0 1 2 3 
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.509150158Z]: Fallback order for Node 0: 0 
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.509161158Z]: Built 1 zonelists, mobility grouping on.  Total pages: 2828021
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.509167158Z]: Policy zone: Normal
+ceph-thin2: kern:  notice: [2024-03-10T02:18:45.509171158Z]: Kernel command line: talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin2: kern:  notice: [2024-03-10T02:18:45.510161158Z]: Unknown kernel command line parameters "pti=on", will be passed to user space.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.515103158Z]: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.517584158Z]: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.517665158Z]: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.517717158Z]: software IO TLB: area num 4.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.640230158Z]: Memory: 11092744K/11492288K available (28692K kernel code, 3989K rwdata, 17468K rodata, 3088K init, 2692K bss, 399284K reserved, 0K cma-reserved)
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.640749158Z]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.640794158Z]: Kernel/User page tables isolation: enabled
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.640900158Z]: ftrace: allocating 82001 entries in 321 pages
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.704567158Z]: ftrace: allocated 321 pages with 3 groups
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710125158Z]: Dynamic Preempt: voluntary
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710246158Z]: rcu: Preemptible hierarchical RCU implementation.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710249158Z]: rcu: \x09RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710255158Z]: \x09Trampoline variant of Tasks RCU enabled.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710257158Z]: \x09Rude variant of Tasks RCU enabled.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710259158Z]: \x09Tracing variant of Tasks RCU enabled.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710262158Z]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.710265158Z]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.736199158Z]: NR_IRQS: 33024, nr_irqs: 1000, preallocated irqs: 16
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.736514158Z]: rcu: srcu_init: Setting srcu_struct sizes based on contention.
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.736910158Z]: Console: colour dummy device 80x25
+ceph-thin2: kern:    info: [2024-03-10T02:18:45.738107158Z]: printk: console [tty0] enabled
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.122180158Z]: printk: console [ttyS0] enabled
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.172280158Z]: ACPI: Core revision 20220331
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.219602158Z]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.328948158Z]: APIC: Switch to symmetric I/O mode setup
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.388947158Z]: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.476952158Z]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c7135575, max_idle_ns: 881590756769 ns
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.602954158Z]: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.43 BogoMIPS (lpj=7984868)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.607005158Z]: LVT offset 1 assigned for vector 0xf9
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.610967158Z]: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.614946158Z]: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.618955158Z]: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.622952158Z]: Spectre V2 : Mitigation: Retpolines
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.626946158Z]: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.630946158Z]: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.634947158Z]: RETBleed: Mitigation: untrained return thunk
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.638950158Z]: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.642960158Z]: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.646946158Z]: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.650946158Z]: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.654948158Z]: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.658946158Z]: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.710083158Z]: Freeing SMP alternatives memory: 68K
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.710951158Z]: pid_max: default: 32768 minimum: 301
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.715061158Z]: LSM: Security Framework initializing
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.718961158Z]: Yama: becoming mindful.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.723091158Z]: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.727016158Z]: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.841447158Z]: smpboot: CPU0: AMD Embedded G-Series GX-420GI Radeon R7E (family: 0x15, model: 0x60, stepping: 0x1)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.843438158Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.846947158Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.851017158Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.854946158Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.859004158Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.862946158Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.867000158Z]: Performance Events: Fam15h core perfctr, AMD PMU driver.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.870948158Z]: ... version:                0
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.874945158Z]: ... bit width:              48
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.878945158Z]: ... generic registers:      6
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.882945158Z]: ... value mask:             0000ffffffffffff
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.886945158Z]: ... max period:             00007fffffffffff
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.890945158Z]: ... fixed-purpose events:   0
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.894945158Z]: ... event mask:             000000000000003f
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.899419158Z]: signal: max sigframe size: 1776
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.903021158Z]: rcu: Hierarchical SRCU implementation.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.906947158Z]: rcu: \x09Max phase no-delay instances is 1000.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.911519158Z]: MCE: In-kernel MCE decoding enabled.
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.915106158Z]: smp: Bringing up secondary CPUs ...
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.923175158Z]: x86: Booting SMP configuration:
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.926946158Z]: .... node  #0, CPUs:      #1 #2 #3
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.937195158Z]: smp: Brought up 1 node, 4 CPUs
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.942953158Z]: smpboot: Max logical packages: 1
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.946947158Z]: smpboot: Total of 4 processors activated (15969.73 BogoMIPS)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.953081158Z]: devtmpfs: initialized
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.959240158Z]: ACPI: PM: Registering ACPI NVS region [mem 0xde0db000-0xde577fff] (4837376 bytes)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.963343158Z]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.966973158Z]: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.971368158Z]: PM: RTC time: 02:18:46, date: 2024-03-10
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.979192158Z]: NET: Registered PF_NETLINK/PF_ROUTE protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.987055158Z]: audit: initializing netlink subsys (disabled)
+ceph-thin2: kern:  notice: [2024-03-10T02:18:59.991027158Z]: audit: type=2000 audit(1710037108.416:1): state=initialized audit_enabled=0 res=1
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.991275158Z]: thermal_sys: Registered thermal governor 'step_wise'
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.994949158Z]: thermal_sys: Registered thermal governor 'user_space'
+ceph-thin2: kern:    info: [2024-03-10T02:18:59.999013158Z]: cpuidle: using governor menu
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.119340158Z]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.199074158Z]: dca service started, version 1.12.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.250963158Z]: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.362947158Z]: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.446976158Z]: PCI: Using configuration type 1 for base access
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.523136158Z]: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.527086158Z]: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.610952158Z]: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.687079158Z]: cryptd: max_cpu_qlen set to 1000
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.735121158Z]: ACPI: Added _OSI(Module Device)
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.786948158Z]: ACPI: Added _OSI(Processor Device)
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.838945158Z]: ACPI: Added _OSI(3.0 _SCP Extensions)
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.894945158Z]: ACPI: Added _OSI(Processor Aggregator Device)
+ceph-thin2: kern:    info: [2024-03-10T02:19:00.981475158Z]: ACPI: 6 ACPI AML tables successfully acquired and loaded
+ceph-thin2: kern:  notice: [2024-03-10T02:19:01.061634158Z]: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.142823158Z]: ACPI: Interpreter enabled
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.186987158Z]: ACPI: PM: (supports S0 S3 S5)
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.234947158Z]: ACPI: Using IOAPIC for interrupt routing
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.295000158Z]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.402946158Z]: PCI: Using E820 reservations for host bridge windows
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.475320158Z]: ACPI: Enabled 5 GPEs in block 00 to 1F
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.537697158Z]: ACPI: PM: Power Resource [P0SD]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.587001158Z]: ACPI: PM: Power Resource [P3SD]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.639119158Z]: ACPI: PM: Power Resource [P0U2]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.687005158Z]: ACPI: PM: Power Resource [P3U2]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.739176158Z]: ACPI: PM: Power Resource [P0U3]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.786991158Z]: ACPI: PM: Power Resource [P3U3]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.839259158Z]: ACPI: PM: Power Resource [P0ST]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.891028158Z]: ACPI: PM: Power Resource [P3ST]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.939070158Z]: ACPI: PM: Power Resource [P0SA]
+ceph-thin2: kern:    info: [2024-03-10T02:19:01.990981158Z]: ACPI: PM: Power Resource [P3SA]
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.044065158Z]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.118955158Z]: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.227061158Z]: acpi PNP0A08:00: _OSC: platform does not support [LTR]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.299139158Z]: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.394979158Z]: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.523500158Z]: PCI host bridge to bus 0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.570946158Z]: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.654945158Z]: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.734945158Z]: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.814945158Z]: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.894945158Z]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:02.986945158Z]: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.074949158Z]: pci_bus 0000:00: root bus resource [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.166945158Z]: pci_bus 0000:00: root bus resource [bus 00-ff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.230956158Z]: pci 0000:00:00.0: [1022:1576] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.302973158Z]: pci 0000:00:00.2: [1022:1577] type 00 class 0x080600
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.375017158Z]: pci 0000:00:01.0: [1002:9874] type 00 class 0x030000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.446961158Z]: pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.534962158Z]: pci 0000:00:01.0: reg 0x18: [mem 0xf0000000-0xf07fffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.618963158Z]: pci 0000:00:01.0: reg 0x20: [io  0xf000-0xf0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.686962158Z]: pci 0000:00:01.0: reg 0x24: [mem 0xfeb00000-0xfeb3ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.762962158Z]: pci 0000:00:01.0: reg 0x30: [mem 0xfeb40000-0xfeb5ffff pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.842962158Z]: pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:03.942945158Z]: pci 0000:00:01.0: pci_fixup_video+0x0/0xe0 took 97656 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.022982158Z]: pci 0000:00:01.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.070943158Z]: pci 0000:00:01.0: PME# supported from D1 D2 D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.143156158Z]: pci 0000:00:01.1: [1002:9840] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.214999158Z]: pci 0000:00:01.1: reg 0x10: [mem 0xfeb64000-0xfeb67fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.295009158Z]: pci 0000:00:01.1: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.347035158Z]: pci 0000:00:02.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.419023158Z]: pci 0000:00:02.2: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.491033158Z]: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.563077158Z]: pci 0000:00:02.3: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.635028158Z]: pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.707074158Z]: pci 0000:00:03.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.779046158Z]: pci 0000:00:08.0: [1022:1578] type 00 class 0x108000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.850956158Z]: pci 0000:00:08.0: reg 0x10: [mem 0xf0800000-0xf081ffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:04.938949158Z]: pci 0000:00:08.0: reg 0x18: [mem 0xfe800000-0xfe8fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.014949158Z]: pci 0000:00:08.0: reg 0x1c: [mem 0xfeb6f000-0xfeb6ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.086953158Z]: pci 0000:00:08.0: reg 0x24: [mem 0xfeb6a000-0xfeb6bfff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.163073158Z]: pci 0000:00:09.0: [1022:157d] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.235035158Z]: pci 0000:00:09.2: [1022:157a] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.306953158Z]: pci 0000:00:09.2: reg 0x10: [mem 0xfeb60000-0xfeb63fff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.382999158Z]: pci 0000:00:09.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.455062158Z]: pci 0000:00:10.0: [1022:7914] type 00 class 0x0c0330
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.526968158Z]: pci 0000:00:10.0: reg 0x10: [mem 0xfeb68000-0xfeb69fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.607061158Z]: pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.683099158Z]: pci 0000:00:11.0: [1022:7900] type 00 class 0x010601
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.754960158Z]: pci 0000:00:11.0: reg 0x10: [io  0xf140-0xf147]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.818953158Z]: pci 0000:00:11.0: reg 0x14: [io  0xf130-0xf133]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.886953158Z]: pci 0000:00:11.0: reg 0x18: [io  0xf120-0xf127]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:05.954953158Z]: pci 0000:00:11.0: reg 0x1c: [io  0xf110-0xf113]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.018952158Z]: pci 0000:00:11.0: reg 0x20: [io  0xf100-0xf10f]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.086952158Z]: pci 0000:00:11.0: reg 0x24: [mem 0xfeb6d000-0xfeb6d3ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.162989158Z]: pci 0000:00:11.0: PME# supported from D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.223067158Z]: pci 0000:00:12.0: [1022:7908] type 00 class 0x0c0320
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.294959158Z]: pci 0000:00:12.0: reg 0x10: [mem 0xfeb6c000-0xfeb6c0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.371032158Z]: pci 0000:00:12.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.422944158Z]: pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.503047158Z]: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.575102158Z]: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.647141158Z]: pci 0000:00:18.0: [1022:1570] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.719017158Z]: pci 0000:00:18.1: [1022:1571] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.791026158Z]: pci 0000:00:18.2: [1022:1572] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.863025158Z]: pci 0000:00:18.3: [1022:1573] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:06.935019158Z]: pci 0000:00:18.4: [1022:1574] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.007012158Z]: pci 0000:00:18.5: [1022:1575] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.079094158Z]: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.150963158Z]: pci 0000:01:00.0: reg 0x10: [io  0xe000-0xe0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.214969158Z]: pci 0000:01:00.0: reg 0x18: [mem 0xfea04000-0xfea04fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.298960158Z]: pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.379048158Z]: pci 0000:01:00.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.430947158Z]: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.511206158Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.570949158Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.642947158Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.723046158Z]: pci 0000:02:00.0: [8086:24fb] type 00 class 0x028000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.794982158Z]: pci 0000:02:00.0: reg 0x10: [mem 0xfe900000-0xfe901fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.875150158Z]: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:07.951232158Z]: pci 0000:00:02.3: PCI bridge to [bus 02]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.010950158Z]: pci 0000:00:02.3:   bridge window [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.092247158Z]: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.163018158Z]: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.235050158Z]: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.303015158Z]: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.375011158Z]: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.447006158Z]: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.519001158Z]: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.587000158Z]: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.659620158Z]: iommu: Default domain type: Translated 
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.718945158Z]: iommu: DMA domain TLB invalidation policy: lazy mode 
+ceph-thin2: kern:  notice: [2024-03-10T02:19:08.791102158Z]: SCSI subsystem initialized
+ceph-thin2: kern:   debug: [2024-03-10T02:19:08.834980158Z]: libata version 3.00 loaded.
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.835021158Z]: ACPI: bus type USB registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.882987158Z]: usbcore: registered new interface driver usbfs
+ceph-thin2: kern:    info: [2024-03-10T02:19:08.950961158Z]: usbcore: registered new interface driver hub
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.014954158Z]: usbcore: registered new device driver usb
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.074967158Z]: pps_core: LinuxPPS API ver. 1 registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.134944158Z]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.242948158Z]: PTP clock support registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.290980158Z]: EDAC MC: Ver: 3.0.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.327332158Z]: NET: Registered PF_ATMPVC protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.390946158Z]: NET: Registered PF_ATMSVC protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.450992158Z]: NetLabel: Initializing
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.490948158Z]: NetLabel:  domain hash size = 128
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.542943158Z]: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.610976158Z]: NetLabel:  unlabeled traffic allowed by default
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.674990158Z]: PCI: Using ACPI for IRQ routing
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727531158Z]: PCI: pci_cache_line_size set to 64 bytes
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727647158Z]: e820: reserve RAM buffer [mem 0x00092190-0x0009ffff]
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727651158Z]: e820: reserve RAM buffer [mem 0x00098190-0x0009ffff]
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727654158Z]: e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727656158Z]: e820: reserve RAM buffer [mem 0xddfa7000-0xdfffffff]
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727658158Z]: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
+ceph-thin2: kern:   debug: [2024-03-10T02:19:09.727660158Z]: e820: reserve RAM buffer [mem 0x2df000000-0x2dfffffff]
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.730980158Z]: pci 0000:00:01.0: vgaarb: setting as boot VGA device
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.734941158Z]: pci 0000:00:01.0: vgaarb: bridge control possible
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.734941158Z]: pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:09.970952158Z]: vgaarb: loaded
+ceph-thin2: kern: warning: [2024-03-10T02:19:10.003225158Z]: acpi PNP0C14:01: duplicate WMI GUID 5FB7F034-2C63-45E9-BE91-3D44E2C707E4 (first instance was on PNP0C14:00)
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0C14:01
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.135271158Z]: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.190943158Z]: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.265034158Z]: clocksource: Switched to clocksource tsc-early
+ceph-thin2: kern:  notice: [2024-03-10T02:19:10.394712158Z]: VFS: Disk quotas dquot_6.6.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.441797158Z]: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.524296158Z]: pnp: PnP ACPI init
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.561180158Z]: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.640574158Z]: system 00:01: [mem 0xa0000000-0xdfffffff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:01
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.724150158Z]: system 00:02: [mem 0xfeb80000-0xfebfffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:02
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.803861158Z]: system 00:04: [io  0x0a00-0x0a1f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.874680158Z]: system 00:04: [io  0x0a20-0x0a2f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:    info: [2024-03-10T02:19:10.945500158Z]: system 00:04: [io  0x0e00-0x0efe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.016336158Z]: system 00:04: [io  0x0a40-0x0a5f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.087207158Z]: system 00:04: [io  0x0a60-0x0a7f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.158085158Z]: system 00:04: [io  0x0a80-0x0a9f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.228912158Z]: system 00:04: [io  0x0a30-0x0a3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin2: kern:   debug: [2024-03-10T02:19:11.300123158Z]: pnp 00:07: [dma 0 disabled]
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:07
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.300624158Z]: system 00:08: [io  0x04d0-0x04d1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.371497158Z]: system 00:08: [io  0x040b] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.435051158Z]: system 00:08: [io  0x04d6] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.498686158Z]: system 00:08: [io  0x0c00-0x0c01] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.569544158Z]: system 00:08: [io  0x0c14] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.633183158Z]: system 00:08: [io  0x0c50-0x0c51] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.704118158Z]: system 00:08: [io  0x0c52] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.767730158Z]: system 00:08: [io  0x0c6c] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.831272158Z]: system 00:08: [io  0x0c6f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.894828158Z]: system 00:08: [io  0x0cd0-0x0cd1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:11.965675158Z]: system 00:08: [io  0x0cd2-0x0cd3] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.036507158Z]: system 00:08: [io  0x0cd4-0x0cd5] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.107383158Z]: system 00:08: [io  0x0cd6-0x0cd7] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.178308158Z]: system 00:08: [io  0x0cd8-0x0cdf] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.249192158Z]: system 00:08: [io  0x0800-0x089f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.320003158Z]: system 00:08: [io  0x0b00-0x0b0f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.390815158Z]: system 00:08: [io  0x0b20-0x0b3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.461631158Z]: system 00:08: [io  0x0900-0x090f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.532460158Z]: system 00:08: [io  0x0910-0x091f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.603327158Z]: system 00:08: [io  0xfe00-0xfefe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.674231158Z]: system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.757557158Z]: system 00:08: [mem 0xfec01000-0xfec01fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.840878158Z]: system 00:08: [mem 0xfedc0000-0xfedc0fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.920033158Z]: system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:12.999192158Z]: system 00:08: [mem 0xfed80000-0xfed8ffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.078344158Z]: system 00:08: [mem 0xfed61000-0xfed70fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.157529158Z]: system 00:08: [mem 0xfec10000-0xfec10fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.236742158Z]: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.316587158Z]: pnp: PnP ACPI: found 10 devices
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.375839158Z]: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.482224158Z]: NET: Registered PF_INET protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.541501158Z]: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.637356158Z]: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.740755158Z]: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.833933158Z]: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:13.931914158Z]: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.021783158Z]: TCP: Hash tables configured (established 131072 bind 65536)
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.101311158Z]: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.182824158Z]: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.269530158Z]: NET: Registered PF_UNIX/PF_LOCAL protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.337710158Z]: RPC: Registered named UNIX socket transport module.
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.408577158Z]: RPC: Registered udp transport module.
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.464907158Z]: RPC: Registered tcp transport module.
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.521257158Z]: RPC: Registered tcp NFSv4.1 backchannel transport module.
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.598456158Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.657891158Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.730861158Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.812154158Z]: pci 0000:00:02.3: PCI bridge to [bus 02]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.871618158Z]: pci 0000:00:02.3:   bridge window [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:14.952941158Z]: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.026967158Z]: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.100985158Z]: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.175020158Z]: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.249054158Z]: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.331405158Z]: pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.413762158Z]: pci_bus 0000:00: resource 10 [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.497159158Z]: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.563919158Z]: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.639000158Z]: pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:02
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.714318158Z]: pci 0000:00:01.1: D0 power state depends on 0000:00:01.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.790429158Z]: pci 0000:00:01.1: quirk_gpu_hda+0x0/0x10 took 74413 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.868017158Z]: pci 0000:00:10.0: PME# does not work under D0, disabling it
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:15.947257158Z]: pci 0000:00:10.0: pci_fixup_amd_fch_xhci_pme+0x0/0x29 took 77383 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.038124158Z]: PCI: CLS 64 bytes, default 64
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.086575158Z]: Unpacking initramfs...
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.089348158Z]: AMD-Vi: Using global IVHD EFR:0x77ef22294ada, EFR2:0x0
+ceph-thin2: kern: warning: [2024-03-10T02:19:16.201440158Z]: AMD-Vi: [Firmware Warn]: EFR mismatch. Use IVHD EFR (0x37ef22294ada : 0x77ef22294ada), EFR2 (0x0 : 0x0).
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.327429158Z]: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.409910158Z]: pci 0000:00:01.0: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.470442158Z]: pci 0000:00:01.1: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.531002158Z]: pci 0000:00:02.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.591519158Z]: pci 0000:00:02.2: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.652040158Z]: pci 0000:00:02.3: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.712580158Z]: pci 0000:00:03.0: Adding to iommu group 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.773132158Z]: pci 0000:00:08.0: Adding to iommu group 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.833668158Z]: pci 0000:00:09.0: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.894182158Z]: pci 0000:00:09.2: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:16.954692158Z]: pci 0000:00:10.0: Adding to iommu group 5
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.015198158Z]: pci 0000:00:11.0: Adding to iommu group 6
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.075730158Z]: pci 0000:00:12.0: Adding to iommu group 7
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.136290158Z]: pci 0000:00:14.0: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.196801158Z]: pci 0000:00:14.3: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.257393158Z]: pci 0000:00:18.0: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.317874158Z]: pci 0000:00:18.1: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.378395158Z]: pci 0000:00:18.2: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.438934158Z]: pci 0000:00:18.3: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.499435158Z]: pci 0000:00:18.4: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.559952158Z]: pci 0000:00:18.5: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.620461158Z]: pci 0000:01:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.680997158Z]: pci 0000:02:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.743475158Z]: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.809124158Z]: AMD-Vi: Extended features (0x77ef22294ada, 0x0): PPR NX GT IA GA PC GA_vAPIC
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.906290158Z]: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
+ceph-thin2: kern:    info: [2024-03-10T02:19:17.983422158Z]: software IO TLB: mapped [mem 0x00000000d9fa7000-0x00000000ddfa7000] (64MB)
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.078631158Z]: LVT offset 0 assigned for vector 0x400
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.136152158Z]: perf: AMD IBS detected (0x000007ff)
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.167627158Z]: Freeing initrd memory: 58948K
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.190443158Z]: amd_uncore: 4  amd_nb counters detected
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.297384158Z]: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
+ceph-thin2: kern:     err: [2024-03-10T02:19:18.382960158Z]: kvm: no hardware support for 'kvm_intel'
+ceph-thin2: kern:     err: [2024-03-10T02:19:18.442368158Z]: kvm: support for 'kvm_amd' disabled by bios
+ceph-thin2: kern:  notice: [2024-03-10T02:19:18.507716158Z]: Initialise system trusted keyrings
+ceph-thin2: kern:  notice: [2024-03-10T02:19:18.560954158Z]: Key type blacklist registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.609262158Z]: workingset: timestamp_bits=40 max_order=22 bucket_order=0
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.689745158Z]: squashfs: version 4.0 (2009/01/31) Phillip Lougher
+ceph-thin2: kern:  notice: [2024-03-10T02:19:18.760316158Z]: NFS: Registering the id_resolver key type
+ceph-thin2: kern:  notice: [2024-03-10T02:19:18.820822158Z]: Key type id_resolver registered
+ceph-thin2: kern:  notice: [2024-03-10T02:19:18.870925158Z]: Key type id_legacy registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.919057158Z]: nfs4filelayout_init: NFSv4 File Layout Driver Registering...
+ceph-thin2: kern:    info: [2024-03-10T02:19:18.999305158Z]: nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
+ceph-thin2: kern:  notice: [2024-03-10T02:19:19.089005158Z]: Key type cifs.spnego registered
+ceph-thin2: kern:  notice: [2024-03-10T02:19:19.139180158Z]: Key type cifs.idmap registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.188385158Z]: fuse: init (API version 7.37)
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.236711158Z]: SGI XFS with ACLs, security attributes, quota, no debug enabled
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.321439158Z]: ceph: loaded (mds proto 32)
+ceph-thin2: kern:  notice: [2024-03-10T02:19:19.367557158Z]: integrity: Platform Keyring initialized
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.442278158Z]: NET: Registered PF_ALG protocol family
+ceph-thin2: kern:  notice: [2024-03-10T02:19:19.499667158Z]: Key type asymmetric registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.514017158Z]: tsc: Refined TSC clocksource calibration: 1996.251 MHz
+ceph-thin2: kern:  notice: [2024-03-10T02:19:19.548754158Z]: Asymmetric key parser 'x509' registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.548766158Z]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cb1e4d56, max_idle_ns: 881590790753 ns
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.623015158Z]: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.889562158Z]: clocksource: Switched to clocksource tsc
+ceph-thin2: kern:    info: [2024-03-10T02:19:19.889686158Z]: io scheduler mq-deadline registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.003337158Z]: io scheduler kyber registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.052857158Z]: pcieport 0000:00:02.2: PME: Signaling with IRQ 26
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.122333158Z]: pcieport 0000:00:02.3: PME: Signaling with IRQ 27
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.191646158Z]: hv_vmbus: registering driver hyperv_fb
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.249135158Z]: IPMI message handler: version 39.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.302341158Z]: ipmi device interface
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.342184158Z]: ipmi_si: IPMI System Interface driver
+ceph-thin2: kern: warning: [2024-03-10T02:19:20.398685158Z]: ipmi_si: Unable to find any System Interface(s)
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.465420158Z]: IPMI poweroff: Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.575292158Z]: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.675384158Z]: ACPI: button: Power Button [PWRB]
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.727751158Z]: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.816466158Z]: ACPI: button: Power Button [PWRF]
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.868896158Z]: ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
+ceph-thin2: kern:    info: [2024-03-10T02:19:20.957892158Z]: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.067472158Z]: ACPI: \x5c_PR_.P000: Found 2 idle states
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.124152158Z]: ACPI: \x5c_PR_.P001: Found 2 idle states
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.180770158Z]: ACPI: \x5c_PR_.P002: Found 2 idle states
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.237478158Z]: ACPI: \x5c_PR_.P003: Found 2 idle states
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.294520158Z]: ioatdma: Intel(R) QuickData Technology Driver 5.00
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.364868158Z]: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.440144158Z]: 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.529682158Z]: Non-volatile memory driver v1.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.579782158Z]: Linux agpgart interface v0.103
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.633703158Z]: tpm_tis 00:09: 1.2 TPM (device-id 0x1A, rev-id 16)
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:09
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.733410158Z]: ACPI: bus type drm_connector registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.792064158Z]: [drm] amdgpu kernel modesetting enabled.
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.880073158Z]: [drm] initializing kernel modesetting (CARRIZO 0x1002:0x9874 0x103C:0x8158 0x88).
+ceph-thin2: kern:    info: [2024-03-10T02:19:21.982305158Z]: [drm] register mmio base: 0xFEB00000
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.037646158Z]: [drm] register mmio size: 262144
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.089064158Z]: [drm] add ip block number 0 <vi_common>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.147486158Z]: [drm] add ip block number 1 <gmc_v8_0>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.204887158Z]: [drm] add ip block number 2 <cz_ih>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.259186158Z]: [drm] add ip block number 3 <gfx_v8_0>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.316605158Z]: [drm] add ip block number 4 <sdma_v3_0>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.375063158Z]: [drm] add ip block number 5 <powerplay>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.433525158Z]: [drm] add ip block number 6 <dm>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.484697158Z]: [drm] add ip block number 7 <uvd_v6_0>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.542097158Z]: [drm] add ip block number 8 <vce_v3_0>
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.615700158Z]: [drm] BIOS signature incorrect 5b 7
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.670053158Z]: amdgpu 0000:00:01.0: amdgpu: Fetched VBIOS from ROM BAR
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.745141158Z]: amdgpu: ATOM BIOS: 113-C75100-X28
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.797380158Z]: [drm] UVD is enabled in physical mode
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.853745158Z]: [drm] VCE enabled in physical mode
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.907010158Z]: amdgpu 0000:00:01.0: vgaarb: deactivate vga console
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:22.977979158Z]: amdgpu 0000:00:01.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.074984158Z]: [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.173944158Z]: amdgpu 0000:00:01.0: amdgpu: VRAM: 1024M 0x000000F400000000 - 0x000000F43FFFFFFF (1024M used)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.288568158Z]: amdgpu 0000:00:01.0: amdgpu: GART: 1024M 0x000000FF00000000 - 0x000000FF3FFFFFFF
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.389689158Z]: [drm] Detected VRAM RAM=1024M, BAR=1024M
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.449177158Z]: [drm] RAM width 128bits UNKNOWN
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.499541158Z]: [drm] amdgpu: 1024M of VRAM memory ready
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.559015158Z]: [drm] amdgpu: 5445M of GTT memory ready.
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.618548158Z]: [drm] GART: num cpu pages 262144, num gpu pages 262144
+ceph-thin2: kern:    info: [2024-03-10T02:19:23.692628158Z]: [drm] PCIE GART of 1024M enabled (table at 0x000000F400A00000).
+ceph-thin2: kern: warning: [2024-03-10T02:19:23.776251158Z]: amdgpu 0000:00:01.0: Direct firmware load for amdgpu/carrizo_pfp.bin failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:     err: [2024-03-10T02:19:23.886691158Z]: amdgpu 0000:00:01.0: amdgpu: gfx8: Failed to load firmware "amdgpu/carrizo_pfp.bin"
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:     err: [2024-03-10T02:19:23.990883158Z]: [drm:gfx_v8_0_sw_init.cold] *ERROR* Failed to load gfx firmware!
+ceph-thin2: kern:     err: [2024-03-10T02:19:24.075336158Z]: [drm:amdgpu_device_init.cold] *ERROR* sw_init of IP block <gfx_v8_0> failed -2
+ceph-thin2: kern:     err: [2024-03-10T02:19:24.174361158Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu_device_ip_init failed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:     err: [2024-03-10T02:19:24.251540158Z]: amdgpu 0000:00:01.0: amdgpu: Fatal error during GPU init
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:24.327673158Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu: finishing device.
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.401914158Z]: ------------[ cut here ]------------
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.457184158Z]: WARNING: CPU: 1 PID: 1 at drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c:655 amdgpu_irq_put+0x45/0x70
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.572833158Z]: Modules linked in:
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.609447158Z]: CPU: 1 PID: 1 Comm: swapper/0 Not tainted 6.1.61-talos #1
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.686644158Z]: Hardware name: HP HP t630 Thin Client/8158, BIOS M40 v01.03 10/05/2016
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.777320158Z]: RIP: 0010:amdgpu_irq_put+0x45/0x70
+ceph-thin2: kern: warning: [2024-03-10T02:19:24.830564158Z]: Code: 48 8b 4e 10 48 83 39 00 74 2c 89 d1 48 8d 04 88 8b 08 85 c9 74 14 f0 ff 08 b8 00 00 00 00 74 05 e9 f0 3d 16 01 e9 8b fd ff ff <0f> 0b b8 ea ff ff ff e9 df 3d 16 01 b8 ea ff ff ff e9 d5 3d 16 01
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.055421158Z]: RSP: 0018:ffffa21680037c28 EFLAGS: 00010246
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.118016158Z]: RAX: ffff953800079600 RBX: ffff953806d20000 RCX: 0000000000000000
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.203481158Z]: RDX: 0000000000000000 RSI: ffff953806d20be0 RDI: ffff953806d20000
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.288957158Z]: RBP: ffff953806d20010 R08: 0000000000000000 R09: 00000000401ec4fd
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.374445158Z]: R10: 0000000000000003 R11: ffffffffb5d62d48 R12: ffff953806d20010
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.459949158Z]: R13: 0000000000000001 R14: ffff953806d20010 R15: ffff953806d20000
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.545443158Z]: FS:  0000000000000000(0000) GS:ffff9539d3c80000(0000) knlGS:0000000000000000
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.642370158Z]: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.711215158Z]: CR2: 0000000000000000 CR3: 000000015c210000 CR4: 00000000001506e0
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.796703158Z]: Call Trace:
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.826033158Z]:  <TASK>
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.851205158Z]:  ? __warn+0x7d/0xc0
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.888854158Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.934817158Z]:  ? report_bug+0xe6/0x170
+ceph-thin2: kern: warning: [2024-03-10T02:19:25.977664158Z]:  ? handle_bug+0x41/0x70
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.019456158Z]:  ? exc_invalid_op+0x13/0x60
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.065420158Z]:  ? asm_exc_invalid_op+0x16/0x20
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.115550158Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.161530158Z]:  gmc_v8_0_hw_fini+0x17/0xa0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.207497158Z]:  amdgpu_device_fini_hw+0x1cc/0x2af
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.260745158Z]:  amdgpu_driver_load_kms.cold+0x54/0x6a
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.318151158Z]:  amdgpu_pci_probe+0x125/0x340
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.366186158Z]:  local_pci_probe+0x41/0x80
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.411109158Z]:  pci_device_probe+0xbf/0x230
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.458101158Z]:  ? kernfs_create_link+0x5d/0xa0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.508226158Z]:  ? sysfs_do_create_link_sd+0x6e/0xe0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.563552158Z]:  really_probe+0xc7/0x280
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.606393158Z]:  ? pm_runtime_barrier+0x50/0x90
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.656525158Z]:  __driver_probe_device+0x73/0xf0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.707683158Z]:  driver_probe_device+0x1f/0x90
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.756758158Z]:  __driver_attach+0x84/0x130
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.802733158Z]:  ? __device_attach_driver+0xc0/0xc0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.857023158Z]:  bus_for_each_dev+0x87/0xd0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.903005158Z]:  bus_add_driver+0x186/0x1d0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.948978158Z]:  driver_register+0x89/0xe0
+ceph-thin2: kern: warning: [2024-03-10T02:19:26.993909158Z]:  ? drm_sched_fence_slab_init+0x87/0x87
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.051319158Z]:  do_one_initcall+0x59/0x230
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.097301158Z]:  kernel_init_freeable+0x2bb/0x35d
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.149511158Z]:  ? rest_init+0xd0/0xd0
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.190273158Z]:  kernel_init+0x16/0x130
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.232084158Z]:  ret_from_fork+0x22/0x30
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.274942158Z]:  </TASK>
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.301149158Z]: ---[ end trace 0000000000000000 ]---
+ceph-thin2: kern: warning: [2024-03-10T02:19:27.357000158Z]: amdgpu: probe of 0000:00:01.0 failed with error -2
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.427217158Z]: [drm] amdgpu: ttm finalized
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.476978158Z]: loop: module loaded
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.514929158Z]: rbd: loaded (major 252)
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.556849158Z]: Guest personality initialized and is inactive
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.621722158Z]: VMCI host device registered (name=vmci, major=10, minor=126)
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.701974158Z]: Initialized host personality
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.749174158Z]: Loading iSCSI transport class v2.0-870.
+ceph-thin2: kern:  notice: [2024-03-10T02:19:27.808284158Z]: iscsi: registered transport (tcp)
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.860477158Z]: isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.937862158Z]: hv_vmbus: registering driver hv_storvsc
+ceph-thin2: kern:   debug: [2024-03-10T02:19:27.997555158Z]: ahci 0000:00:11.0: version 3.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:27.997888158Z]: ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.094922158Z]: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp fbs pio slum part 
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.195737158Z]: scsi host0: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host0
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.230624158Z]: scsi host1: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host1
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.265277158Z]: ata1: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d100 irq 19
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.353889158Z]: ata2: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d180 irq 19
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.444132158Z]: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.537892158Z]: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.653361158Z]: tun: Universal TUN/TAP device driver, 1.6
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.714679158Z]: QLogic/NetXen Network Driver v4.0.82
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.770473158Z]: usbcore: registered new interface driver r8152
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.836204158Z]: hv_vmbus: registering driver hv_netvsc
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.893621158Z]: Fusion MPT base driver 3.04.20
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.918125158Z]: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.942722158Z]: Copyright (c) 1999-2008 LSI Corporation
+ceph-thin2: kern:    info: [2024-03-10T02:19:28.942765158Z]: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.016822158Z]: Fusion MPT SAS Host driver 3.04.20
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.149436158Z]: ata2.00: ATA-9: TEAM TM8PS7002T, W0220A0, max UDMA/133
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.203087158Z]: ehci-pci 0000:00:12.0: EHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.339254158Z]: ehci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.339314158Z]: ata2.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.427819158Z]: ehci-pci 0000:00:12.0: debug port 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.510168158Z]: ata1.00: ATA-9: TEAM TM8PS7002T, W0220A0, max UDMA/133
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.564558158Z]: ehci-pci 0000:00:12.0: irq 18, io mem 0xfeb6c000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.706419158Z]: ata1.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.722167158Z]: ehci-pci 0000:00:12.0: USB 2.0 started, EHCI 1.00
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.858241158Z]: ata2.00: configured for UDMA/133
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.858250158Z]: hub 1-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:29.954355158Z]: hub 1-0:1.0: 2 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.002479158Z]: ata1.00: configured for UDMA/133
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.003379158Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.054016158Z]: scsi 0:0:0:0: Direct-Access     ATA      TEAM TM8PS7002T  0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.116351158Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.214009158Z]: sd 0:0:0:0: [sda] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.214131158Z]: sd 0:0:0:0: Attached scsi generic sg0 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.214446158Z]: scsi 1:0:0:0: Direct-Access     ATA      TEAM TM8PS7002T  0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.215069158Z]: sd 1:0:0:0: Attached scsi generic sg1 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.215218158Z]: sd 1:0:0:0: [sdb] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.215238158Z]: sd 1:0:0:0: [sdb] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:   debug: [2024-03-10T02:19:30.215242158Z]: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.215270158Z]: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.215311158Z]: sd 1:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.302123158Z]: sd 1:0:0:0: [sdb] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.302283158Z]: xhci_hcd 0000:00:10.0: hcc params 0x014040c3 hci version 0x100 quirks 0x0000000000000410
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.303173158Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.303189158Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.303200158Z]: xhci_hcd 0000:00:10.0: Host supports USB 3.0 SuperSpeed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.309631158Z]: hub 2-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.309668158Z]: hub 2-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.310306158Z]: usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
+ SUBSYSTEM=usb
+ DEVICE=+usb:usb3
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.310771158Z]: hub 3-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.310804158Z]: hub 3-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.311686158Z]: usbcore: registered new interface driver cdc_acm
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.311695158Z]: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.311885158Z]: usbcore: registered new interface driver uas
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.311967158Z]: usbcore: registered new interface driver usb-storage
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312113158Z]: usbcore: registered new interface driver usbserial_generic
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312174158Z]: usbserial: USB Serial support registered for generic
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312217158Z]: usbcore: registered new interface driver ch341
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312250158Z]: usbserial: USB Serial support registered for ch341-uart
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312299158Z]: usbcore: registered new interface driver cp210x
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312326158Z]: usbserial: USB Serial support registered for cp210x
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312382158Z]: usbcore: registered new interface driver ftdi_sio
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312420158Z]: usbserial: USB Serial support registered for FTDI USB Serial Device
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312510158Z]: usbcore: registered new interface driver pl2303
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312588158Z]: usbserial: USB Serial support registered for pl2303
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.312991158Z]: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.315415158Z]: serio: i8042 KBD port at 0x60,0x64 irq 1
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.315434158Z]: serio: i8042 AUX port at 0x60,0x64 irq 12
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.315721158Z]: hv_vmbus: registering driver hyperv_keyboard
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.315864158Z]: mousedev: PS/2 mouse device common for all mice
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.316546158Z]: rtc_cmos 00:03: RTC can wake from S4
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.317230158Z]: rtc_cmos 00:03: registered as rtc0
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.317316158Z]: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin2: kern:     err: [2024-03-10T02:19:30.317561158Z]: fail to initialize ptp_kvm
+ceph-thin2: kern: warning: [2024-03-10T02:19:30.317830158Z]: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.318168158Z]: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.318836158Z]: sdhci: Secure Digital Host Controller Interface driver
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.318842158Z]: sdhci: Copyright(c) Pierre Ossman
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.319010158Z]: sdhci-pltfm: SDHCI platform and OF driver helper
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.319336158Z]: hid: raw HID events driver (C) Jiri Kosina
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.320062158Z]: usbcore: registered new interface driver usbhid
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.320070158Z]: usbhid: USB HID core driver
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321049158Z]: hv_utils: Registering HyperV Utility Driver
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321056158Z]: hv_vmbus: registering driver hv_utils
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321061158Z]: hv_vmbus: registering driver hv_balloon
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321174158Z]: NET: Registered PF_LLC protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321295158Z]: GACT probability NOT on
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321307158Z]: Mirror/redirect action on
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321337158Z]: Simple TC action Loaded
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321822158Z]: netem: version 1.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321914158Z]: u32 classifier
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321917158Z]:     input device check on
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.321919158Z]:     Actions configured
+ceph-thin2: kern: warning: [2024-03-10T02:19:30.394575158Z]: hpet: Lost 3 RTC interrupts
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.394667158Z]: sd 0:0:0:0: [sda] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.426157158Z]: usb 1-1: new high-speed USB device number 2 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.437773158Z]: xt_time: kernel timezone is -0000
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.437826158Z]: IPVS: Registered protocols (TCP, UDP)
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.437921158Z]: IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438104158Z]: IPVS: ipvs loaded.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438110158Z]: IPVS: [rr] scheduler registered.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438116158Z]: IPVS: [wrr] scheduler registered.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438121158Z]: IPVS: [lc] scheduler registered.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438125158Z]: IPVS: [sh] scheduler registered.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438319158Z]: ipip: IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438736158Z]: gre: GRE over IPv4 demultiplexor driver
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.438831158Z]: Initializing XFRM netlink socket
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.439246158Z]: NET: Registered PF_INET6 protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.440599158Z]: Segment Routing with IPv6
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.440621158Z]: In-situ OAM (IOAM) with IPv6
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.440793158Z]: mip6: Mobile IPv6
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.440946158Z]: sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442262158Z]: NET: Registered PF_PACKET protocol family
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.442367158Z]: Bridge firewalling registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442514158Z]: NET: Registered PF_APPLETALK protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442552158Z]: NET: Registered PF_X25 protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442583158Z]: X25: Linux Version 0.2
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442646158Z]: RPC: Registered rdma transport module.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442650158Z]: RPC: Registered rdma backchannel transport module.
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442758158Z]: l2tp_core: L2TP core driver, V2.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442787158Z]: NET: Registered PF_PHONET protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.442921158Z]: 8021q: 802.1Q VLAN Support v1.8
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.449358158Z]: DCCP: Activated CCID 2 (TCP-like)
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.449463158Z]: DCCP: Activated CCID 3 (TCP-Friendly Rate Control)
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.449932158Z]: sctp: Hash tables configured (bind 256/256)
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.454296158Z]: NET: Registered PF_RDS protocol family
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.455522158Z]: NET: Registered PF_IEEE802154 protocol family
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.455542158Z]: Key type dns_resolver registered
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.455559158Z]: Key type ceph registered
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.455768158Z]: libceph: loaded (mon/osd proto 15/24)
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.455813158Z]: openvswitch: Open vSwitch switching datapath
+ceph-thin2: kern:    info: [2024-03-10T02:19:30.837987158Z]: usb 2-3: new full-speed USB device number 2 using xhci_hcd
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-3
+ceph-thin2: kern:   debug: [2024-03-10T02:19:30.877122158Z]: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:30.877173158Z]: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.295046158Z]: input: ROYUAN Kono 84 as /devices/pci0000:00/0000:00:10.0/usb2/2-3/2-3:1.0/0003:0461:4002.0001/input/input6
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.342119158Z]: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.447273158Z]: hid-generic 0003:0461:4002.0001: input,hidraw0: USB HID v1.11 Keyboard [ROYUAN Kono 84] on usb-0000:00:10.0-3/input0
+ SUBSYSTEM=hid
+ DEVICE=+hid:0003:0461:4002.0001
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.532279158Z]: NET: Registered PF_VSOCK protocol family
+ceph-thin2: kern:  notice: [2024-03-10T02:19:31.533120158Z]: sd 0:0:0:0: [sda] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.537709158Z]: hub 1-1:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.537856158Z]: hub 1-1:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.790617158Z]: input: ROYUAN Kono 84 Consumer Control as /devices/pci0000:00/0000:00:10.0/usb2/2-3/2-3:1.1/0003:0461:4002.0002/input/input7
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.833995158Z]: usb 1-1.3: new high-speed USB device number 3 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.852471158Z]: mpls_gso: MPLS GSO support
+ceph-thin2: kern:    info: [2024-03-10T02:19:31.982433158Z]: input: ROYUAN Kono 84 System Control as /devices/pci0000:00/0000:00:10.0/usb2/2-3/2-3:1.1/0003:0461:4002.0002/input/input8
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.002702158Z]: x86/pm: family 0x15 cpu detected, MSR saving is needed during suspending.
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.074819158Z]: input: ROYUAN Kono 84 Keyboard as /devices/pci0000:00/0000:00:10.0/usb2/2-3/2-3:1.1/0003:0461:4002.0002/input/input9
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.186783158Z]: usb-storage 1-1.3:1.0: USB Mass Storage device detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3:1.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.215837158Z]: input: ROYUAN Kono 84 Mouse as /devices/pci0000:00/0000:00:10.0/usb2/2-3/2-3:1.1/0003:0461:4002.0002/input/input10
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.282812158Z]: scsi host2: usb-storage 1-1.3:1.0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host2
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.286216158Z]: microcode: CPU0: patch_level=0x06006112
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.353165158Z]: microcode: CPU1: patch_level=0x06006112
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.353175158Z]: microcode: CPU2: patch_level=0x06006112
+ceph-thin2: kern:    info: [2024-03-10T02:19:32.353188158Z]: microcode: CPU3: patch_level=0x06006112
+ceph-thin2: kern:  notice: [2024-03-10T02:19:33.437303158Z]: scsi 2:0:0:0: Direct-Access     PNY      USB 3.2.1 FD     PMAP PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:33.486559158Z]: microcode: Microcode Update Driver: v2.2.
+ceph-thin2: kern:  notice: [2024-03-10T02:19:33.561263158Z]: sd 2:0:0:0: Attached scsi generic sg2 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:33.561709158Z]: sd 2:0:0:0: [sdc] 242147328 512-byte logical blocks: (124 GB/115 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:33.563866158Z]: sd 2:0:0:0: [sdc] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:   debug: [2024-03-10T02:19:33.563875158Z]: sd 2:0:0:0: [sdc] Mode Sense: 45 00 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:  notice: [2024-03-10T02:19:33.566126158Z]: sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:33.612811158Z]: IPI shorthand broadcast: enabled
+ceph-thin2: kern:    info: [2024-03-10T02:19:33.612996158Z]: AVX2 version of gcm_enc/dec engaged.
+ceph-thin2: kern:    info: [2024-03-10T02:19:38.965546158Z]: input: ROYUAN Kono 84 as /devices/pci0000:00/0000:00:10.0/usb2/2-3/2-3:1.1/0003:0461:4002.0002/input/input11
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.095780158Z]: AES CTR mode by8 optimization enabled
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.096027158Z]: hid-generic 0003:0461:4002.0002: input,hidraw1: USB HID v1.11 Keyboard [ROYUAN Kono 84] on usb-0000:00:10.0-3/input1
+ SUBSYSTEM=hid
+ DEVICE=+hid:0003:0461:4002.0002
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.152975158Z]: sched_clock: Marking stable (39942958955, 13838391516)->(57649647277, -3868296806)
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.394291158Z]: registered taskstats version 1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:39.443364158Z]: Loading compiled-in X.509 certificates
+ceph-thin2: kern:  notice: [2024-03-10T02:19:39.504114158Z]: Loaded X.509 cert 'Sidero Labs, Inc.: Build time throw-away kernel key: 5ec02fb0cf80adf5fd052b049a2f3c73c62e9f08'
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.511724158Z]:  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.639611158Z]: usb 2-4: new full-speed USB device number 3 using xhci_hcd
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-4
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.642133158Z]: ima: Allocated hash algorithm: sha512
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.679909158Z]: ima: No architecture policies found
+ceph-thin2: kern:  notice: [2024-03-10T02:19:39.694505158Z]: sd 2:0:0:0: [sdc] Attached SCSI removable disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.694633158Z]: PM:   Magic number: 0:213:308
+ceph-thin2: kern:    info: [2024-03-10T02:19:39.694717158Z]: tty tty37: hash matches
+ SUBSYSTEM=tty
+ DEVICE=c4:37
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.038312158Z]: printk: console [netcon0] enabled
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.090523158Z]: netconsole: network logging started
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.145756158Z]: acpi_cpufreq: overriding BIOS provided _PSD data
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.223826158Z]: Freeing unused kernel image (initmem) memory: 3088K
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.318159158Z]: Write protecting the kernel read-only data: 49152k
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.389454158Z]: Freeing unused kernel image (text/rodata gap) memory: 2024K
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.469308158Z]: Freeing unused kernel image (rodata/data gap) memory: 964K
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.658220158Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.735325158Z]: x86/mm: Checking user space page tables
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.899836158Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin2: kern:    info: [2024-03-10T02:19:40.976923158Z]: Run /init as init process
+ceph-thin2: kern:   debug: [2024-03-10T02:19:41.020698158Z]:   with arguments:
+ceph-thin2: kern:   debug: [2024-03-10T02:19:41.020700158Z]:     /init
+ceph-thin2: kern:   debug: [2024-03-10T02:19:41.020702158Z]:   with environment:
+ceph-thin2: kern:   debug: [2024-03-10T02:19:41.020703158Z]:     HOME=/
+ceph-thin2: kern:   debug: [2024-03-10T02:19:41.020705158Z]:     TERM=linux
+ceph-thin2: kern:   debug: [2024-03-10T02:19:41.020706158Z]:     pti=on
+ceph-thin2: user: warning: [2024-03-10T02:19:41.036207158Z]: [talos] [initramfs] TPM device is not available
+ceph-thin2: user: warning: [2024-03-10T02:19:41.107452158Z]: [talos] [initramfs] TPM device is not available, skipping PCR extension
+ceph-thin2: user: warning: [2024-03-10T02:19:41.199236158Z]: [talos] [initramfs] booting Talos v1.5.5
+ceph-thin2: user: warning: [2024-03-10T02:19:41.258697158Z]: [talos] [initramfs] mounting the rootfs
+ceph-thin2: kern:    info: [2024-03-10T02:19:41.317315158Z]: loop0: detected capacity change from 0 to 105192
+ceph-thin2: user: warning: [2024-03-10T02:19:41.400276158Z]: [talos] [initramfs] bind mounting /lib/firmware
+ceph-thin2: user: warning: [2024-03-10T02:19:41.468969158Z]: [talos] [initramfs] entering the rootfs
+ceph-thin2: user: warning: [2024-03-10T02:19:41.527453158Z]: [talos] [initramfs] moving mounts to the new rootfs
+ceph-thin2: user: warning: [2024-03-10T02:19:41.599156158Z]: [talos] [initramfs] changing working directory into /root
+ceph-thin2: user: warning: [2024-03-10T02:19:41.676343158Z]: [talos] [initramfs] moving /root to /
+ceph-thin2: user: warning: [2024-03-10T02:19:41.732697158Z]: [talos] [initramfs] changing root directory
+ceph-thin2: user: warning: [2024-03-10T02:19:41.795278158Z]: [talos] [initramfs] cleaning up initramfs
+ceph-thin2: user: warning: [2024-03-10T02:19:41.860090158Z]: [talos] [initramfs] TPM device is not available, skipping PCR extension
+ceph-thin2: user: warning: [2024-03-10T02:19:41.951815158Z]: [talos] [initramfs] executing /sbin/init
+ceph-thin2: user: warning: [2024-03-10T02:19:46.212801158Z]: [talos] task setupLogger (1/1): done, 330.11\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:19:46.279695158Z]: [talos] phase logger (1/11): done, 67.336015ms
+ceph-thin2: user: warning: [2024-03-10T02:19:46.345418158Z]: [talos] phase systemRequirements (2/11): 6 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:46.416412158Z]: [talos] task setRLimit (6/6): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:46.473823158Z]: [talos] task setRLimit (6/6): done, 57.428429ms
+ceph-thin2: user: warning: [2024-03-10T02:19:46.540784158Z]: [talos] task mountCgroups (4/6): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:46.601360158Z]: [talos] task mountBPFFS (3/6): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:46.659815158Z]: [talos] task mountPseudoFilesystems (5/6): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:46.730758158Z]: [talos] task setupSystemDirectory (2/6): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:46.799580158Z]: [talos] task enforceKSPPRequirements (1/6): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:46.871770158Z]: [talos] task setupSystemDirectory (2/6): done, 455.288039ms
+ceph-thin2: user: warning: [2024-03-10T02:19:46.951272158Z]: [talos] task mountCgroups (4/6): done, 534.814403ms
+ceph-thin2: user: warning: [2024-03-10T02:19:47.022206158Z]: [talos] task mountPseudoFilesystems (5/6): done, 455.691052ms
+ceph-thin2: user: warning: [2024-03-10T02:19:47.103538158Z]: [talos] task mountBPFFS (3/6): done, 536.840175ms
+ceph-thin2: user: warning: [2024-03-10T02:19:47.214149158Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin2: user: warning: [2024-03-10T02:19:47.383239158Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin2: user: warning: [2024-03-10T02:19:47.552131158Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin2: user: warning: [2024-03-10T02:19:47.722129158Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin2: user: warning: [2024-03-10T02:19:47.892418158Z]: [talos] task enforceKSPPRequirements (1/6): done, 1.475930236s
+ceph-thin2: user: warning: [2024-03-10T02:19:47.975372158Z]: [talos] phase systemRequirements (2/11): done, 1.629949032s
+ceph-thin2: user: warning: [2024-03-10T02:19:48.054661158Z]: [talos] phase integrity (3/11): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:48.116929158Z]: [talos] task writeIMAPolicy (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:48.179570158Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "127.0.0.1/8", "link": "lo"}
+ceph-thin2: user: warning: [2024-03-10T02:19:48.350464158Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on [::1]:53: dial udp [::1]:53: connect: cannot assign requested address"}
+ceph-thin2: kern:  notice: [2024-03-10T02:19:48.604604158Z]: audit: type=1807 audit(1710037157.026:2): action=dont_measure fsmagic=0x9fa0 res=1
+ceph-thin2: kern:    info: [2024-03-10T02:19:48.604933158Z]: ima: policy update completed
+ceph-thin2: kern:  notice: [2024-03-10T02:19:48.707759158Z]: audit: type=1807 audit(1710037157.026:3): action=dont_measure fsmagic=0x62656572 res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:48.707764158Z]: audit: type=1807 audit(1710037157.026:4): action=dont_measure fsmagic=0x64626720 res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:48.707767158Z]: audit: type=1807 audit(1710037157.026:5): action=dont_measure fsmagic=0x1021994 res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:49.075658158Z]: audit: type=1807 audit(1710037157.026:6): action=dont_measure fsmagic=0x1cd1 res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:49.178836158Z]: audit: type=1807 audit(1710037157.026:7): action=dont_measure fsmagic=0x42494e4d res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:49.286125158Z]: audit: type=1807 audit(1710037157.026:8): action=dont_measure fsmagic=0x73636673 res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:49.393379158Z]: audit: type=1807 audit(1710037157.026:9): action=dont_measure fsmagic=0xf97cff8c res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:49.500684158Z]: audit: type=1807 audit(1710037157.026:10): action=dont_measure fsmagic=0x43415d53 res=1
+ceph-thin2: kern:  notice: [2024-03-10T02:19:49.608986158Z]: audit: type=1807 audit(1710037157.026:11): action=dont_measure fsmagic=0x27e0eb res=1
+ceph-thin2: user: warning: [2024-03-10T02:19:49.722319158Z]: [talos] task writeIMAPolicy (1/1): done, 1.605407298s
+ceph-thin2: user: warning: [2024-03-10T02:19:49.795469158Z]: [talos] phase integrity (3/11): done, 1.740818607s
+ceph-thin2: user: warning: [2024-03-10T02:19:49.865398158Z]: [talos] phase etc (4/11): 3 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:49.920762158Z]: [talos] task setUserEnvVars (3/3): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:49.983437158Z]: [talos] task setUserEnvVars (3/3): done, 62.69977ms
+ceph-thin2: user: warning: [2024-03-10T02:19:50.054335158Z]: [talos] task createOSReleaseFile (2/3): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:50.122090158Z]: [talos] task CreateSystemCgroups (1/3): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:50.190410158Z]: [talos] task createOSReleaseFile (2/3): done, 269.53922ms
+ceph-thin2: user: warning: [2024-03-10T02:19:50.304016158Z]: [talos] task CreateSystemCgroups (1/3): done, 383.14331ms
+ceph-thin2: user: warning: [2024-03-10T02:19:50.381242158Z]: [talos] phase etc (4/11): done, 515.864994ms
+ceph-thin2: user: warning: [2024-03-10T02:19:50.444972158Z]: [talos] phase earlyServices (5/11): 2 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:50.510782158Z]: [talos] task startMachined (2/2): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:50.572397158Z]: [talos] task startUdevd (1/2): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:50.640450158Z]: [talos] TPM device is not available, skipping PCR extension
+ceph-thin2: user: warning: [2024-03-10T02:19:50.719895158Z]: [talos] service[udevd](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:19:50.791933158Z]: [talos] service[machined](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:19:50.867025158Z]: [talos] service[machined](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:19:50.948436158Z]: [talos] service[udevd](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:19:51.026703158Z]: [talos] service[machined](Running): Service started as goroutine
+ceph-thin2: user: warning: [2024-03-10T02:19:51.949209158Z]: [talos] service[machined](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-10T02:19:52.028757158Z]: [talos] task startMachined (2/2): done, 1.517986527s
+ceph-thin2: user: warning: [2024-03-10T02:19:54.682425158Z]: [talos] service[udevd](Running): Process Process(["/sbin/udevd" "--resolve-names=never"]) started with PID 713
+ceph-thin2: daemon:    info: [2024-03-10T02:19:54.932005158Z]: udevd[713]: starting version 3.2.12
+ceph-thin2: daemon:    info: [2024-03-10T02:19:55.210591158Z]: udevd[713]: starting eudev-3.2.12
+ceph-thin2: kern:    info: [2024-03-10T02:19:55.452217158Z]: r8169 0000:01:00.0 eth0: RTL8168h/8111h, 7c:d3:0a:2d:70:f3, XID 541, IRQ 34
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:55.548121158Z]: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:55.651896158Z]: r8169 0000:01:00.0 enp1s0: renamed from eth0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-10T02:19:56.017251158Z]: [talos] service[udevd](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-10T02:19:56.093611158Z]: [talos] task startUdevd (1/2): done, 5.582710238s
+ceph-thin2: user: warning: [2024-03-10T02:19:56.162678158Z]: [talos] phase earlyServices (5/11): done, 5.717688754s
+ceph-thin2: user: warning: [2024-03-10T02:19:56.236873158Z]: [talos] phase meta (6/11): 1 tasks(s)
+ceph-thin2: kern: warning: [2024-03-10T02:19:56.241233158Z]: r8169 0000:01:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-10T02:19:56.293353158Z]: [talos] task reloadMeta (1/1): starting
+ceph-thin2: kern:     err: [2024-03-10T02:19:56.401641158Z]: r8169 0000:01:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:19:56.578164158Z]: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
+ SUBSYSTEM=mdio_bus
+ DEVICE=+mdio_bus:r8169-0-100:00
+ceph-thin2: user: warning: [2024-03-10T02:19:56.728602158Z]: [talos] META: loaded 0 keys
+ceph-thin2: user: warning: [2024-03-10T02:19:56.774880158Z]: [talos] task reloadMeta (1/1): done, 481.535633ms
+ceph-thin2: user: warning: [2024-03-10T02:19:56.843901158Z]: [talos] phase meta (6/11): done, 607.034407ms
+ceph-thin2: kern:    info: [2024-03-10T02:19:56.874197158Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-10T02:19:56.908649158Z]: [talos] phase dashboard (7/11): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:57.028722158Z]: [talos] task startDashboard (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:57.091403158Z]: [talos] task startDashboard (1/1): done, 62.677618ms
+ceph-thin2: user: warning: [2024-03-10T02:19:57.163455158Z]: [talos] service[dashboard](Waiting): Waiting for service "machined" to be "up", file "/system/run/machined/machine.sock" to exist
+ceph-thin2: user: warning: [2024-03-10T02:19:57.315653158Z]: [talos] phase dashboard (7/11): done, 254.813884ms
+ceph-thin2: user: warning: [2024-03-10T02:19:57.385608158Z]: [talos] phase mountSystem (9/11): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:57.449258158Z]: [talos] service[dashboard](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:19:57.525443158Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:57.594245158Z]: [talos] service[dashboard](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:19:57.676658158Z]: [talos] task mountStatePartition (1/1): mount skipped
+ceph-thin2: user: warning: [2024-03-10T02:19:57.749716158Z]: [talos] task mountStatePartition (1/1): done, 300.404928ms
+ceph-thin2: user: warning: [2024-03-10T02:19:57.828045158Z]: [talos] phase mountSystem (9/11): done, 442.455356ms
+ceph-thin2: user: warning: [2024-03-10T02:19:57.828062158Z]: [talos] phase config (10/11): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:19:57.828097158Z]: [talos] task loadConfig (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:19:58.018193158Z]: [talos] service[dashboard](Running): Process Process(["/sbin/dashboard"]) started with PID 1657
+ceph-thin2: user: warning: [2024-03-10T02:19:58.134961158Z]: [talos] downloading config {"component": "controller-runtime", "controller": "config.AcquireController", "platform": "metal"}
+ceph-thin2: user: warning: [2024-03-10T02:19:58.282879158Z]: [talos] waiting for network to be ready
+ceph-thin2: user: warning: [2024-03-10T02:19:59.606804158Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on [::1]:53: read udp [::1]:48744->[::1]:53: read: connection refused"}
+ceph-thin2: kern:    info: [2024-03-10T02:20:00.346731158Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: kern:    info: [2024-03-10T02:20:00.438510158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
+ceph-thin2: user: warning: [2024-03-10T02:20:00.859289158Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-10T02:20:02.109466158Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-10T02:20:03.363210158Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-10T02:20:04.613182158Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-10T02:20:05.555247158Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87"]}
+ceph-thin2: user: warning: [2024-03-10T02:20:05.720925158Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin2", "domainname": "dezendorf.net"}
+ceph-thin2: user: warning: [2024-03-10T02:20:05.910507158Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin2", "domainname": "dezendorf.net"}
+ceph-thin2: user: warning: [2024-03-10T02:20:06.101809158Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.22/23", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-10T02:20:06.280967158Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin2: user: warning: [2024-03-10T02:20:06.534019158Z]: [talos] fetching machine config from: "http://192.168.1.87:1880/wk.yaml"
+ceph-thin2: user: warning: [2024-03-10T02:20:06.534036158Z]: [talos] adjusting time (jump) by 18.672582325s via 5.161.111.190, state TIME_OK, status STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin2: user: warning: [2024-03-10T02:20:06.534302158Z]: [talos] synchronized RTC with system clock {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin2: user: warning: [2024-03-10T02:20:06.968493158Z]: [talos] machine config loaded successfully {"component": "controller-runtime", "controller": "config.AcquireController", "sources": ["metal"]}
+ceph-thin2: user: warning: [2024-03-10T02:20:07.134140158Z]: [talos] task loadConfig (1/1): done, 9.147142398s
+ceph-thin2: user: warning: [2024-03-10T02:20:07.210260158Z]: [talos] phase config (10/11): done, 9.38218565s
+ceph-thin2: user: warning: [2024-03-10T02:20:07.278006158Z]: [talos] enabling JSON logging {"component": "controller-runtime"}
+ceph-thin2: user: warning: [2024-03-10T02:20:07.278268158Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87", "192.168.1.9"]}
+ceph-thin2: user: warning: [2024-03-10T02:20:07.542682158Z]: [talos] phase unmountSystem (11/11): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:07.609549158Z]: [talos] task unmountStatePartition (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:07.609570158Z]: [talos] task unmountStatePartition (1/1): unmount skipped
+ceph-thin2: user: warning: [2024-03-10T02:20:07.609592158Z]: [talos] task unmountStatePartition (1/1): done, 50.737\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:07.833755158Z]: [talos] phase unmountSystem (11/11): done, 555.636709ms
+ceph-thin2: user: warning: [2024-03-10T02:20:07.833783158Z]: [talos] initialize sequence: done: 21.621487008s
+ceph-thin2: user: warning: [2024-03-10T02:20:07.833824158Z]: [talos] install sequence: 0 phase(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:07.833837158Z]: [talos] install sequence: done: 12.897\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:07.833896158Z]: [talos] boot sequence: 18 phase(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145531158Z]: [talos] phase saveStateEncryptionConfig (1/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145584158Z]: [talos] task SaveStateEncryptionConfig (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145609158Z]: [talos] task SaveStateEncryptionConfig (1/1): done, 25.857\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145629158Z]: [talos] phase saveStateEncryptionConfig (1/18): done, 105.024\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145641158Z]: [talos] phase mountState (2/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145662158Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:08.145689158Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin2: user: warning: [2024-03-10T02:20:08.726270158Z]: [talos] formatting the partition "/dev/sdc5" as "xfs" with label "STATE"
+ceph-thin2: user: warning: [2024-03-10T02:20:09.146033158Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be registered, api certificates
+ceph-thin2: kern:  notice: [2024-03-10T02:20:11.915486158Z]: XFS (sdc5): Mounting V5 Filesystem
+ceph-thin2: kern:    info: [2024-03-10T02:20:12.483814158Z]: XFS (sdc5): Ending clean mount
+ceph-thin2: user: warning: [2024-03-10T02:20:12.544370158Z]: [talos] task mountStatePartition (1/1): done, 4.398678853s
+ceph-thin2: user: warning: [2024-03-10T02:20:12.622749158Z]: [talos] phase mountState (2/18): done, 4.477092776s
+ceph-thin2: user: warning: [2024-03-10T02:20:12.693841158Z]: [talos] phase saveConfig (3/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:12.693927158Z]: [talos] task saveConfig (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:12.693996158Z]: [talos] node identity established {"component": "controller-runtime", "controller": "cluster.NodeIdentityController", "node_id": "sbXpfqB1THdVjSfBv5TglHwr9KBOx6f35epW2OE8eg3B"}
+ceph-thin2: user: warning: [2024-03-10T02:20:13.016088158Z]: [talos] task saveConfig (1/1): done, 359.85\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:13.081842158Z]: [talos] phase saveConfig (3/18): done, 388.008713ms
+ceph-thin2: user: warning: [2024-03-10T02:20:13.152849158Z]: [talos] phase memorySizeCheck (4/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:13.152915158Z]: [talos] task memorySizeCheck (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:13.284535158Z]: [talos] memory size is OK
+ceph-thin2: user: warning: [2024-03-10T02:20:13.328421158Z]: [talos] memory size is 10896 MiB
+ceph-thin2: user: warning: [2024-03-10T02:20:13.379598158Z]: [talos] task memorySizeCheck (1/1): done, 226.680697ms
+ceph-thin2: user: warning: [2024-03-10T02:20:13.453938158Z]: [talos] phase memorySizeCheck (4/18): done, 301.07126ms
+ceph-thin2: user: warning: [2024-03-10T02:20:13.529251158Z]: [talos] phase diskSizeCheck (5/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:13.529345158Z]: [talos] task diskSizeCheck (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:13.656779158Z]: [talos] disk size is OK
+ceph-thin2: user: warning: [2024-03-10T02:20:13.698693158Z]: [talos] disk size is 118236 MiB
+ceph-thin2: user: warning: [2024-03-10T02:20:13.698787158Z]: [talos] task diskSizeCheck (1/1): done, 169.471727ms
+ceph-thin2: user: warning: [2024-03-10T02:20:13.820878158Z]: [talos] phase diskSizeCheck (5/18): done, 291.64282ms
+ceph-thin2: user: warning: [2024-03-10T02:20:13.820894158Z]: [talos] phase env (6/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:13.820939158Z]: [talos] task setUserEnvVars (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:14.011959158Z]: [talos] task setUserEnvVars (1/1): done, 191.029712ms
+ceph-thin2: user: warning: [2024-03-10T02:20:14.011983158Z]: [talos] phase env (6/18): done, 191.090934ms
+ceph-thin2: user: warning: [2024-03-10T02:20:14.011997158Z]: [talos] phase containerd (7/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:14.012079158Z]: [talos] task startContainerd (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:14.275068158Z]: [talos] service[containerd](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:20:14.275093158Z]: [talos] service[containerd](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:20:14.437103158Z]: [talos] service[containerd](Running): Process Process(["/bin/containerd" "--address" "/system/run/containerd/containerd.sock" "--state" "/system/run/containerd" "--root" "/system/var/lib/containerd"]) started with PID 1683
+ceph-thin2: user: warning: [2024-03-10T02:20:15.146254158Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin2: user: warning: [2024-03-10T02:20:17.439314158Z]: [talos] service[containerd](Running): Health check failed: rpc error: code = DeadlineExceeded desc = context deadline exceeded
+ceph-thin2: user: warning: [2024-03-10T02:20:20.439254158Z]: [talos] service[containerd](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-10T02:20:20.520761158Z]: [talos] task startContainerd (1/1): done, 6.508673245s
+ceph-thin2: user: warning: [2024-03-10T02:20:20.594936158Z]: [talos] phase containerd (7/18): done, 6.582922184s
+ceph-thin2: user: warning: [2024-03-10T02:20:20.665932158Z]: [talos] phase dbus (8/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:20.722399158Z]: [talos] task startDBus (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:20.723707158Z]: [talos] task startDBus (1/1): done, 1.300145ms
+ceph-thin2: user: warning: [2024-03-10T02:20:20.845908158Z]: [talos] phase dbus (8/18): done, 179.947619ms
+ceph-thin2: user: warning: [2024-03-10T02:20:20.910751158Z]: [talos] phase ephemeral (9/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:20.972420158Z]: [talos] task mountEphemeralPartition (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:21.057550158Z]: [talos] formatting the partition "/dev/sdc6" as "xfs" with label "EPHEMERAL"
+ceph-thin2: user: warning: [2024-03-10T02:20:21.154639158Z]: [talos] service[apid](Waiting): Waiting for api certificates
+ceph-thin2: kern:  notice: [2024-03-10T02:20:31.653888158Z]: XFS (sdc6): Mounting V5 Filesystem
+ceph-thin2: kern:    info: [2024-03-10T02:20:32.178125158Z]: XFS (sdc6): Ending clean mount
+ceph-thin2: user: warning: [2024-03-10T02:20:32.313155158Z]: [talos] task mountEphemeralPartition (1/1): done, 11.340747154s
+ceph-thin2: user: warning: [2024-03-10T02:20:32.396683158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "error": "error writing kubelet PKI: open /etc/kubernetes/bootstrap-kubeconfig: read-only file system"}
+ceph-thin2: user: warning: [2024-03-10T02:20:32.396732158Z]: [talos] phase ephemeral (9/18): done, 11.485946472s
+ceph-thin2: user: warning: [2024-03-10T02:20:32.396750158Z]: [talos] phase var (10/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:32.396793158Z]: [talos] task setupVarDirectory (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:32.422831158Z]: [talos] task setupVarDirectory (1/1): done, 26.023928ms
+ceph-thin2: user: warning: [2024-03-10T02:20:32.902266158Z]: [talos] phase var (10/18): done, 505.499341ms
+ceph-thin2: user: warning: [2024-03-10T02:20:32.902306158Z]: [talos] phase overlay (11/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:32.902339158Z]: [talos] task mountOverlayFilesystems (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:33.099598158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "error": "error writing kubelet PKI: open /etc/kubernetes/bootstrap-kubeconfig: read-only file system"}
+ceph-thin2: user: warning: [2024-03-10T02:20:33.337067158Z]: [talos] task mountOverlayFilesystems (1/1): done, 199.466912ms
+ceph-thin2: user: warning: [2024-03-10T02:20:33.337109158Z]: [talos] phase overlay (11/18): done, 434.826065ms
+ceph-thin2: user: warning: [2024-03-10T02:20:33.337143158Z]: [talos] phase legacyCleanup (12/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:33.337173158Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:33.633764158Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): done, 296.556214ms
+ceph-thin2: user: warning: [2024-03-10T02:20:33.720416158Z]: [talos] phase legacyCleanup (12/18): done, 383.267992ms
+ceph-thin2: user: warning: [2024-03-10T02:20:33.795508158Z]: [talos] phase udevSetup (13/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:33.858166158Z]: [talos] task writeUdevRules (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:33.858374158Z]: [talos] task writeUdevRules (1/1): done, 209.317\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:33.991821158Z]: [talos] phase udevSetup (13/18): done, 196.299839ms
+ceph-thin2: user: warning: [2024-03-10T02:20:33.991841158Z]: [talos] phase userDisks (14/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:33.991876158Z]: [talos] task mountUserDisks (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:33.991906158Z]: [talos] task mountUserDisks (1/1): done, 32.664\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:33.991925158Z]: [talos] phase userDisks (14/18): done, 87.761\xc2\xb5s
+ceph-thin2: user: warning: [2024-03-10T02:20:34.325816158Z]: [talos] phase userSetup (15/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:34.388595158Z]: [talos] task writeUserFiles (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:34.451239158Z]: [talos] task writeUserFiles (1/1): done, 62.643723ms
+ceph-thin2: user: warning: [2024-03-10T02:20:34.523189158Z]: [talos] phase userSetup (15/18): done, 197.385529ms
+ceph-thin2: user: warning: [2024-03-10T02:20:34.523207158Z]: [talos] phase lvm (16/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:34.523238158Z]: [talos] task activateLogicalVolumes (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:34.524746158Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin2: user: warning: [2024-03-10T02:20:34.908676158Z]: [talos] task activateLogicalVolumes (1/1): done, 385.417319ms
+ceph-thin2: user: warning: [2024-03-10T02:20:34.990141158Z]: [talos] phase lvm (16/18): done, 466.931421ms
+ceph-thin2: user: warning: [2024-03-10T02:20:35.054818158Z]: [talos] phase extendPCRStartAll (17/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:35.125912158Z]: [talos] task extendPCRStartAll (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:35.194850158Z]: [talos] TPM device is not available, skipping PCR extension
+ceph-thin2: user: warning: [2024-03-10T02:20:35.274228158Z]: [talos] task extendPCRStartAll (1/1): done, 148.3275ms
+ceph-thin2: user: warning: [2024-03-10T02:20:35.348311158Z]: [talos] phase extendPCRStartAll (17/18): done, 293.500415ms
+ceph-thin2: user: warning: [2024-03-10T02:20:35.427673158Z]: [talos] phase startEverything (18/18): 1 tasks(s)
+ceph-thin2: user: warning: [2024-03-10T02:20:35.496550158Z]: [talos] task startAllServices (1/1): starting
+ceph-thin2: user: warning: [2024-03-10T02:20:35.496607158Z]: [talos] task startAllServices (1/1): waiting for 7 services
+ceph-thin2: user: warning: [2024-03-10T02:20:35.496726158Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "containerd" to be "up", service "cri" to be "up", service "dashboard" to be "up", service "kubelet" to be "up", service "machined" to be "up", service "udevd" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:20:35.910219158Z]: [talos] service[cri](Waiting): Waiting for network
+ceph-thin2: user: warning: [2024-03-10T02:20:35.980245158Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:20:36.072143158Z]: [talos] service[cri](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:20:36.072420158Z]: [talos] service[cri](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:20:36.219456158Z]: [talos] service[cri](Running): Process Process(["/bin/containerd" "--address" "/run/containerd/containerd.sock" "--config" "/etc/cri/containerd.toml"]) started with PID 1724
+ceph-thin2: user: warning: [2024-03-10T02:20:37.223361158Z]: [talos] service[cri](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-10T02:20:37.297654158Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:20:38.983234158Z]: [talos] adjusting time (slew) by 1.461776ms via 5.161.111.190, state TIME_OK, status STA_PLL | STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin2: user: warning: [2024-03-10T02:20:50.496203158Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "kubelet" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:21:05.496234158Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "kubelet" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:21:07.365339158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin2: user: warning: [2024-03-10T02:21:17.316725158Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:21:18.748642158Z]: [talos] service[kubelet](Running): Started task kubelet (PID 1770) for container kubelet
+ceph-thin2: user: warning: [2024-03-10T02:21:19.514638158Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-10T02:21:20.496367158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:21:35.495503158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:21:50.495413158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:22:05.494649158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:22:08.113295158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin2: user: warning: [2024-03-10T02:22:20.494860158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:22:35.494798158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:22:50.493689158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:23:05.494249158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:23:08.879372158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin2: user: warning: [2024-03-10T02:23:20.494158158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:23:35.493249158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:23:50.493816158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:24:05.492654158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:24:10.434958158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin2: user: warning: [2024-03-10T02:24:20.493332158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:24:35.492567158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:24:50.492098158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:25:05.270189158Z]: [talos] service[apid](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-10T02:25:05.342120158Z]: [talos] service[apid](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-10T02:25:05.491751158Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin2: user: warning: [2024-03-10T02:25:06.437211158Z]: [talos] service[apid](Running): Started task apid (PID 1871) for container apid
+ceph-thin2: user: warning: [2024-03-10T02:25:11.433134158Z]: [talos] service[apid](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-10T02:25:11.508639158Z]: [talos] task startAllServices (1/1): done, 4m36.017711569s
+ceph-thin2: user: warning: [2024-03-10T02:25:11.587101158Z]: [talos] phase startEverything (18/18): done, 4m36.165047595s
+ceph-thin2: user: warning: [2024-03-10T02:25:11.667489158Z]: [talos] boot sequence: done: 5m3.839214028s
+ceph-thin2: user: warning: [2024-03-10T02:27:20.309908158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin2\x5c" not found"}
+ceph-thin2: user: warning: [2024-03-10T02:27:21.002593158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin2\x5c" not found"}
+ceph-thin2: user: warning: [2024-03-10T02:28:34.022345158Z]: [talos] machine is running and ready {"component": "controller-runtime", "controller": "runtime.MachineStatusController"}
+ceph-thin2: kern:    info: [2024-03-10T02:39:22.755889158Z]: cni0: port 1(veth7dc77130) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T02:39:22.824962158Z]: cni0: port 1(veth7dc77130) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T02:39:22.825254158Z]: device veth7dc77130 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T02:39:22.958191158Z]: cni0: port 1(veth7dc77130) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T02:39:23.027249158Z]: cni0: port 1(veth7dc77130) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T02:39:23.098538158Z]: cni0: port 1(veth7dc77130) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T02:39:23.183148158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T02:39:23.258832158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7dc77130: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T02:39:23.342609158Z]: cni0: port 1(veth7dc77130) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T02:39:23.411569158Z]: cni0: port 1(veth7dc77130) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:07:03.818904158Z]: cni0: port 1(veth7dc77130) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:07:03.888775158Z]: device veth7dc77130 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:07:03.949446158Z]: cni0: port 1(veth7dc77130) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.512403158Z]: cni0: port 1(veth202b2799) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.581379158Z]: cni0: port 1(veth202b2799) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.650594158Z]: device veth202b2799 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.726107158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.801599158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth202b2799: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.885360158Z]: cni0: port 1(veth202b2799) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:08:15.954252158Z]: cni0: port 1(veth202b2799) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:08:30.160178158Z]: cni0: port 1(veth202b2799) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:08:30.230182158Z]: device veth202b2799 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:08:30.290832158Z]: cni0: port 1(veth202b2799) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T03:14:01.656322158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T03:23:31.569062158Z]: cni0: port 1(veth48aeddd2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:23:31.638093158Z]: cni0: port 1(veth48aeddd2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:23:31.707300158Z]: device veth48aeddd2 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:23:31.790800158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:23:31.866226158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth48aeddd2: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:23:31.949990158Z]: cni0: port 1(veth48aeddd2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:23:32.019012158Z]: cni0: port 1(veth48aeddd2) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:23:38.805111158Z]: cni0: port 1(veth48aeddd2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:23:38.875054158Z]: device veth48aeddd2 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:23:38.935811158Z]: cni0: port 1(veth48aeddd2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.490659158Z]: cni0: port 1(veth8be67575) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.559772158Z]: cni0: port 1(veth8be67575) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.559954158Z]: device veth8be67575 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.705349158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.780791158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth8be67575: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.780842158Z]: cni0: port 1(veth8be67575) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:26:29.780850158Z]: cni0: port 1(veth8be67575) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:26:45.628040158Z]: cni0: port 1(veth8be67575) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:26:45.697973158Z]: device veth8be67575 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:26:45.758706158Z]: cni0: port 1(veth8be67575) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.166117158Z]: cni0: port 1(veth6638e5ed) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.235152158Z]: cni0: port 1(veth6638e5ed) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.304583158Z]: device veth6638e5ed entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.377939158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.453314158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6638e5ed: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.537018158Z]: cni0: port 1(veth6638e5ed) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:29:56.605996158Z]: cni0: port 1(veth6638e5ed) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:30:02.087129158Z]: cni0: port 1(veth6638e5ed) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:30:02.157120158Z]: device veth6638e5ed left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:30:02.217843158Z]: cni0: port 1(veth6638e5ed) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.466357158Z]: cni0: port 1(vethe6aa2ab4) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.535309158Z]: cni0: port 1(vethe6aa2ab4) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.535476158Z]: device vethe6aa2ab4 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.676940158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.752473158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe6aa2ab4: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.836116158Z]: cni0: port 1(vethe6aa2ab4) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:33:54.836122158Z]: cni0: port 1(vethe6aa2ab4) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:34:05.019896158Z]: cni0: port 1(vethe6aa2ab4) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:34:05.089915158Z]: device vethe6aa2ab4 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:34:05.150570158Z]: cni0: port 1(vethe6aa2ab4) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:39:17.939802158Z]: cni0: port 1(vethcbc9fc5a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:39:18.008839158Z]: cni0: port 1(vethcbc9fc5a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:39:18.078157158Z]: device vethcbc9fc5a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:39:18.153770158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:39:18.229201158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethcbc9fc5a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:39:18.229256158Z]: cni0: port 1(vethcbc9fc5a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:39:18.229262158Z]: cni0: port 1(vethcbc9fc5a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:39:24.214332158Z]: cni0: port 1(vethcbc9fc5a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:39:24.284378158Z]: device vethcbc9fc5a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:39:24.345120158Z]: cni0: port 1(vethcbc9fc5a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.540098158Z]: cni0: port 1(veth66f2c54a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.608883158Z]: cni0: port 1(veth66f2c54a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.677928158Z]: device veth66f2c54a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.755879158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.831210158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth66f2c54a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.914796158Z]: cni0: port 1(veth66f2c54a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T03:47:21.914805158Z]: cni0: port 1(veth66f2c54a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T03:47:29.032877158Z]: cni0: port 1(veth66f2c54a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T03:47:29.102843158Z]: device veth66f2c54a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T03:47:29.163470158Z]: cni0: port 1(veth66f2c54a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:00:53.903315158Z]: cni0: port 1(veth65f845da) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:00:53.972189158Z]: cni0: port 1(veth65f845da) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:00:54.041246158Z]: device veth65f845da entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:00:54.116461158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:00:54.191733158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth65f845da: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:00:54.191794158Z]: cni0: port 1(veth65f845da) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:00:54.191800158Z]: cni0: port 1(veth65f845da) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T04:01:00.072319158Z]: cni0: port 1(veth65f845da) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:01:00.142105158Z]: device veth65f845da left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:01:00.202593158Z]: cni0: port 1(veth65f845da) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:20:10.896337158Z]: cni0: port 1(vethb94c9749) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:20:10.965271158Z]: cni0: port 1(vethb94c9749) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:20:11.034435158Z]: device vethb94c9749 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:20:11.116067158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:20:11.191632158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb94c9749: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:20:11.275365158Z]: cni0: port 1(vethb94c9749) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:20:11.275373158Z]: cni0: port 1(vethb94c9749) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T04:20:17.349450158Z]: cni0: port 1(vethb94c9749) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:20:17.419081158Z]: device vethb94c9749 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:20:17.479657158Z]: cni0: port 1(vethb94c9749) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T04:34:36.937962158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.083665158Z]: cni0: port 1(veth7042fa64) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.152538158Z]: cni0: port 1(veth7042fa64) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.152750158Z]: device veth7042fa64 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.297087158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.372312158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7042fa64: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.372360158Z]: cni0: port 1(veth7042fa64) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:39:28.372365158Z]: cni0: port 1(veth7042fa64) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T04:39:34.613488158Z]: cni0: port 1(veth7042fa64) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:39:34.683083158Z]: device veth7042fa64 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:39:34.743665158Z]: cni0: port 1(veth7042fa64) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:58:43.933229158Z]: cni0: port 1(veth301e6ccc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:58:44.002094158Z]: cni0: port 1(veth301e6ccc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:58:44.071185158Z]: device veth301e6ccc entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:58:44.147566158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:58:44.222935158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth301e6ccc: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T04:58:44.306577158Z]: cni0: port 1(veth301e6ccc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T04:58:44.306584158Z]: cni0: port 1(veth301e6ccc) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T04:58:50.942985158Z]: cni0: port 1(veth301e6ccc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T04:58:51.012767158Z]: device veth301e6ccc left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T04:58:51.073351158Z]: cni0: port 1(veth301e6ccc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.075979158Z]: cni0: port 1(veth7f339d3a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.144954158Z]: cni0: port 1(veth7f339d3a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.214082158Z]: device veth7f339d3a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.288206158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.363477158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7f339d3a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.363524158Z]: cni0: port 1(veth7f339d3a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T05:18:01.363529158Z]: cni0: port 1(veth7f339d3a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T05:18:07.290479158Z]: cni0: port 1(veth7f339d3a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:18:07.360409158Z]: device veth7f339d3a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T05:18:07.421115158Z]: cni0: port 1(veth7f339d3a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.303221158Z]: cni0: port 1(vethee4465cb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.372148158Z]: cni0: port 1(vethee4465cb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.441276158Z]: device vethee4465cb entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.517373158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.592987158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethee4465cb: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.676506158Z]: cni0: port 1(vethee4465cb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T05:37:17.745359158Z]: cni0: port 1(vethee4465cb) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T05:37:25.546606158Z]: cni0: port 1(vethee4465cb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:37:25.616530158Z]: device vethee4465cb left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T05:37:25.677031158Z]: cni0: port 1(vethee4465cb) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T05:55:12.127700158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.500824158Z]: cni0: port 1(veth78c0f076) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.569616158Z]: cni0: port 1(veth78c0f076) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.638661158Z]: device veth78c0f076 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.719857158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.795046158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth78c0f076: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.795095158Z]: cni0: port 1(veth78c0f076) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T05:56:36.795103158Z]: cni0: port 1(veth78c0f076) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T05:56:44.869557158Z]: cni0: port 1(veth78c0f076) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T05:56:44.939100158Z]: device veth78c0f076 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T05:56:44.999720158Z]: cni0: port 1(veth78c0f076) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:15:54.978234158Z]: cni0: port 1(vethd8ef46c9) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T06:15:55.047173158Z]: cni0: port 1(vethd8ef46c9) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:15:55.116300158Z]: device vethd8ef46c9 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T06:15:55.193971158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T06:15:55.269377158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethd8ef46c9: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T06:15:55.269450158Z]: cni0: port 1(vethd8ef46c9) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T06:15:55.269457158Z]: cni0: port 1(vethd8ef46c9) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T06:16:03.107609158Z]: cni0: port 1(vethd8ef46c9) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:16:03.177724158Z]: device vethd8ef46c9 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T06:16:03.238408158Z]: cni0: port 1(vethd8ef46c9) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:35:13.730513158Z]: cni0: port 1(veth095bc267) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T06:35:13.799395158Z]: cni0: port 1(veth095bc267) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:35:13.868405158Z]: device veth095bc267 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T06:35:13.945269158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T06:35:14.020518158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth095bc267: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T06:35:14.104057158Z]: cni0: port 1(veth095bc267) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T06:35:14.104063158Z]: cni0: port 1(veth095bc267) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T06:35:20.408890158Z]: cni0: port 1(veth095bc267) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:35:20.478775158Z]: device veth095bc267 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T06:35:20.539428158Z]: cni0: port 1(veth095bc267) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.226861158Z]: cni0: port 1(veth4be6ad6a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.295710158Z]: cni0: port 1(veth4be6ad6a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.364691158Z]: device veth4be6ad6a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.438423158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.513695158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4be6ad6a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.597252158Z]: cni0: port 1(veth4be6ad6a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T06:54:30.666096158Z]: cni0: port 1(veth4be6ad6a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T06:54:44.730139158Z]: cni0: port 1(veth4be6ad6a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T06:54:44.799909158Z]: device veth4be6ad6a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T06:54:44.860481158Z]: cni0: port 1(veth4be6ad6a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.256418158Z]: cni0: port 1(veth02ac9883) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.325269158Z]: cni0: port 1(veth02ac9883) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.394291158Z]: device veth02ac9883 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.467694158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.542961158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth02ac9883: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.626514158Z]: cni0: port 1(veth02ac9883) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T07:13:55.695370158Z]: cni0: port 1(veth02ac9883) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T07:14:04.032395158Z]: cni0: port 1(veth02ac9883) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:14:04.102243158Z]: device veth02ac9883 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T07:14:04.162837158Z]: cni0: port 1(veth02ac9883) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T07:15:47.321075158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.271931158Z]: cni0: port 1(vethf0a16c4c) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.340715158Z]: cni0: port 1(vethf0a16c4c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.409899158Z]: device vethf0a16c4c entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.484454158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.559622158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf0a16c4c: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.643173158Z]: cni0: port 1(vethf0a16c4c) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T07:33:13.643181158Z]: cni0: port 1(vethf0a16c4c) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T07:33:21.305059158Z]: cni0: port 1(vethf0a16c4c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:33:21.374642158Z]: device vethf0a16c4c left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T07:33:21.435233158Z]: cni0: port 1(vethf0a16c4c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:52:30.790700158Z]: cni0: port 1(veth4b6791da) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T07:52:30.859521158Z]: cni0: port 1(veth4b6791da) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:52:30.928684158Z]: device veth4b6791da entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T07:52:31.007050158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T07:52:31.082220158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4b6791da: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T07:52:31.165833158Z]: cni0: port 1(veth4b6791da) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T07:52:31.165842158Z]: cni0: port 1(veth4b6791da) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T07:52:37.646057158Z]: cni0: port 1(veth4b6791da) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T07:52:37.715720158Z]: device veth4b6791da left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T07:52:37.776321158Z]: cni0: port 1(veth4b6791da) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.590896158Z]: cni0: port 1(veth66d453f9) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.659799158Z]: cni0: port 1(veth66d453f9) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.659991158Z]: device veth66d453f9 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.804183158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.879302158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth66d453f9: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.879353158Z]: cni0: port 1(veth66d453f9) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T08:11:46.879359158Z]: cni0: port 1(veth66d453f9) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T08:11:52.988352158Z]: cni0: port 1(veth66d453f9) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:11:53.057998158Z]: device veth66d453f9 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T08:11:53.118538158Z]: cni0: port 1(veth66d453f9) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:31:03.900803158Z]: cni0: port 1(veth15fd275c) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T08:31:03.969683158Z]: cni0: port 1(veth15fd275c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:31:04.038736158Z]: device veth15fd275c entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T08:31:04.113319158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T08:31:04.188548158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth15fd275c: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T08:31:04.272012158Z]: cni0: port 1(veth15fd275c) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T08:31:04.340889158Z]: cni0: port 1(veth15fd275c) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T08:31:10.251678158Z]: cni0: port 1(veth15fd275c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:31:10.321342158Z]: device veth15fd275c left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T08:31:10.381942158Z]: cni0: port 1(veth15fd275c) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T08:36:22.524911158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T08:50:20.797441158Z]: cni0: port 1(vethe9a54caa) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T08:50:20.866387158Z]: cni0: port 1(vethe9a54caa) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:50:20.866909158Z]: device vethe9a54caa entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T08:50:21.012650158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T08:50:21.087994158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe9a54caa: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T08:50:21.171684158Z]: cni0: port 1(vethe9a54caa) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T08:50:21.240579158Z]: cni0: port 1(vethe9a54caa) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T08:50:27.531468158Z]: cni0: port 1(vethe9a54caa) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T08:50:27.600991158Z]: device vethe9a54caa left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T08:50:27.661633158Z]: cni0: port 1(vethe9a54caa) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:09:37.779641158Z]: cni0: port 1(veth9afc8463) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:09:37.848496158Z]: cni0: port 1(veth9afc8463) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:09:37.917707158Z]: device veth9afc8463 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T09:09:37.994383158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T09:09:38.069605158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9afc8463: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T09:09:38.153114158Z]: cni0: port 1(veth9afc8463) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:09:38.222008158Z]: cni0: port 1(veth9afc8463) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T09:09:44.868043158Z]: cni0: port 1(veth9afc8463) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:09:44.938028158Z]: device veth9afc8463 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T09:09:44.998677158Z]: cni0: port 1(veth9afc8463) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:28:54.936539158Z]: cni0: port 1(veth669a2522) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.005417158Z]: cni0: port 1(veth669a2522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.074525158Z]: device veth669a2522 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.138431158Z]: cni0: port 1(veth669a2522) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.138442158Z]: cni0: port 1(veth669a2522) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.207501158Z]: cni0: port 1(veth669a2522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.364556158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.439738158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth669a2522: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.523248158Z]: cni0: port 1(veth669a2522) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:28:55.592047158Z]: cni0: port 1(veth669a2522) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T09:29:02.156823158Z]: cni0: port 1(veth669a2522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:29:02.226582158Z]: device veth669a2522 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T09:29:02.287112158Z]: cni0: port 1(veth669a2522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.260320158Z]: cni0: port 1(veth37afd8f1) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.329191158Z]: cni0: port 1(veth37afd8f1) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.398233158Z]: device veth37afd8f1 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.482985158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.558218158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth37afd8f1: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.641753158Z]: cni0: port 1(veth37afd8f1) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T09:48:12.641759158Z]: cni0: port 1(veth37afd8f1) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T09:48:18.502602158Z]: cni0: port 1(veth37afd8f1) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T09:48:18.572490158Z]: device veth37afd8f1 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T09:48:18.633092158Z]: cni0: port 1(veth37afd8f1) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T09:56:57.719669158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.428330158Z]: cni0: port 1(veth227f44e3) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.497207158Z]: cni0: port 1(veth227f44e3) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.566396158Z]: device veth227f44e3 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.640100158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.715456158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth227f44e3: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.799046158Z]: cni0: port 1(veth227f44e3) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T10:07:29.799054158Z]: cni0: port 1(veth227f44e3) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T10:07:36.769575158Z]: cni0: port 1(veth227f44e3) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:07:36.839382158Z]: device veth227f44e3 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T10:07:36.899953158Z]: cni0: port 1(veth227f44e3) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.348102158Z]: cni0: port 1(veth6d50cb91) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.416926158Z]: cni0: port 1(veth6d50cb91) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.486138158Z]: device veth6d50cb91 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.573271158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.648609158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6d50cb91: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.732048158Z]: cni0: port 1(veth6d50cb91) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T10:26:46.732057158Z]: cni0: port 1(veth6d50cb91) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T10:26:53.096822158Z]: cni0: port 1(veth6d50cb91) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:26:53.166837158Z]: device veth6d50cb91 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T10:26:53.227497158Z]: cni0: port 1(veth6d50cb91) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.389547158Z]: cni0: port 1(veth2132cf54) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.458394158Z]: cni0: port 1(veth2132cf54) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.527531158Z]: device veth2132cf54 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.603093158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.678323158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth2132cf54: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.762015158Z]: cni0: port 1(veth2132cf54) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T10:46:03.830865158Z]: cni0: port 1(veth2132cf54) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T10:46:10.454792158Z]: cni0: port 1(veth2132cf54) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T10:46:10.524721158Z]: device veth2132cf54 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T10:46:10.585310158Z]: cni0: port 1(veth2132cf54) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.473429158Z]: cni0: port 1(veth3641cc78) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.542206158Z]: cni0: port 1(veth3641cc78) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.611262158Z]: device veth3641cc78 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.688809158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.764118158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3641cc78: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.764173158Z]: cni0: port 1(veth3641cc78) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T11:05:20.916353158Z]: cni0: port 1(veth3641cc78) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T11:05:28.766278158Z]: cni0: port 1(veth3641cc78) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:05:28.836123158Z]: device veth3641cc78 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T11:05:28.896708158Z]: cni0: port 1(veth3641cc78) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T11:17:32.923122158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T11:24:37.932062158Z]: cni0: port 1(veth053a57d6) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T11:24:38.000892158Z]: cni0: port 1(veth053a57d6) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:24:38.069988158Z]: device veth053a57d6 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T11:24:38.144514158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T11:24:38.219737158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth053a57d6: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T11:24:38.219789158Z]: cni0: port 1(veth053a57d6) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T11:24:38.219795158Z]: cni0: port 1(veth053a57d6) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T11:24:53.111706158Z]: cni0: port 1(veth053a57d6) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:24:53.181519158Z]: device veth053a57d6 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T11:24:53.242100158Z]: cni0: port 1(veth053a57d6) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:44:02.930046158Z]: cni0: port 1(veth0a141398) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T11:44:02.998901158Z]: cni0: port 1(veth0a141398) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:44:03.068065158Z]: device veth0a141398 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T11:44:03.143324158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T11:44:03.218639158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth0a141398: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T11:44:03.302438158Z]: cni0: port 1(veth0a141398) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T11:44:03.371341158Z]: cni0: port 1(veth0a141398) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T11:44:10.388976158Z]: cni0: port 1(veth0a141398) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T11:44:10.458594158Z]: device veth0a141398 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T11:44:10.519159158Z]: cni0: port 1(veth0a141398) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:03:19.962733158Z]: cni0: port 1(vethba8d4325) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T12:03:20.031622158Z]: cni0: port 1(vethba8d4325) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:03:20.100824158Z]: device vethba8d4325 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T12:03:20.175287158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T12:03:20.250518158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethba8d4325: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T12:03:20.250572158Z]: cni0: port 1(vethba8d4325) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T12:03:20.250578158Z]: cni0: port 1(vethba8d4325) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T12:03:28.640105158Z]: cni0: port 1(vethba8d4325) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:03:28.709856158Z]: device vethba8d4325 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T12:03:28.770485158Z]: cni0: port 1(vethba8d4325) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.008979158Z]: cni0: port 1(vethb521ebd2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.077850158Z]: cni0: port 1(vethb521ebd2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.147066158Z]: device vethb521ebd2 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.222032158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.297644158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb521ebd2: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.381078158Z]: cni0: port 1(vethb521ebd2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T12:22:40.449899158Z]: cni0: port 1(vethb521ebd2) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T12:22:45.927494158Z]: cni0: port 1(vethb521ebd2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:22:45.997143158Z]: device vethb521ebd2 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T12:22:46.057772158Z]: cni0: port 1(vethb521ebd2) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T12:38:08.104879158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.431114158Z]: cni0: port 1(vethea033565) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.499997158Z]: cni0: port 1(vethea033565) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.569059158Z]: device vethea033565 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.645319158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.720581158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethea033565: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.720632158Z]: cni0: port 1(vethea033565) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T12:41:56.872760158Z]: cni0: port 1(vethea033565) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T12:42:03.201601158Z]: cni0: port 1(vethea033565) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T12:42:03.271243158Z]: device vethea033565 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T12:42:03.331808158Z]: cni0: port 1(vethea033565) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.499906158Z]: cni0: port 1(veth88607fdb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.568762158Z]: cni0: port 1(veth88607fdb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.569010158Z]: device veth88607fdb entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.713102158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.788338158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth88607fdb: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.872097158Z]: cni0: port 1(veth88607fdb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:01:13.940859158Z]: cni0: port 1(veth88607fdb) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T13:01:19.475496158Z]: cni0: port 1(veth88607fdb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:01:19.545183158Z]: device veth88607fdb left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:01:19.605718158Z]: cni0: port 1(veth88607fdb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:20:29.840683158Z]: cni0: port 1(vethfbd61a10) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:20:29.909584158Z]: cni0: port 1(vethfbd61a10) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:20:29.978745158Z]: device vethfbd61a10 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:20:30.054083158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:20:30.129406158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethfbd61a10: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:20:30.213126158Z]: cni0: port 1(vethfbd61a10) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:20:30.213135158Z]: cni0: port 1(vethfbd61a10) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T13:20:36.728207158Z]: cni0: port 1(vethfbd61a10) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:20:36.797967158Z]: device vethfbd61a10 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:20:36.858589158Z]: cni0: port 1(vethfbd61a10) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:39:47.734844158Z]: cni0: port 1(vethf328b1fa) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:39:47.803708158Z]: cni0: port 1(vethf328b1fa) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:39:47.872818158Z]: device vethf328b1fa entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:39:47.946810158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:39:48.022182158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf328b1fa: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:39:48.022242158Z]: cni0: port 1(vethf328b1fa) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:39:48.174658158Z]: cni0: port 1(vethf328b1fa) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T13:39:54.044101158Z]: cni0: port 1(vethf328b1fa) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:39:54.113732158Z]: device vethf328b1fa left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:39:54.174344158Z]: cni0: port 1(vethf328b1fa) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T13:58:43.299034158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T13:59:04.750451158Z]: cni0: port 1(vethff063ad3) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:59:04.819436158Z]: cni0: port 1(vethff063ad3) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:59:04.888435158Z]: device vethff063ad3 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:59:04.961925158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:59:05.037241158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethff063ad3: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T13:59:05.120825158Z]: cni0: port 1(vethff063ad3) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T13:59:05.120837158Z]: cni0: port 1(vethff063ad3) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T13:59:12.352008158Z]: cni0: port 1(vethff063ad3) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T13:59:12.421615158Z]: device vethff063ad3 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T13:59:12.482168158Z]: cni0: port 1(vethff063ad3) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.249993158Z]: cni0: port 1(vethc4707a6c) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.318948158Z]: cni0: port 1(vethc4707a6c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.388061158Z]: device vethc4707a6c entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.461708158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.537122158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc4707a6c: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.620783158Z]: cni0: port 1(vethc4707a6c) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T14:18:22.689695158Z]: cni0: port 1(vethc4707a6c) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T14:18:29.603879158Z]: cni0: port 1(vethc4707a6c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:18:29.674180158Z]: device vethc4707a6c left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T14:18:29.734732158Z]: cni0: port 1(vethc4707a6c) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.141232158Z]: cni0: port 1(veth72c07af7) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.210126158Z]: cni0: port 1(veth72c07af7) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.279260158Z]: device veth72c07af7 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.356401158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.432099158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth72c07af7: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.515741158Z]: cni0: port 1(veth72c07af7) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T14:37:41.584668158Z]: cni0: port 1(veth72c07af7) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T14:37:49.942042158Z]: cni0: port 1(veth72c07af7) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:37:50.011782158Z]: device veth72c07af7 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T14:37:50.072388158Z]: cni0: port 1(veth72c07af7) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.140316158Z]: cni0: port 1(vetha2039cb5) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.209188158Z]: cni0: port 1(vetha2039cb5) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.209386158Z]: device vetha2039cb5 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.355353158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.430636158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha2039cb5: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.430693158Z]: cni0: port 1(vetha2039cb5) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T14:56:59.582867158Z]: cni0: port 1(vetha2039cb5) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T14:57:06.266515158Z]: cni0: port 1(vetha2039cb5) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T14:57:06.336241158Z]: device vetha2039cb5 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T14:57:06.396892158Z]: cni0: port 1(vetha2039cb5) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:14:29.850115158Z]: cni0: port 1(veth4b347ec8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:14:29.919037158Z]: cni0: port 1(veth4b347ec8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:14:29.919221158Z]: device veth4b347ec8 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:14:30.063537158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:14:30.138805158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4b347ec8: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:14:30.138861158Z]: cni0: port 1(veth4b347ec8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:14:30.138869158Z]: cni0: port 1(veth4b347ec8) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:14:36.971850158Z]: cni0: port 1(veth4b347ec8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:14:37.041733158Z]: device veth4b347ec8 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:14:37.102487158Z]: cni0: port 1(veth4b347ec8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.373059158Z]: cni0: port 1(veth2b26d946) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.442128158Z]: cni0: port 1(veth2b26d946) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.511523158Z]: device veth2b26d946 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.588226158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.663841158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth2b26d946: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.747593158Z]: cni0: port 1(veth2b26d946) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:15:55.816422158Z]: cni0: port 1(veth2b26d946) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:15:59.278727158Z]: cni0: port 1(veth2b26d946) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:15:59.348939158Z]: device veth2b26d946 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:15:59.409734158Z]: cni0: port 1(veth2b26d946) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:16:00.857088158Z]: cni0: port 1(veth22ab6491) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:16:00.926089158Z]: cni0: port 1(veth22ab6491) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:16:00.995386158Z]: device veth22ab6491 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:16:01.072465158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:16:01.147899158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth22ab6491: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:16:01.231671158Z]: cni0: port 1(veth22ab6491) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:16:01.300688158Z]: cni0: port 1(veth22ab6491) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:16:04.364278158Z]: cni0: port 1(veth22ab6491) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:16:04.434305158Z]: device veth22ab6491 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:16:04.495022158Z]: cni0: port 1(veth22ab6491) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:17:38.858465158Z]: cni0: port 1(veth153fc522) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:17:38.927467158Z]: cni0: port 1(veth153fc522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:17:38.996733158Z]: device veth153fc522 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:17:39.070152158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:17:39.145608158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth153fc522: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:17:39.229252158Z]: cni0: port 1(veth153fc522) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:17:39.298247158Z]: cni0: port 1(veth153fc522) entered forwarding state
+ceph-thin2: user: warning: [2024-03-10T15:19:18.483827158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T15:23:06.359017158Z]: cni0: port 1(veth153fc522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:23:06.429667158Z]: device veth153fc522 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:23:06.490367158Z]: cni0: port 1(veth153fc522) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.006858158Z]: cni0: port 1(veth09ce2417) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.075879158Z]: cni0: port 1(veth09ce2417) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.145054158Z]: device veth09ce2417 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.226661158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.302078158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth09ce2417: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.302131158Z]: cni0: port 1(veth09ce2417) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:24:10.454720158Z]: cni0: port 1(veth09ce2417) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:24:13.721263158Z]: cni0: port 1(veth09ce2417) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:24:13.791167158Z]: device veth09ce2417 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:24:13.851935158Z]: cni0: port 1(veth09ce2417) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.231656158Z]: cni0: port 1(vethe701dfd8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.300768158Z]: cni0: port 1(vethe701dfd8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.370031158Z]: device vethe701dfd8 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.445200158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.520572158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe701dfd8: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.604311158Z]: cni0: port 1(vethe701dfd8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:25:06.604319158Z]: cni0: port 1(vethe701dfd8) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:25:10.338834158Z]: cni0: port 1(vethe701dfd8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:10.408717158Z]: device vethe701dfd8 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:25:10.469464158Z]: cni0: port 1(vethe701dfd8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.521395158Z]: cni0: port 1(vethfb4dcfdb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.590402158Z]: cni0: port 1(vethfb4dcfdb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.659682158Z]: device vethfb4dcfdb entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.723719158Z]: cni0: port 1(vethfb4dcfdb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.792677158Z]: cni0: port 1(vethfb4dcfdb) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.866725158Z]: cni0: port 1(vethfb4dcfdb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:11.938352158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:25:12.013685158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethfb4dcfdb: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T15:25:12.097376158Z]: cni0: port 1(vethfb4dcfdb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T15:25:12.097384158Z]: cni0: port 1(vethfb4dcfdb) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-10T15:25:15.999474158Z]: cni0: port 1(vethfb4dcfdb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T15:25:16.069281158Z]: device vethfb4dcfdb left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T15:25:16.129966158Z]: cni0: port 1(vethfb4dcfdb) entered disabled state
+ceph-thin2: user: warning: [2024-03-10T16:39:53.818336158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-10T18:00:29.012651158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-10T19:21:04.204394158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-10T20:41:39.393251158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.482091158Z]: cni0: port 1(veth122b1431) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.551001158Z]: cni0: port 1(veth122b1431) entered disabled state
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.551346158Z]: device veth122b1431 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.693273158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.768559158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth122b1431: link becomes ready
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.768620158Z]: cni0: port 1(veth122b1431) entered blocking state
+ceph-thin2: kern:    info: [2024-03-10T21:17:59.920807158Z]: cni0: port 1(veth122b1431) entered forwarding state
+ceph-thin2: user: warning: [2024-03-10T22:02:14.578522158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-10T23:22:49.910323158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T00:43:25.174171158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T02:04:00.364640158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T03:24:35.554404158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T04:45:10.750550158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T06:05:45.947981158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T07:26:21.142438158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T08:46:56.335355158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T10:07:31.536597158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T11:28:06.731382158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T12:48:41.923094158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T14:09:17.112239158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T15:29:52.377513158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T16:50:27.574852158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T18:11:02.763755158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T19:31:37.947500158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T20:52:13.135838158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T22:12:48.338322158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-11T23:33:23.530181158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T00:53:58.714092158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T02:14:33.900562158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T03:35:09.097466158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T04:55:44.290208158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T06:16:19.672612158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T07:36:54.855090158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T08:57:30.045335158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T10:18:05.229930158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T11:38:40.418457158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T12:59:15.606895158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T14:19:50.802236158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T15:40:26.007306158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T17:01:01.201999158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T18:21:36.393484158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T19:42:11.626974158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T21:02:46.821150158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T22:23:22.006429158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-12T23:43:57.200442158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T01:04:32.387341158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T02:25:07.584032158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T03:45:42.777058158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T05:06:17.970128158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T06:26:53.227048158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T07:47:28.412089158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T09:08:03.600978158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T10:28:38.795632158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T11:49:14.000807158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T12:56:39.311746158Z]: [talos] error watching discovery service state {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = closing transport due to: connection error: desc = \x5c"error reading from server: read tcp 192.168.0.22:44368->172.174.35.21:443: read: connection timed out\x5c", received prior goaway: code: NO_ERROR"}
+ceph-thin2: user: warning: [2024-03-13T12:56:45.470363158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:49052->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:56:46.843240158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:49052->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:56:48.047215158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:49052->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:56:49.720404158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:49052->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:56:53.600479158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:40389->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:56:56.779526158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:40389->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:57:02.971225158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:40036->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:57:15.154484158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:33991->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:57:34.644245158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:33926->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:57:56.423623158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:51805->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:58:36.532585158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54511->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:59:05.128477158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54511->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T12:59:38.581042158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:41307->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:01:01.546393158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:59864->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:02:29.826841158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:59864->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:03:51.368963158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:37249->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:05:02.816445158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:49620->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:06:15.048021158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:49620->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:07:13.748860158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:48999->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:08:26.713096158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:48999->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:09:00.279668158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54922->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:09:49.200850158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T13:10:27.790811158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54922->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:11:34.204945158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:42914->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:13:00.711099158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:42914->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:13:47.509176158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:47747->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:14:38.120070158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:47747->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:15:26.328210158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54272->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:16:13.608646158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54272->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:16:57.706751158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54272->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:18:27.818629158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:33282->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:19:58.039637158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:55992->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:21:03.044141158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:55992->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:21:44.374925158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:55992->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:22:28.226586158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34520->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:23:48.991277158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34520->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:25:13.997367158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:39514->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:26:06.712587158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:39514->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:26:43.941003158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:58148->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:27:16.262367158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:58148->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:28:18.463408158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:58148->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:29:15.073519158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:41175->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:29:49.714910158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:41175->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:30:41.695333158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:44798->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:31:42.622708158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:44798->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:32:28.552067158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:44798->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:33:35.582013158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:39826->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:35:03.982646158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:39542->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:35:48.071764158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:39542->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:36:38.414520158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34663->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:37:14.774453158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34663->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:38:27.706844158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34663->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:39:23.631900158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34051->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:40:29.871845158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:34051->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:41:08.992808158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:46111->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:42:24.696912158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:46111->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:43:49.232308158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:35937->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:44:54.144100158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:35937->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:46:18.580178158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:54274->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:47:46.634357158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:48368->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:49:02.104187158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:48368->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:49:35.063677158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:44447->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:50:26.273796158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:44447->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:51:15.470985158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:44447->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:52:38.410307158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:53088->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:53:27.057419158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:53088->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:54:07.127058158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:42904->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:55:25.129794158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:42904->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:56:16.801269158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:42904->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:57:43.244852158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:38642->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:58:20.949120158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:32883->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:59:10.460727158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:32883->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T13:59:53.031038158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.22:32883->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-13T14:30:24.391297158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T15:50:59.575085158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T17:11:34.779911158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T18:32:09.979297158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T19:52:45.167908158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T21:13:20.350345158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T22:33:55.532201158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-13T23:54:30.732110158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T01:15:05.926035158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T02:35:41.114478158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T03:56:16.308065158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T05:16:51.492534158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T06:37:26.845428158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T07:58:02.034409158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T09:18:37.326195158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T10:39:12.524450158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T11:59:47.727457158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T13:20:22.917380158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T14:40:58.112711158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T16:01:33.296432158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T17:22:08.498841158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T18:42:43.687532158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T20:03:18.872229158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T21:23:54.060727158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-14T22:44:29.261565158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T00:05:04.452490158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T01:25:39.652348158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T02:46:14.840623158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T04:06:50.104299158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T05:27:25.295515158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T06:48:00.479983158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T08:08:35.675948158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T09:29:10.859743158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T10:49:46.059680158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T12:10:21.243222158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T13:30:56.435704158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T14:51:31.628360158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T16:12:06.826762158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T17:32:42.024689158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T18:53:17.228305158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T20:13:52.420465158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T21:34:27.611711158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-15T22:55:02.806207158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T00:15:38.003768158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T01:36:13.200422158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T02:56:48.507820158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T04:17:23.693725158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T05:37:58.890041158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T06:58:34.093125158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T08:19:09.293586158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T09:39:44.507644158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T11:00:19.704664158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T12:20:55.309561158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T13:41:30.509747158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T15:02:05.700184158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T16:22:40.890706158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T17:43:16.078029158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T19:03:51.283151158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T20:24:26.614564158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T21:45:01.822352158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-16T23:05:37.018157158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T00:26:12.361420158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T01:46:47.552652158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T03:07:22.764686158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T04:27:57.958805158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T05:48:33.155617158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T07:09:08.359043158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T08:29:43.549563158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T09:50:18.878159158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T11:10:54.077266158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T12:31:29.265581158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T13:52:04.456624158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T15:12:39.642594158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T16:33:14.835623158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T17:53:50.036235158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T19:14:25.223770158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T20:35:00.423920158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T21:55:35.616821158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-17T23:16:10.828206158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T00:36:46.027310158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T01:57:21.215760158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T03:17:56.409353158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T04:38:31.613720158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T05:59:06.805561158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T07:19:42.013431158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T08:40:17.212095158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T10:00:52.400258158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T11:21:27.589252158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T12:42:02.789067158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T14:02:37.993571158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T15:23:13.195756158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T16:43:48.395105158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T18:04:23.710427158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T19:24:58.903725158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T20:45:34.095665158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T22:06:09.283279158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-18T23:26:44.472373158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T00:47:19.683788158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T02:07:54.882904158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T03:28:30.083457158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T04:49:05.278672158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T06:09:40.475588158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T07:30:15.676141158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T08:50:50.887283158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T10:11:26.082062158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T11:32:01.275722158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T12:52:36.476464158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T14:13:11.662227158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T15:33:46.875446158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T16:54:22.068125158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T18:14:57.365424158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T19:35:32.712026158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T20:56:07.896139158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T22:16:43.088584158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-19T23:37:18.282914158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T00:57:53.612496158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T02:18:28.810985158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T03:39:04.008603158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T04:59:39.204835158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T06:20:14.404434158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T07:40:49.596917158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T09:01:24.783896158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T10:21:59.971184158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T11:42:35.159726158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T13:03:10.344675158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T14:23:45.535404158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T15:44:20.875855158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T17:04:56.062403158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T18:25:31.243859158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T19:46:06.515718158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T21:06:42.444993158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T22:27:17.637412158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-20T23:47:52.828102158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T01:08:28.147035158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T02:29:03.333946158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T03:49:38.514604158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T05:10:13.700087158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T06:30:48.881223158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T07:33:23.333651158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "Get \x5c"https://192.168.0.11:6443/api/v1/nodes?allowWatchBookmarks=true&fieldSelector=metadata.name%3Dceph-thin2&resourceVersion=2838185&timeout=5m46s&timeoutSeconds=346&watch=true\x5c": http2: client connection lost"}
+ceph-thin2: user: warning: [2024-03-21T07:33:55.141857158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin2&resourceVersion=2838185\x5c": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)"}
+ceph-thin2: user: warning: [2024-03-21T07:34:03.430966158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin2&resourceVersion=2838185\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin2: user: warning: [2024-03-21T07:34:12.646929158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin2&resourceVersion=2838185\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin2: user: warning: [2024-03-21T07:34:21.862539158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin2&resourceVersion=2838185\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin2: kern:    info: [2024-03-21T07:39:17.182114158Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-21T07:39:17.252087158Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin2: user: warning: [2024-03-21T07:39:17.481338158Z]: [talos] removed address 192.168.0.22/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin2: user: warning: [2024-03-21T07:39:17.481593158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-u1j-plw?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:17.482589158Z]: [talos] failed refreshing discovery service data {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "error updating local affiliate data: rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c""}
+ceph-thin2: user: warning: [2024-03-21T07:39:18.396115158Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-u1j-plw", "domainname": ""}
+ceph-thin2: user: warning: [2024-03-21T07:39:18.576585158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:18.927640158Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 1770, container kubelet)
+ceph-thin2: user: warning: [2024-03-21T07:39:19.047807158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-u1j-plw?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:19.047900158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:19.438201158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-u1j-plw?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:20.097881158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:20.501899158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:21.338551158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-u1j-plw?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:21.912118158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:22.596670158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-u1j-plw?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:22.919738158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:23.270803158Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin2: user: warning: [2024-03-21T07:39:23.357775158Z]: [talos] kubelet client certificate does not match expected nodename, removing {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "expected": "system:node:talos-u1j-plw", "actual": "system:node:ceph-thin2"}
+ceph-thin2: user: warning: [2024-03-21T07:39:23.623130158Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin2: user: warning: [2024-03-21T07:39:23.737184158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:24.141420158Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-21T07:39:24.263659158Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-21T07:39:24.716234158Z]: [talos] service[kubelet](Running): Started task kubelet (PID 248993) for container kubelet
+ceph-thin2: user: warning: [2024-03-21T07:39:26.537442158Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-21T07:39:27.793552158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:28.572888158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:31.411204158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:36.820708158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:39:37.171787158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:46.947830158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:57.233249158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:39:58.274733158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: user: warning: [2024-03-21T07:40:11.122044158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:40:17.270972158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 3 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.13:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: network is unreachable\x5c"\x5cn\x5cttimeout"}
+ceph-thin2: user: warning: [2024-03-21T07:40:30.520649158Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-u1j-plw&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin2: kern:    info: [2024-03-21T07:40:37.720464158Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-21T07:40:42.864798158Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin2", "domainname": "dezendorf.net"}
+ceph-thin2: user: warning: [2024-03-21T07:40:43.056808158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "network.RouteSpecController", "error": "1 error occurred:\x5cn\x5ct* error adding route: netlink receive: network is unreachable, message {Family:2 DstLength:0 SrcLength:0 Tos:0 Table:0 Protocol:3 Scope:0 Type:1 Flags:0 Attributes:{Dst:<nil> Src:192.168.0.22 Gateway:192.168.1.1 OutIface:8 Priority:1024 Table:254 Mark:0 Pref:<nil> Expires:<nil> Metrics:<nil> Multipath:[]}}\x5cn\x5cn"}
+ceph-thin2: user: warning: [2024-03-21T07:40:43.564544158Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.22/23", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T07:40:43.756052158Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 248993, container kubelet)
+ceph-thin2: user: warning: [2024-03-21T07:40:44.061235158Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin2: user: warning: [2024-03-21T07:40:44.148743158Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin2: user: warning: [2024-03-21T07:40:44.262492158Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin2: user: warning: [2024-03-21T07:40:44.517080158Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-21T07:40:44.574673158Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin2: kern:    info: [2024-03-21T07:40:45.051316158Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-21T07:40:45.119137158Z]: [talos] service[kubelet](Running): Started task kubelet (PID 249454) for container kubelet
+ceph-thin2: user: warning: [2024-03-21T07:40:45.231940158Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 249454, container kubelet)
+ceph-thin2: user: warning: [2024-03-21T07:40:45.354021158Z]: [talos] deleted route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin2: user: warning: [2024-03-21T07:40:45.608159158Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-u1j-plw", "domainname": ""}
+ceph-thin2: user: warning: [2024-03-21T07:40:45.608176158Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin2: user: warning: [2024-03-21T07:40:45.608190158Z]: [talos] removed address 192.168.0.22/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin2: user: warning: [2024-03-21T07:40:47.971140158Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin2: user: warning: [2024-03-21T07:40:48.059066158Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin2: user: warning: [2024-03-21T07:40:48.172914158Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-21T07:40:48.773793158Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-21T07:40:49.224664158Z]: [talos] service[kubelet](Running): Started task kubelet (PID 249573) for container kubelet
+ceph-thin2: kern:    info: [2024-03-21T07:40:49.439461158Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin2: user: warning: [2024-03-21T07:40:51.049360158Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin2: user: warning: [2024-03-21T07:40:53.283407158Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin2: user: warning: [2024-03-21T07:40:54.596652158Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin2", "domainname": "dezendorf.net"}
+ceph-thin2: user: warning: [2024-03-21T07:40:54.787733158Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.22/23", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T07:40:54.968333158Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin2: user: warning: [2024-03-21T07:40:55.222840158Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 249573, container kubelet)
+ceph-thin2: user: warning: [2024-03-21T07:40:55.833175158Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin2: user: warning: [2024-03-21T07:40:55.920619158Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin2: user: warning: [2024-03-21T07:40:56.034655158Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin2: user: warning: [2024-03-21T07:40:56.165425158Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin2: user: warning: [2024-03-21T07:40:56.620064158Z]: [talos] service[kubelet](Running): Started task kubelet (PID 249732) for container kubelet
+ceph-thin2: user: warning: [2024-03-21T07:40:57.747834158Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"talos-u1j-plw\x5c" not found"}
+ceph-thin2: user: warning: [2024-03-21T07:40:58.442162158Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin2: kern:    info: [2024-03-21T07:40:59.318632158Z]: cni0: port 1(veth122b1431) entered disabled state
+ceph-thin2: kern:    info: [2024-03-21T07:40:59.389438158Z]: device veth122b1431 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-21T07:40:59.451050158Z]: cni0: port 1(veth122b1431) entered disabled state
+ceph-thin2: user: warning: [2024-03-21T08:34:50.548154158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T09:55:25.731528158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T11:16:00.917298158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T12:36:36.109696158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T13:57:11.294022158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T15:17:46.478895158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T16:38:21.678272158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T17:58:56.865291158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T19:19:32.060721158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T20:40:07.248895158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T22:00:42.450195158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-21T23:21:17.649875158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T00:41:52.842922158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T02:02:28.190924158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T03:23:03.465291158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T04:43:38.657385158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T06:04:13.854709158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T07:24:49.074718158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T08:45:24.265447158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T10:05:59.538009158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T11:26:34.736446158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T12:47:09.928086158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T14:07:45.127114158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T15:28:20.312456158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T16:48:55.517354158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.199454158Z]: cni0: port 1(veth2a0504dd) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.270378158Z]: cni0: port 1(veth2a0504dd) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.341459158Z]: device veth2a0504dd entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.423832158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.501104158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth2a0504dd: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.501154158Z]: cni0: port 1(veth2a0504dd) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:50:05.501160158Z]: cni0: port 1(veth2a0504dd) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.303697158Z]: cni0: port 2(veth7001eee2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.374708158Z]: cni0: port 2(veth7001eee2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.446114158Z]: device veth7001eee2 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.525605158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.602938158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7001eee2: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.602998158Z]: cni0: port 2(veth7001eee2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:54:40.759360158Z]: cni0: port 2(veth7001eee2) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:54:43.470796158Z]: cni0: port 2(veth7001eee2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:54:43.543101158Z]: device veth7001eee2 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:54:43.605786158Z]: cni0: port 2(veth7001eee2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.526467158Z]: cni0: port 2(veth89912bbc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.597427158Z]: cni0: port 2(veth89912bbc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.668633158Z]: device veth89912bbc entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.757894158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.835484158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth89912bbc: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.835549158Z]: cni0: port 2(veth89912bbc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:55:40.992127158Z]: cni0: port 2(veth89912bbc) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:55:44.695978158Z]: cni0: port 2(veth89912bbc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:55:44.767881158Z]: device veth89912bbc left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:55:44.830493158Z]: cni0: port 2(veth89912bbc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.163144158Z]: cni0: port 2(vethabfe5a6a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.234145158Z]: cni0: port 2(vethabfe5a6a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.305343158Z]: device vethabfe5a6a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.386134158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.463412158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethabfe5a6a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.463466158Z]: cni0: port 2(vethabfe5a6a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:55:46.463471158Z]: cni0: port 2(vethabfe5a6a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:55:51.232113158Z]: cni0: port 2(vethabfe5a6a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:55:51.303886158Z]: device vethabfe5a6a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:55:51.366444158Z]: cni0: port 2(vethabfe5a6a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:57:01.973498158Z]: cni0: port 1(veth2a0504dd) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:57:02.045595158Z]: device veth2a0504dd left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:57:02.108268158Z]: cni0: port 1(veth2a0504dd) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:57:28.860229158Z]: cni0: port 1(veth16185acc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:57:28.931454158Z]: cni0: port 1(veth16185acc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:57:29.002806158Z]: device veth16185acc entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:57:29.084000158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:57:29.161634158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth16185acc: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:57:29.161695158Z]: cni0: port 1(veth16185acc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:57:29.161704158Z]: cni0: port 1(veth16185acc) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:57:32.427947158Z]: cni0: port 1(veth16185acc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:57:32.499918158Z]: device veth16185acc left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:57:32.562800158Z]: cni0: port 1(veth16185acc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:58:30.965309158Z]: cni0: port 1(veth26a3519a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:58:31.036231158Z]: cni0: port 1(veth26a3519a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:58:31.107418158Z]: device veth26a3519a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:58:31.191522158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:58:31.268975158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth26a3519a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:58:31.354584158Z]: cni0: port 1(veth26a3519a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:58:31.354596158Z]: cni0: port 1(veth26a3519a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:58:35.658485158Z]: cni0: port 1(veth26a3519a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:58:35.730271158Z]: device veth26a3519a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:58:35.792997158Z]: cni0: port 1(veth26a3519a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.187213158Z]: cni0: port 1(veth88f7bb1a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.258100158Z]: cni0: port 1(veth88f7bb1a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.329353158Z]: device veth88f7bb1a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.427578158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.505065158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth88f7bb1a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.590658158Z]: cni0: port 1(veth88f7bb1a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T17:58:37.661536158Z]: cni0: port 1(veth88f7bb1a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T17:58:44.702016158Z]: cni0: port 1(veth88f7bb1a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T17:58:44.773745158Z]: device veth88f7bb1a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T17:58:44.836311158Z]: cni0: port 1(veth88f7bb1a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:00:50.938681158Z]: cni0: port 1(veth746dbb05) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:00:51.009586158Z]: cni0: port 1(veth746dbb05) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:00:51.080692158Z]: device veth746dbb05 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:00:51.160750158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:00:51.238278158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth746dbb05: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:00:51.324136158Z]: cni0: port 1(veth746dbb05) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:00:51.324147158Z]: cni0: port 1(veth746dbb05) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T18:01:19.538891158Z]: cni0: port 1(veth746dbb05) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:01:19.610793158Z]: device veth746dbb05 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:01:19.673510158Z]: cni0: port 1(veth746dbb05) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.295157158Z]: cni0: port 1(vethb3b6a08f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.366304158Z]: cni0: port 1(vethb3b6a08f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.437757158Z]: device vethb3b6a08f entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.527184158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.605396158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb3b6a08f: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.691435158Z]: cni0: port 1(vethb3b6a08f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:03:37.762642158Z]: cni0: port 1(vethb3b6a08f) entered forwarding state
+ceph-thin2: user: warning: [2024-03-22T18:09:30.767390158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-22T18:45:51.190254158Z]: cni0: port 1(vethb3b6a08f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:45:51.262079158Z]: device vethb3b6a08f left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:45:51.324826158Z]: cni0: port 1(vethb3b6a08f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:46:46.778257158Z]: cni0: port 1(veth6adabc88) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:46:46.849404158Z]: cni0: port 1(veth6adabc88) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:46:46.920674158Z]: device veth6adabc88 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:46:46.997667158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:46:47.075135158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6adabc88: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:46:47.075192158Z]: cni0: port 1(veth6adabc88) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:46:47.231793158Z]: cni0: port 1(veth6adabc88) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T18:46:51.095094158Z]: cni0: port 1(veth6adabc88) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:46:51.166979158Z]: device veth6adabc88 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:46:51.229705158Z]: cni0: port 1(veth6adabc88) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.636963158Z]: cni0: port 1(veth3e70e093) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.707999158Z]: cni0: port 1(veth3e70e093) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.779286158Z]: device veth3e70e093 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.859385158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.936890158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3e70e093: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.936946158Z]: cni0: port 1(veth3e70e093) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:48:04.936953158Z]: cni0: port 1(veth3e70e093) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T18:48:08.394309158Z]: cni0: port 1(veth3e70e093) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:08.466194158Z]: device veth3e70e093 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:48:08.528968158Z]: cni0: port 1(veth3e70e093) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.553027158Z]: cni0: port 1(vethf88855d8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.624088158Z]: cni0: port 1(vethf88855d8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.695364158Z]: device vethf88855d8 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.761388158Z]: cni0: port 1(vethf88855d8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.832474158Z]: cni0: port 1(vethf88855d8) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.833161158Z]: cni0: port 1(vethf88855d8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:09.851009158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:48:10.054863158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf88855d8: link becomes ready
+ceph-thin2: kern:    info: [2024-03-22T18:48:10.054912158Z]: cni0: port 1(vethf88855d8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-22T18:48:10.211557158Z]: cni0: port 1(vethf88855d8) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-22T18:48:14.424531158Z]: cni0: port 1(vethf88855d8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-22T18:48:14.496291158Z]: device vethf88855d8 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-22T18:48:14.559132158Z]: cni0: port 1(vethf88855d8) entered disabled state
+ceph-thin2: user: warning: [2024-03-22T19:30:05.906521158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T20:50:41.074961158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T22:11:16.248274158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-22T23:31:51.505080158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T00:52:26.668547158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T02:13:01.912034158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T03:33:37.072756158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T04:54:12.233425158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T06:14:47.397826158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T07:35:22.564455158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T08:55:57.721103158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T10:16:32.882510158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T11:37:08.041457158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T12:57:43.358198158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T14:18:18.519263158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-23T15:29:49.621280158Z]: cni0: port 1(vethc3aa9a9f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:29:49.692365158Z]: cni0: port 1(vethc3aa9a9f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:29:49.763674158Z]: device vethc3aa9a9f entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:29:49.846997158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:29:49.924493158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc3aa9a9f: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:29:49.924548158Z]: cni0: port 1(vethc3aa9a9f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:29:50.081092158Z]: cni0: port 1(vethc3aa9a9f) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T15:29:53.185399158Z]: cni0: port 1(vethc3aa9a9f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:29:53.257229158Z]: device vethc3aa9a9f left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:29:53.319948158Z]: cni0: port 1(vethc3aa9a9f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.387066158Z]: cni0: port 1(vethf9d4642e) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.458120158Z]: cni0: port 1(vethf9d4642e) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.529498158Z]: device vethf9d4642e entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.608112158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.685566158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf9d4642e: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.771312158Z]: cni0: port 1(vethf9d4642e) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:31:14.771320158Z]: cni0: port 1(vethf9d4642e) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T15:31:18.518556158Z]: cni0: port 1(vethf9d4642e) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:31:18.590388158Z]: device vethf9d4642e left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:31:18.653081158Z]: cni0: port 1(vethf9d4642e) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:31:19.889766158Z]: cni0: port 1(veth1b89616f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:31:19.960850158Z]: cni0: port 1(veth1b89616f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:31:20.032254158Z]: device veth1b89616f entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:31:20.112030158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:31:20.189643158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1b89616f: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:31:20.275344158Z]: cni0: port 1(veth1b89616f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:31:20.346414158Z]: cni0: port 1(veth1b89616f) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T15:31:24.530859158Z]: cni0: port 1(veth1b89616f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:31:24.602843158Z]: device veth1b89616f left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:31:24.665623158Z]: cni0: port 1(veth1b89616f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.308212158Z]: cni0: port 1(veth790c26a0) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.379372158Z]: cni0: port 1(veth790c26a0) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.450736158Z]: device veth790c26a0 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.532750158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.610447158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth790c26a0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.696183158Z]: cni0: port 1(veth790c26a0) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T15:32:29.696190158Z]: cni0: port 1(veth790c26a0) entered forwarding state
+ceph-thin2: user: warning: [2024-03-23T15:38:53.687871158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T16:59:28.854519158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T18:20:04.028470158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T19:40:39.199620158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T21:01:14.373239158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-23T22:21:49.546009158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-23T22:56:04.079178158Z]: cni0: port 1(veth790c26a0) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:56:04.151145158Z]: device veth790c26a0 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:56:04.213931158Z]: cni0: port 1(veth790c26a0) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.466668158Z]: cni0: port 1(vethcd3f3ecb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.537596158Z]: cni0: port 1(vethcd3f3ecb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.608761158Z]: device vethcd3f3ecb entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.691659158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.768975158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethcd3f3ecb: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.769050158Z]: cni0: port 1(vethcd3f3ecb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:57:21.769058158Z]: cni0: port 1(vethcd3f3ecb) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T22:57:25.507409158Z]: cni0: port 1(vethcd3f3ecb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:57:25.579779158Z]: device vethcd3f3ecb left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:57:25.642658158Z]: cni0: port 1(vethcd3f3ecb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.194325158Z]: cni0: port 1(veth481912c8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.265599158Z]: cni0: port 1(veth481912c8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.336972158Z]: device veth481912c8 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.422011158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.500046158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth481912c8: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.586041158Z]: cni0: port 1(veth481912c8) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:58:49.586052158Z]: cni0: port 1(veth481912c8) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T22:58:52.816754158Z]: cni0: port 1(veth481912c8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:52.888792158Z]: device veth481912c8 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:58:52.951641158Z]: cni0: port 1(veth481912c8) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.001262158Z]: cni0: port 1(veth30aa304a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.072515158Z]: cni0: port 1(veth30aa304a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.144001158Z]: device veth30aa304a entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.210173158Z]: cni0: port 1(veth30aa304a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.281316158Z]: cni0: port 1(veth30aa304a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.355614158Z]: cni0: port 1(veth30aa304a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.431303158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.508941158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth30aa304a: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.594980158Z]: cni0: port 1(veth30aa304a) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T22:58:54.666035158Z]: cni0: port 1(veth30aa304a) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T22:58:58.857917158Z]: cni0: port 1(veth30aa304a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T22:58:58.929889158Z]: device veth30aa304a left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T22:58:58.992774158Z]: cni0: port 1(veth30aa304a) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T23:00:07.864607158Z]: cni0: port 1(veth3ac2b324) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T23:00:07.935543158Z]: cni0: port 1(veth3ac2b324) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T23:00:07.935737158Z]: device veth3ac2b324 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T23:00:08.092328158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T23:00:08.169940158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3ac2b324: link becomes ready
+ceph-thin2: kern:    info: [2024-03-23T23:00:08.255447158Z]: cni0: port 1(veth3ac2b324) entered blocking state
+ceph-thin2: kern:    info: [2024-03-23T23:00:08.255456158Z]: cni0: port 1(veth3ac2b324) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-23T23:04:03.340764158Z]: cni0: port 1(veth3ac2b324) entered disabled state
+ceph-thin2: kern:    info: [2024-03-23T23:04:03.412586158Z]: device veth3ac2b324 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-23T23:04:03.475209158Z]: cni0: port 1(veth3ac2b324) entered disabled state
+ceph-thin2: user: warning: [2024-03-23T23:42:24.716572158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T01:02:59.888223158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.378442158Z]: cni0: port 1(vethc88f37ed) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.449620158Z]: cni0: port 1(vethc88f37ed) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.520993158Z]: device vethc88f37ed entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.600059158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.677712158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc88f37ed: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.763381158Z]: cni0: port 1(vethc88f37ed) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:23:37.763388158Z]: cni0: port 1(vethc88f37ed) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T01:23:41.428601158Z]: cni0: port 1(vethc88f37ed) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:23:41.500515158Z]: device vethc88f37ed left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:23:41.563347158Z]: cni0: port 1(vethc88f37ed) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.103407158Z]: cni0: port 1(veth05aa4de4) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.174496158Z]: cni0: port 1(veth05aa4de4) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.245879158Z]: device veth05aa4de4 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.328472158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.405914158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth05aa4de4: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.405977158Z]: cni0: port 1(veth05aa4de4) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:24:56.405985158Z]: cni0: port 1(veth05aa4de4) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T01:24:59.686369158Z]: cni0: port 1(veth05aa4de4) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:24:59.758198158Z]: device veth05aa4de4 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:24:59.820982158Z]: cni0: port 1(veth05aa4de4) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:25:00.815161158Z]: cni0: port 1(veth0e3e9e5f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:25:00.886285158Z]: cni0: port 1(veth0e3e9e5f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:25:00.957668158Z]: device veth0e3e9e5f entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.023892158Z]: cni0: port 1(veth0e3e9e5f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.095043158Z]: cni0: port 1(veth0e3e9e5f) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.168496158Z]: cni0: port 1(veth0e3e9e5f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.241236158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.318814158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth0e3e9e5f: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.404631158Z]: cni0: port 1(veth0e3e9e5f) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:25:01.404638158Z]: cni0: port 1(veth0e3e9e5f) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T01:25:05.755033158Z]: cni0: port 1(veth0e3e9e5f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:25:05.827074158Z]: device veth0e3e9e5f left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:25:05.889833158Z]: cni0: port 1(veth0e3e9e5f) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.295228158Z]: cni0: port 1(veth7dff5dbb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.366383158Z]: cni0: port 1(veth7dff5dbb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.437816158Z]: device veth7dff5dbb entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.517796158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.595289158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7dff5dbb: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.595356158Z]: cni0: port 1(veth7dff5dbb) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T01:26:19.595363158Z]: cni0: port 1(veth7dff5dbb) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T01:26:49.906450158Z]: cni0: port 1(veth7dff5dbb) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T01:26:49.978635158Z]: device veth7dff5dbb left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T01:26:50.041252158Z]: cni0: port 1(veth7dff5dbb) entered disabled state
+ceph-thin2: user: warning: [2024-03-24T02:23:35.049438158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T03:44:10.210158158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T05:04:45.368895158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T06:25:20.528272158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T07:45:55.683505158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T09:06:30.858957158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T10:27:06.178343158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T11:47:41.338274158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T13:08:16.511332158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T14:28:51.727038158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern: warning: [2024-03-24T15:35:08.410318158Z]: show_signal_msg: 27 callbacks suppressed
+ceph-thin2: kern:    info: [2024-03-24T15:35:08.410327158Z]: ceph-mon[176054]: segfault at 7fb564e7d9d0 ip 00007fb572b31f68 sp 00007fffdd4062b0 error 4 in libpthread-2.28.so[7fb572b1e000+1b000] likely on CPU 2 (core 2, socket 0)
+ceph-thin2: kern:    info: [2024-03-24T15:35:08.665819158Z]: Code: 44 24 28 31 c0 48 83 fa 0f 0f 86 9f 00 00 00 49 89 f5 64 48 8b 04 25 10 00 00 00 48 39 c7 0f 84 ae 00 00 00 48 89 e3 48 89 d5 <8b> 97 d0 02 00 00 31 c0 48 8d 35 09 19 00 00 48 89 df e8 11 28 ff
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.477795158Z]: cni0: port 1(veth6c2134d2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.548782158Z]: cni0: port 1(veth6c2134d2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.619977158Z]: device veth6c2134d2 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.710114158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.787566158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6c2134d2: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.873241158Z]: cni0: port 1(veth6c2134d2) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T15:36:10.944151158Z]: cni0: port 1(veth6c2134d2) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T15:36:14.231201158Z]: cni0: port 1(veth6c2134d2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:36:14.302868158Z]: device veth6c2134d2 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T15:36:14.365489158Z]: cni0: port 1(veth6c2134d2) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:37:25.963103158Z]: cni0: port 1(veth556bf0c7) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T15:37:26.034109158Z]: cni0: port 1(veth556bf0c7) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:37:26.105358158Z]: device veth556bf0c7 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T15:37:26.192407158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T15:37:26.269885158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth556bf0c7: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T15:37:26.355410158Z]: cni0: port 1(veth556bf0c7) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T15:37:26.355419158Z]: cni0: port 1(veth556bf0c7) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T15:37:30.522505158Z]: cni0: port 1(veth556bf0c7) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:37:30.594223158Z]: device veth556bf0c7 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T15:37:30.656879158Z]: cni0: port 1(veth556bf0c7) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:37:31.703586158Z]: cni0: port 1(vethf61cba97) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T15:37:31.774565158Z]: cni0: port 1(vethf61cba97) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:37:31.845850158Z]: device vethf61cba97 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T15:37:31.912268158Z]: cni0: port 1(vethf61cba97) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T15:37:31.983195158Z]: cni0: port 1(vethf61cba97) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T15:37:32.056566158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf61cba97: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T15:37:36.558054158Z]: cni0: port 1(vethf61cba97) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T15:37:36.629672158Z]: device vethf61cba97 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T15:37:36.692355158Z]: cni0: port 1(vethf61cba97) entered disabled state
+ceph-thin2: user: warning: [2024-03-24T15:49:26.902023158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T17:10:02.069902158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T18:30:37.226067158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T19:51:12.396175158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.108521158Z]: cni0: port 1(veth0fc66033) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.179416158Z]: cni0: port 1(veth0fc66033) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.250563158Z]: device veth0fc66033 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.316398158Z]: cni0: port 1(veth0fc66033) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.387306158Z]: cni0: port 1(veth0fc66033) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.387673158Z]: cni0: port 1(veth0fc66033) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.407855158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.609003158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth0fc66033: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.694562158Z]: cni0: port 1(veth0fc66033) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:50:32.694568158Z]: cni0: port 1(veth0fc66033) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T20:53:20.719778158Z]: cni0: port 1(veth0fc66033) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:53:20.791619158Z]: device veth0fc66033 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:53:20.854274158Z]: cni0: port 1(veth0fc66033) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.269872158Z]: cni0: port 1(vethb37b37ce) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.340799158Z]: cni0: port 1(vethb37b37ce) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.411941158Z]: device vethb37b37ce entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.494195158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.571773158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb37b37ce: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.571828158Z]: cni0: port 1(vethb37b37ce) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:54:16.728093158Z]: cni0: port 1(vethb37b37ce) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T20:54:19.772829158Z]: cni0: port 1(vethb37b37ce) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:54:19.844732158Z]: device vethb37b37ce left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:54:19.907291158Z]: cni0: port 1(vethb37b37ce) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:29.957337158Z]: cni0: port 1(vethab10155e) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:55:30.028279158Z]: cni0: port 1(vethab10155e) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:30.028572158Z]: device vethab10155e entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:55:30.178232158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:55:30.255543158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethab10155e: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:55:30.255605158Z]: cni0: port 1(vethab10155e) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:55:30.411863158Z]: cni0: port 1(vethab10155e) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T20:55:34.076298158Z]: cni0: port 1(vethab10155e) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:34.147953158Z]: device vethab10155e left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:55:34.210588158Z]: cni0: port 1(vethab10155e) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.273982158Z]: cni0: port 1(vethc7cee0cc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.344871158Z]: cni0: port 1(vethc7cee0cc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.416013158Z]: device vethc7cee0cc entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.481851158Z]: cni0: port 1(vethc7cee0cc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.552708158Z]: cni0: port 1(vethc7cee0cc) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.625821158Z]: cni0: port 1(vethc7cee0cc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.709788158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.787131158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc7cee0cc: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.872962158Z]: cni0: port 1(vethc7cee0cc) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:55:35.943873158Z]: cni0: port 1(vethc7cee0cc) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-24T20:55:40.115943158Z]: cni0: port 1(vethc7cee0cc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:55:40.187565158Z]: device vethc7cee0cc left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:55:40.250122158Z]: cni0: port 1(vethc7cee0cc) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:57:20.568248158Z]: cni0: port 1(veth7c0dd306) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:57:20.639153158Z]: cni0: port 1(veth7c0dd306) entered disabled state
+ceph-thin2: kern:    info: [2024-03-24T20:57:20.710271158Z]: device veth7c0dd306 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-24T20:57:20.790679158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:57:20.868028158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7c0dd306: link becomes ready
+ceph-thin2: kern:    info: [2024-03-24T20:57:20.953747158Z]: cni0: port 1(veth7c0dd306) entered blocking state
+ceph-thin2: kern:    info: [2024-03-24T20:57:21.024670158Z]: cni0: port 1(veth7c0dd306) entered forwarding state
+ceph-thin2: user: warning: [2024-03-24T21:11:47.629430158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T22:32:22.785729158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-24T23:52:57.942038158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T01:13:33.107575158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T02:34:08.280681158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T03:54:43.446798158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T05:15:18.636106158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T06:35:53.805000158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T07:56:28.965394158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T09:17:04.127723158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T10:37:39.295033158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T11:58:14.453280158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T13:18:49.620059158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T14:39:24.791266158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T15:59:59.955200158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T17:20:35.111060158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T18:41:10.274999158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T20:01:45.440925158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T21:22:20.596870158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-25T22:42:55.770538158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T00:03:30.999526158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T01:24:06.157949158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T02:44:41.331545158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T04:05:16.576341158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T05:25:51.741591158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T06:46:26.906206158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T08:07:02.080055158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T09:27:37.247327158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T10:48:12.404776158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-26T12:06:59.217538158Z]: cni0: port 1(veth7c0dd306) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:06:59.289876158Z]: device veth7c0dd306 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:06:59.352505158Z]: cni0: port 1(veth7c0dd306) entered disabled state
+ceph-thin2: user: warning: [2024-03-26T12:08:47.573562158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: kern:    info: [2024-03-26T12:09:55.994341158Z]: cni0: port 1(vethaa0cfb18) entered blocking state
+ceph-thin2: kern:    info: [2024-03-26T12:09:56.065132158Z]: cni0: port 1(vethaa0cfb18) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:09:56.136110158Z]: device vethaa0cfb18 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:09:56.226438158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-26T12:09:56.303684158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethaa0cfb18: link becomes ready
+ceph-thin2: kern:    info: [2024-03-26T12:09:56.303756158Z]: cni0: port 1(vethaa0cfb18) entered blocking state
+ceph-thin2: kern:    info: [2024-03-26T12:09:56.459716158Z]: cni0: port 1(vethaa0cfb18) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-26T12:10:02.458218158Z]: cni0: port 1(vethaa0cfb18) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:10:02.529850158Z]: device vethaa0cfb18 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:10:02.592358158Z]: cni0: port 1(vethaa0cfb18) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:11:09.786130158Z]: cni0: port 1(veth7d9b39b0) entered blocking state
+ceph-thin2: kern:    info: [2024-03-26T12:11:09.856922158Z]: cni0: port 1(veth7d9b39b0) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:11:09.927894158Z]: device veth7d9b39b0 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:11:10.003169158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-26T12:11:10.080251158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7d9b39b0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-26T12:11:10.165605158Z]: cni0: port 1(veth7d9b39b0) entered blocking state
+ceph-thin2: kern:    info: [2024-03-26T12:11:10.236360158Z]: cni0: port 1(veth7d9b39b0) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-26T12:11:14.742579158Z]: cni0: port 1(veth7d9b39b0) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:11:14.814204158Z]: device veth7d9b39b0 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:11:14.876633158Z]: cni0: port 1(veth7d9b39b0) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.070124158Z]: cni0: port 1(veth5956d044) entered blocking state
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.140935158Z]: cni0: port 1(veth5956d044) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.211917158Z]: device veth5956d044 entered promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.292709158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.369802158Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5956d044: link becomes ready
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.370052158Z]: cni0: port 1(veth5956d044) entered blocking state
+ceph-thin2: kern:    info: [2024-03-26T12:11:17.525965158Z]: cni0: port 1(veth5956d044) entered forwarding state
+ceph-thin2: kern:    info: [2024-03-26T12:11:21.768530158Z]: cni0: port 1(veth5956d044) entered disabled state
+ceph-thin2: kern:    info: [2024-03-26T12:11:21.840143158Z]: device veth5956d044 left promiscuous mode
+ceph-thin2: kern:    info: [2024-03-26T12:11:21.902529158Z]: cni0: port 1(veth5956d044) entered disabled state
+ceph-thin2: user: warning: [2024-03-26T13:29:22.732357158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T14:49:58.087255158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T16:10:33.247115158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T17:31:08.409831158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T18:51:43.568663158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T20:12:18.724586158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T21:32:53.982595158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-26T22:53:29.215181158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T00:14:04.470776158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T01:34:39.628448158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T02:55:14.812808158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T04:15:49.973632158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T05:36:25.198387158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T06:57:00.354727158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T08:17:35.512653158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T09:38:10.672064158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T10:58:45.830045158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T12:19:21.003636158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T13:39:56.295427158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin2: user: warning: [2024-03-27T15:00:31.457877158Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}

+ 2641 - 0
dezendorf/homelab/talos/dmesg.ceph-thin3.txt

@@ -0,0 +1,2641 @@
+ceph-thin3: kern:  notice: [2024-03-10T02:30:04.839420033Z]: Linux version 6.1.61-talos (@buildkitsandbox) (gcc (GCC) 12.3.0, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT_DYNAMIC Wed Nov  8 10:39:42 UTC 2023
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: Command line: talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-provided physical RAM map:
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x0000000000000000-0x000000000009718f] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x0000000000097190-0x000000000009719f] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000000971a0-0x000000000009d7ff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x0000000000100000-0x00000000ddf75fff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000ddf76000-0x00000000de06ffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000de070000-0x00000000de0a9fff] ACPI data
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000de0aa000-0x00000000de56bfff] ACPI NVS
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000de56c000-0x00000000de853fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: BIOS-e820: [mem 0x0000000100000000-0x00000002feffffff] usable
+ceph-thin3: kern:  notice: [2024-03-10T02:30:04.839420033Z]: random: crng init done
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: NX (Execute Disable) protection: active
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.839420033Z]: e820: update [mem 0x00091190-0x0009119f] usable ==> usable
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.839420033Z]: e820: update [mem 0x00091190-0x0009119f] usable ==> usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: extended physical RAM map:
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x0000000000000000-0x000000000009118f] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x0000000000091190-0x000000000009119f] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000000911a0-0x000000000009718f] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x0000000000097190-0x000000000009719f] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000000971a0-0x000000000009d7ff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x000000000009d800-0x000000000009ffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000000e0000-0x00000000000fffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x0000000000100000-0x00000000ddf75fff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000ddf76000-0x00000000de06ffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000de070000-0x00000000de0a9fff] ACPI data
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000de0aa000-0x00000000de56bfff] ACPI NVS
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000de56c000-0x00000000de853fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: reserve setup_data: [mem 0x0000000100000000-0x00000002feffffff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: SMBIOS 2.8 present.
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: DMI: HP HP t630 Thin Client/8158, BIOS M40 v01.09 09/03/2018
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: tsc: Fast TSC calibration using PIT
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.839420033Z]: tsc: Detected 1996.162 MHz processor
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.842897033Z]: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.842909033Z]: e820: remove [mem 0x000a0000-0x000fffff] usable
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.842957033Z]: last_pfn = 0x2ff000 max_arch_pfn = 0x400000000
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.843330033Z]: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.843809033Z]: e820: update [mem 0xdf000000-0xffffffff] usable ==> reserved
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.843836033Z]: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.861640033Z]: found SMP MP-table at [mem 0x000fcbe0-0x000fcbef]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.861702033Z]: Kernel/User page tables isolation: force enabled on command line.
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.861708033Z]: Using GB pages for direct mapping
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863895033Z]: RAMDISK: [mem 0xd5e6f000-0xd97fffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863907033Z]: ACPI: Early table checksum verification disabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863915033Z]: ACPI: RSDP 0x00000000000F05B0 000024 (v02 HPQOEM)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863930033Z]: ACPI: XSDT 0x00000000DE08C098 0000AC (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863951033Z]: ACPI: FACP 0x00000000DE09C9F0 00010C (v05 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern: warning: [2024-03-10T02:30:04.863968033Z]: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20220331/tbfadt-615)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863985033Z]: ACPI: DSDT 0x00000000DE08C1D0 010819 (v02 HPQOEM SLIC-WKS 01072009 INTL 20120913)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.863998033Z]: ACPI: FACS 0x00000000DE56AC80 000040
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864009033Z]: ACPI: APIC 0x00000000DE09CB00 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864021033Z]: ACPI: FPDT 0x00000000DE09CB80 000044 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864033033Z]: ACPI: FIDT 0x00000000DE09CBC8 00009C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864044033Z]: ACPI: MSDM 0x00000000DE09CC68 000055 (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864055033Z]: ACPI: MCFG 0x00000000DE09CCC0 00003C (v01 HPQOEM SLIC-WKS 01072009 MSFT 00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864067033Z]: ACPI: SLIC 0x00000000DE09CD00 000176 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864078033Z]: ACPI: HPET 0x00000000DE09CE78 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI  00000005)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864089033Z]: ACPI: UEFI 0x00000000DE09CEB0 000042 (v01                 00000000      00000000)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864101033Z]: ACPI: IVRS 0x00000000DE09CEF8 0000D0 (v02 AMD    AGESA    00000001 AMD  00000000)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864113033Z]: ACPI: SSDT 0x00000000DE09CFC8 000843 (v01 HPQOEM SLIC-WKS 00000001 INTL 20120913)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864125033Z]: ACPI: TPM2 0x00000000DE09D810 000034 (v03        Tpm2Tabl 00000001 AMI  00000000)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864136033Z]: ACPI: SSDT 0x00000000DE09D848 000DA8 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864147033Z]: ACPI: SSDT 0x00000000DE09E5F0 00873A (v02 AMD    AGESA    00000002 MSFT 04000000)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864158033Z]: ACPI: CRAT 0x00000000DE0A6D30 000528 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864169033Z]: ACPI: SSDT 0x00000000DE0A7258 00147F (v01 AMD    CPMDFIGP 00000001 INTL 20120913)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864181033Z]: ACPI: SSDT 0x00000000DE0A86D8 0015F0 (v01 AMD    CPMCMN   00000001 INTL 20120913)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864191033Z]: ACPI: Reserving FACP table memory at [mem 0xde09c9f0-0xde09cafb]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864197033Z]: ACPI: Reserving DSDT table memory at [mem 0xde08c1d0-0xde09c9e8]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864203033Z]: ACPI: Reserving FACS table memory at [mem 0xde56ac80-0xde56acbf]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864207033Z]: ACPI: Reserving APIC table memory at [mem 0xde09cb00-0xde09cb7d]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864211033Z]: ACPI: Reserving FPDT table memory at [mem 0xde09cb80-0xde09cbc3]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864215033Z]: ACPI: Reserving FIDT table memory at [mem 0xde09cbc8-0xde09cc63]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864219033Z]: ACPI: Reserving MSDM table memory at [mem 0xde09cc68-0xde09ccbc]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864223033Z]: ACPI: Reserving MCFG table memory at [mem 0xde09ccc0-0xde09ccfb]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864226033Z]: ACPI: Reserving SLIC table memory at [mem 0xde09cd00-0xde09ce75]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864230033Z]: ACPI: Reserving HPET table memory at [mem 0xde09ce78-0xde09ceaf]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864234033Z]: ACPI: Reserving UEFI table memory at [mem 0xde09ceb0-0xde09cef1]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864238033Z]: ACPI: Reserving IVRS table memory at [mem 0xde09cef8-0xde09cfc7]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864242033Z]: ACPI: Reserving SSDT table memory at [mem 0xde09cfc8-0xde09d80a]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864246033Z]: ACPI: Reserving TPM2 table memory at [mem 0xde09d810-0xde09d843]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864249033Z]: ACPI: Reserving SSDT table memory at [mem 0xde09d848-0xde09e5ef]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864253033Z]: ACPI: Reserving SSDT table memory at [mem 0xde09e5f0-0xde0a6d29]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864257033Z]: ACPI: Reserving CRAT table memory at [mem 0xde0a6d30-0xde0a7257]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864261033Z]: ACPI: Reserving SSDT table memory at [mem 0xde0a7258-0xde0a86d6]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864265033Z]: ACPI: Reserving SSDT table memory at [mem 0xde0a86d8-0xde0a9cc7]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864377033Z]: No NUMA configuration found
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864381033Z]: Faking a node at [mem 0x0000000000000000-0x00000002feffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864397033Z]: NODE_DATA(0) allocated [mem 0x2feffa000-0x2feffdfff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864535033Z]: Zone ranges:
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864538033Z]:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864545033Z]:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864552033Z]:   Normal   [mem 0x0000000100000000-0x00000002feffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864557033Z]: Movable zone start for each node
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864560033Z]: Early memory node ranges
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864562033Z]:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864568033Z]:   node   0: [mem 0x0000000000100000-0x00000000ddf75fff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864573033Z]:   node   0: [mem 0x00000000de854000-0x00000000deffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864577033Z]:   node   0: [mem 0x0000000100000000-0x00000002feffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864586033Z]: Initmem setup node 0 [mem 0x0000000000001000-0x00000002feffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864604033Z]: On node 0, zone DMA: 1 pages in unavailable ranges
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.864715033Z]: On node 0, zone DMA: 99 pages in unavailable ranges
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.890159033Z]: On node 0, zone DMA32: 2270 pages in unavailable ranges
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.948828033Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.948954033Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949055033Z]: ACPI: PM-Timer IO Port: 0x808
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949077033Z]: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949094033Z]: IOAPIC[0]: apic_id 0, version 33, address 0xfec00000, GSI 0-23
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949106033Z]: IOAPIC[1]: apic_id 1, version 33, address 0xfec01000, GSI 24-55
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949114033Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949121033Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949137033Z]: ACPI: Using ACPI (MADT) for SMP configuration information
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949141033Z]: ACPI: HPET id: 0x10228201 base: 0xfed00000
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949155033Z]: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949247033Z]: [mem 0xdf000000-0xf7ffffff] available for PCI devices
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949253033Z]: Booting paravirtualized kernel on bare hardware
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.949260033Z]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.980593033Z]: setup_percpu: NR_CPUS:512 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.981516033Z]: percpu: Embedded 56 pages/cpu s192080 r8192 d29104 u524288
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.981542033Z]: pcpu-alloc: s192080 r8192 d29104 u524288 alloc=1*2097152
+ceph-thin3: kern:   debug: [2024-03-10T02:30:04.981552033Z]: pcpu-alloc: [0] 0 1 2 3 
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.981643033Z]: Fallback order for Node 0: 0 
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.981653033Z]: Built 1 zonelists, mobility grouping on.  Total pages: 2956997
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.981660033Z]: Policy zone: Normal
+ceph-thin3: kern:  notice: [2024-03-10T02:30:04.981664033Z]: Kernel command line: talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin3: kern:  notice: [2024-03-10T02:30:04.982655033Z]: Unknown kernel command line parameters "pti=on", will be passed to user space.
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.987667033Z]: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.990187033Z]: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.990271033Z]: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
+ceph-thin3: kern:    info: [2024-03-10T02:30:04.990323033Z]: software IO TLB: area num 4.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.118096033Z]: Memory: 11608636K/12016376K available (28692K kernel code, 3989K rwdata, 17468K rodata, 3088K init, 2692K bss, 407480K reserved, 0K cma-reserved)
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.118613033Z]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.118658033Z]: Kernel/User page tables isolation: enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.118764033Z]: ftrace: allocating 82001 entries in 321 pages
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.182615033Z]: ftrace: allocated 321 pages with 3 groups
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188179033Z]: Dynamic Preempt: voluntary
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188301033Z]: rcu: Preemptible hierarchical RCU implementation.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188304033Z]: rcu: \x09RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188309033Z]: \x09Trampoline variant of Tasks RCU enabled.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188311033Z]: \x09Rude variant of Tasks RCU enabled.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188313033Z]: \x09Tracing variant of Tasks RCU enabled.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188316033Z]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.188319033Z]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.214121033Z]: NR_IRQS: 33024, nr_irqs: 1000, preallocated irqs: 16
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.214439033Z]: rcu: srcu_init: Setting srcu_struct sizes based on contention.
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.214837033Z]: Console: colour dummy device 80x25
+ceph-thin3: kern:    info: [2024-03-10T02:30:05.216045033Z]: printk: console [tty0] enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:18.795710033Z]: printk: console [ttyS0] enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:18.845832033Z]: ACPI: Core revision 20220331
+ceph-thin3: kern:    info: [2024-03-10T02:30:18.893201033Z]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.002615033Z]: APIC: Switch to symmetric I/O mode setup
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.062646033Z]: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.154623033Z]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c09b755c, max_idle_ns: 881590608112 ns
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.280701033Z]: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.32 BogoMIPS (lpj=7984648)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.284760033Z]: LVT offset 1 assigned for vector 0xf9
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.288712033Z]: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.292692033Z]: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.296701033Z]: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.300698033Z]: Spectre V2 : Mitigation: Retpolines
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.304692033Z]: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.308692033Z]: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.312692033Z]: Spectre V2 : Enabling Speculation Barrier for firmware calls
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.316693033Z]: RETBleed: Mitigation: untrained return thunk
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.320697033Z]: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.324697033Z]: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.328706033Z]: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.332692033Z]: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.336692033Z]: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.340694033Z]: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.344692033Z]: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.397744033Z]: Freeing SMP alternatives memory: 68K
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.400695033Z]: pid_max: default: 32768 minimum: 301
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.404802033Z]: LSM: Security Framework initializing
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.408709033Z]: Yama: becoming mindful.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.412836033Z]: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.416767033Z]: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.533339033Z]: smpboot: CPU0: AMD Embedded G-Series GX-420GI Radeon R7E (family: 0x15, model: 0x60, stepping: 0x1)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.537178033Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.540693033Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.544764033Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.548692033Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.552750033Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.556692033Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.560747033Z]: Performance Events: Fam15h core perfctr, AMD PMU driver.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.564695033Z]: ... version:                0
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.568692033Z]: ... bit width:              48
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.572692033Z]: ... generic registers:      6
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.576691033Z]: ... value mask:             0000ffffffffffff
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.580692033Z]: ... max period:             00007fffffffffff
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.584691033Z]: ... fixed-purpose events:   0
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.588691033Z]: ... event mask:             000000000000003f
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.597155033Z]: signal: max sigframe size: 1776
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.600768033Z]: rcu: Hierarchical SRCU implementation.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.604693033Z]: rcu: \x09Max phase no-delay instances is 1000.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.609271033Z]: MCE: In-kernel MCE decoding enabled.
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.612855033Z]: smp: Bringing up secondary CPUs ...
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.617048033Z]: x86: Booting SMP configuration:
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.620693033Z]: .... node  #0, CPUs:      #1 #2 #3
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.631187033Z]: smp: Brought up 1 node, 4 CPUs
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.636700033Z]: smpboot: Max logical packages: 1
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.640693033Z]: smpboot: Total of 4 processors activated (15969.29 BogoMIPS)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.646751033Z]: devtmpfs: initialized
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.653302033Z]: ACPI: PM: Registering ACPI NVS region [mem 0xde0aa000-0xde56bfff] (4988928 bytes)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.657094033Z]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.660740033Z]: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.665123033Z]: PM: RTC time: 02:30:06, date: 2024-03-10
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.673894033Z]: NET: Registered PF_NETLINK/PF_ROUTE protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.677631033Z]: audit: initializing netlink subsys (disabled)
+ceph-thin3: kern:  notice: [2024-03-10T02:30:19.680775033Z]: audit: type=2000 audit(1710037788.428:1): state=initialized audit_enabled=0 res=1
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.681025033Z]: thermal_sys: Registered thermal governor 'step_wise'
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.684696033Z]: thermal_sys: Registered thermal governor 'user_space'
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.688743033Z]: cpuidle: using governor menu
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.809114033Z]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.884826033Z]: dca service started, version 1.12.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:19.940711033Z]: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.052693033Z]: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.132719033Z]: PCI: Using configuration type 1 for base access
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.210483033Z]: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.216793033Z]: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.296743033Z]: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.373090033Z]: cryptd: max_cpu_qlen set to 1000
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.424876033Z]: ACPI: Added _OSI(Module Device)
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.472693033Z]: ACPI: Added _OSI(Processor Device)
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.528692033Z]: ACPI: Added _OSI(3.0 _SCP Extensions)
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.584690033Z]: ACPI: Added _OSI(Processor Aggregator Device)
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.667793033Z]: ACPI: 6 ACPI AML tables successfully acquired and loaded
+ceph-thin3: kern:  notice: [2024-03-10T02:30:20.747591033Z]: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.827644033Z]: ACPI: Interpreter enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.868726033Z]: ACPI: PM: (supports S0 S3 S5)
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.916693033Z]: ACPI: Using IOAPIC for interrupt routing
+ceph-thin3: kern:    info: [2024-03-10T02:30:20.976748033Z]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.088692033Z]: PCI: Using E820 reservations for host bridge windows
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.161060033Z]: ACPI: Enabled 5 GPEs in block 00 to 1F
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.224243033Z]: ACPI: PM: Power Resource [P0SD]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.272765033Z]: ACPI: PM: Power Resource [P3SD]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.324835033Z]: ACPI: PM: Power Resource [P0U2]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.372738033Z]: ACPI: PM: Power Resource [P3U2]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.424925033Z]: ACPI: PM: Power Resource [P0U3]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.472744033Z]: ACPI: PM: Power Resource [P3U3]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.525042033Z]: ACPI: PM: Power Resource [P0ST]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.572749033Z]: ACPI: PM: Power Resource [P3ST]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.624851033Z]: ACPI: PM: Power Resource [P0SA]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.676737033Z]: ACPI: PM: Power Resource [P3SA]
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.731604033Z]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.804702033Z]: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.912823033Z]: acpi PNP0A08:00: _OSC: platform does not support [LTR]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:21.988916033Z]: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.084730033Z]: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.209301033Z]: PCI host bridge to bus 0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.256692033Z]: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.340692033Z]: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.420692033Z]: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.500691033Z]: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.584692033Z]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.672691033Z]: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.764691033Z]: pci_bus 0000:00: root bus resource [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.852698033Z]: pci_bus 0000:00: root bus resource [bus 00-ff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.916902033Z]: pci 0000:00:00.0: [1022:1576] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:22.988860033Z]: pci 0000:00:00.2: [1022:1577] type 00 class 0x080600
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.060863033Z]: pci 0000:00:01.0: [1002:9874] type 00 class 0x030000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.132705033Z]: pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.220700033Z]: pci 0000:00:01.0: reg 0x18: [mem 0xf0000000-0xf07fffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.308697033Z]: pci 0000:00:01.0: reg 0x20: [io  0xf000-0xf0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.372697033Z]: pci 0000:00:01.0: reg 0x24: [mem 0xfeb00000-0xfeb3ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.448697033Z]: pci 0000:00:01.0: reg 0x30: [mem 0xfeb40000-0xfeb5ffff pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.528712033Z]: pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.628692033Z]: pci 0000:00:01.0: pci_fixup_video+0x0/0xe0 took 97656 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.708729033Z]: pci 0000:00:01.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.760691033Z]: pci 0000:00:01.0: PME# supported from D1 D2 D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.828841033Z]: pci 0000:00:01.1: [1002:9840] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.900704033Z]: pci 0000:00:01.1: reg 0x10: [mem 0xfeb64000-0xfeb67fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:23.980757033Z]: pci 0000:00:01.1: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.032773033Z]: pci 0000:00:02.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.104795033Z]: pci 0000:00:02.2: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.176780033Z]: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.248836033Z]: pci 0000:00:03.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.320805033Z]: pci 0000:00:08.0: [1022:1578] type 00 class 0x108000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.392702033Z]: pci 0000:00:08.0: reg 0x10: [mem 0xf0800000-0xf081ffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.480696033Z]: pci 0000:00:08.0: reg 0x18: [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.556696033Z]: pci 0000:00:08.0: reg 0x1c: [mem 0xfeb6f000-0xfeb6ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.632700033Z]: pci 0000:00:08.0: reg 0x24: [mem 0xfeb6a000-0xfeb6bfff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.704822033Z]: pci 0000:00:09.0: [1022:157d] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.776792033Z]: pci 0000:00:09.2: [1022:157a] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.848704033Z]: pci 0000:00:09.2: reg 0x10: [mem 0xfeb60000-0xfeb63fff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.924740033Z]: pci 0000:00:09.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:24.996826033Z]: pci 0000:00:10.0: [1022:7914] type 00 class 0x0c0330
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.068715033Z]: pci 0000:00:10.0: reg 0x10: [mem 0xfeb68000-0xfeb69fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.152818033Z]: pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.224840033Z]: pci 0000:00:11.0: [1022:7901] type 00 class 0x010601
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.296707033Z]: pci 0000:00:11.0: reg 0x10: [io  0xf140-0xf147]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.364699033Z]: pci 0000:00:11.0: reg 0x14: [io  0xf130-0xf133]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.428699033Z]: pci 0000:00:11.0: reg 0x18: [io  0xf120-0xf127]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.496699033Z]: pci 0000:00:11.0: reg 0x1c: [io  0xf110-0xf113]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.564699033Z]: pci 0000:00:11.0: reg 0x20: [io  0xf100-0xf10f]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.628699033Z]: pci 0000:00:11.0: reg 0x24: [mem 0xfeb6d000-0xfeb6d3ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.704735033Z]: pci 0000:00:11.0: PME# supported from D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.768824033Z]: pci 0000:00:12.0: [1022:7908] type 00 class 0x0c0320
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.840706033Z]: pci 0000:00:12.0: reg 0x10: [mem 0xfeb6c000-0xfeb6c0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.916775033Z]: pci 0000:00:12.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:25.964690033Z]: pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.044803033Z]: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.116862033Z]: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.188915033Z]: pci 0000:00:18.0: [1022:1570] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.260771033Z]: pci 0000:00:18.1: [1022:1571] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.332767033Z]: pci 0000:00:18.2: [1022:1572] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.404778033Z]: pci 0000:00:18.3: [1022:1573] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.476773033Z]: pci 0000:00:18.4: [1022:1574] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.548769033Z]: pci 0000:00:18.5: [1022:1575] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.620851033Z]: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.692709033Z]: pci 0000:01:00.0: reg 0x10: [io  0xe000-0xe0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.760716033Z]: pci 0000:01:00.0: reg 0x18: [mem 0xfea04000-0xfea04fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.840711033Z]: pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.924796033Z]: pci 0000:01:00.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:26.976690033Z]: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.052916033Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.112699033Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.188704033Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.270100033Z]: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.340782033Z]: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.412768033Z]: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.480770033Z]: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.552764033Z]: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.624751033Z]: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.696753033Z]: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.764751033Z]: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.836950033Z]: iommu: Default domain type: Translated 
+ceph-thin3: kern:    info: [2024-03-10T02:30:27.896692033Z]: iommu: DMA domain TLB invalidation policy: lazy mode 
+ceph-thin3: kern:  notice: [2024-03-10T02:30:27.968859033Z]: SCSI subsystem initialized
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.012716033Z]: libata version 3.00 loaded.
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.012754033Z]: ACPI: bus type USB registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.060732033Z]: usbcore: registered new interface driver usbfs
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.128710033Z]: usbcore: registered new interface driver hub
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.192702033Z]: usbcore: registered new device driver usb
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.252719033Z]: pps_core: LinuxPPS API ver. 1 registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.312691033Z]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.420696033Z]: PTP clock support registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.468724033Z]: EDAC MC: Ver: 3.0.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.505060033Z]: NET: Registered PF_ATMPVC protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.568693033Z]: NET: Registered PF_ATMSVC protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.628704033Z]: NetLabel: Initializing
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.668690033Z]: NetLabel:  domain hash size = 128
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.720691033Z]: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.788725033Z]: NetLabel:  unlabeled traffic allowed by default
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.856716033Z]: PCI: Using ACPI for IRQ routing
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.908953033Z]: PCI: pci_cache_line_size set to 64 bytes
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.909012033Z]: e820: reserve RAM buffer [mem 0x00091190-0x0009ffff]
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.909018033Z]: e820: reserve RAM buffer [mem 0x00097190-0x0009ffff]
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.909020033Z]: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.909022033Z]: e820: reserve RAM buffer [mem 0xddf76000-0xdfffffff]
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.909025033Z]: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
+ceph-thin3: kern:   debug: [2024-03-10T02:30:28.909028033Z]: e820: reserve RAM buffer [mem 0x2ff000000-0x2ffffffff]
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.909058033Z]: pci 0000:00:01.0: vgaarb: setting as boot VGA device
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.912688033Z]: pci 0000:00:01.0: vgaarb: bridge control possible
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:28.912688033Z]: pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.148701033Z]: vgaarb: loaded
+ceph-thin3: kern: warning: [2024-03-10T02:30:29.181234033Z]: acpi PNP0C14:01: duplicate WMI GUID 5FB7F034-2C63-45E9-BE91-3D44E2C707E4 (first instance was on PNP0C14:00)
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0C14:01
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.313055033Z]: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.372691033Z]: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.444702033Z]: clocksource: Switched to clocksource tsc-early
+ceph-thin3: kern:  notice: [2024-03-10T02:30:29.575151033Z]: VFS: Disk quotas dquot_6.6.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.622121033Z]: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.704627033Z]: pnp: PnP ACPI init
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.741389033Z]: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.820774033Z]: system 00:01: [mem 0xc0000000-0xdfffffff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:01
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.904321033Z]: system 00:02: [mem 0xfeb80000-0xfebfffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:02
+ceph-thin3: kern:    info: [2024-03-10T02:30:29.984168033Z]: system 00:04: [io  0x0a00-0x0a1f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.055115033Z]: system 00:04: [io  0x0a20-0x0a2f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.126087033Z]: system 00:04: [io  0x0e00-0x0efe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.196967033Z]: system 00:04: [io  0x0a40-0x0a5f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.267849033Z]: system 00:04: [io  0x0a60-0x0a7f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.338731033Z]: system 00:04: [io  0x0a80-0x0a9f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.409603033Z]: system 00:04: [io  0x0a30-0x0a3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin3: kern:   debug: [2024-03-10T02:30:30.480934033Z]: pnp 00:07: [dma 0 disabled]
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:07
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.481494033Z]: system 00:08: [io  0x04d0-0x04d1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.552407033Z]: system 00:08: [io  0x040b] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.616084033Z]: system 00:08: [io  0x04d6] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.679671033Z]: system 00:08: [io  0x0c00-0x0c01] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.750541033Z]: system 00:08: [io  0x0c14] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.814121033Z]: system 00:08: [io  0x0c50-0x0c51] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.884987033Z]: system 00:08: [io  0x0c52] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:30.948553033Z]: system 00:08: [io  0x0c6c] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.012121033Z]: system 00:08: [io  0x0c6f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.075696033Z]: system 00:08: [io  0x0cd0-0x0cd1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.146643033Z]: system 00:08: [io  0x0cd2-0x0cd3] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.217492033Z]: system 00:08: [io  0x0cd4-0x0cd5] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.288351033Z]: system 00:08: [io  0x0cd6-0x0cd7] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.359312033Z]: system 00:08: [io  0x0cd8-0x0cdf] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.430157033Z]: system 00:08: [io  0x0800-0x089f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.501014033Z]: system 00:08: [io  0x0b00-0x0b0f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.571865033Z]: system 00:08: [io  0x0b20-0x0b3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.642733033Z]: system 00:08: [io  0x0900-0x090f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.713702033Z]: system 00:08: [io  0x0910-0x091f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.784562033Z]: system 00:08: [io  0xfe00-0xfefe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.855444033Z]: system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:31.938891033Z]: system 00:08: [mem 0xfec01000-0xfec01fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.022246033Z]: system 00:08: [mem 0xfedc0000-0xfedc0fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.101451033Z]: system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.180732033Z]: system 00:08: [mem 0xfed80000-0xfed8ffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.259924033Z]: system 00:08: [mem 0xfed61000-0xfed70fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.339125033Z]: system 00:08: [mem 0xfec10000-0xfec10fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.418403033Z]: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.498396033Z]: pnp: PnP ACPI: found 9 devices
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.556549033Z]: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.662931033Z]: NET: Registered PF_INET protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.722124033Z]: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.818444033Z]: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:32.921851033Z]: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.015028033Z]: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.113142033Z]: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.202902033Z]: TCP: Hash tables configured (established 131072 bind 65536)
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.282402033Z]: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.363922033Z]: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.450595033Z]: NET: Registered PF_UNIX/PF_LOCAL protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.518761033Z]: RPC: Registered named UNIX socket transport module.
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.589709033Z]: RPC: Registered udp transport module.
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.646105033Z]: RPC: Registered tcp transport module.
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.702410033Z]: RPC: Registered tcp NFSv4.1 backchannel transport module.
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.779650033Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.839153033Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.912223033Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:33.993610033Z]: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.067695033Z]: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.141802033Z]: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.215899033Z]: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.289900033Z]: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.372322033Z]: pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.454753033Z]: pci_bus 0000:00: resource 10 [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.538222033Z]: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.605045033Z]: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.680392033Z]: pci 0000:00:01.1: D0 power state depends on 0000:00:01.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.756491033Z]: pci 0000:00:01.1: quirk_gpu_hda+0x0/0x10 took 74367 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.834101033Z]: pci 0000:00:10.0: PME# does not work under D0, disabling it
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:34.913326033Z]: pci 0000:00:10.0: pci_fixup_amd_fch_xhci_pme+0x0/0x29 took 77369 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.004273033Z]: PCI: CLS 64 bytes, default 64
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.052638033Z]: Unpacking initramfs...
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.055520033Z]: AMD-Vi: Using global IVHD EFR:0x77ef22294ada, EFR2:0x0
+ceph-thin3: kern: warning: [2024-03-10T02:30:35.167577033Z]: AMD-Vi: [Firmware Warn]: EFR mismatch. Use IVHD EFR (0x37ef22294ada : 0x77ef22294ada), EFR2 (0x0 : 0x0).
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.293667033Z]: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.376208033Z]: pci 0000:00:01.0: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.436763033Z]: pci 0000:00:01.1: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.497351033Z]: pci 0000:00:02.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.557905033Z]: pci 0000:00:02.2: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.618476033Z]: pci 0000:00:03.0: Adding to iommu group 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.679048033Z]: pci 0000:00:08.0: Adding to iommu group 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.739640033Z]: pci 0000:00:09.0: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.800185033Z]: pci 0000:00:09.2: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.860750033Z]: pci 0000:00:10.0: Adding to iommu group 5
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.921318033Z]: pci 0000:00:11.0: Adding to iommu group 6
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:35.981881033Z]: pci 0000:00:12.0: Adding to iommu group 7
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.042467033Z]: pci 0000:00:14.0: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.103033033Z]: pci 0000:00:14.3: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.163631033Z]: pci 0000:00:18.0: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.224161033Z]: pci 0000:00:18.1: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.284729033Z]: pci 0000:00:18.2: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.345293033Z]: pci 0000:00:18.3: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.405857033Z]: pci 0000:00:18.4: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.466423033Z]: pci 0000:00:18.5: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.526969033Z]: pci 0000:01:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.589389033Z]: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.655173033Z]: AMD-Vi: Extended features (0x77ef22294ada, 0x0): PPR NX GT IA GA PC GA_vAPIC
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.752333033Z]: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.829503033Z]: software IO TLB: mapped [mem 0x00000000d9f76000-0x00000000ddf76000] (64MB)
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.924711033Z]: LVT offset 0 assigned for vector 0x400
+ceph-thin3: kern:    info: [2024-03-10T02:30:36.982209033Z]: perf: AMD IBS detected (0x000007ff)
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.036410033Z]: amd_uncore: 4  amd_nb counters detected
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.126188033Z]: Freeing initrd memory: 58948K
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.174536033Z]: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
+ceph-thin3: kern:     err: [2024-03-10T02:30:37.260033033Z]: kvm: no hardware support for 'kvm_intel'
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.319650033Z]: SVM: TSC scaling supported
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.364564033Z]: kvm: Nested Virtualization enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.417827033Z]: SVM: kvm: Nested Paging enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.467884033Z]: SVM: Virtual GIF supported
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.512731033Z]: SVM: LBR virtualization supported
+ceph-thin3: kern:  notice: [2024-03-10T02:30:37.581592033Z]: Initialise system trusted keyrings
+ceph-thin3: kern:  notice: [2024-03-10T02:30:37.634809033Z]: Key type blacklist registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.683021033Z]: workingset: timestamp_bits=40 max_order=22 bucket_order=0
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.764107033Z]: squashfs: version 4.0 (2009/01/31) Phillip Lougher
+ceph-thin3: kern:  notice: [2024-03-10T02:30:37.834484033Z]: NFS: Registering the id_resolver key type
+ceph-thin3: kern:  notice: [2024-03-10T02:30:37.894978033Z]: Key type id_resolver registered
+ceph-thin3: kern:  notice: [2024-03-10T02:30:37.945125033Z]: Key type id_legacy registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:37.993153033Z]: nfs4filelayout_init: NFSv4 File Layout Driver Registering...
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.073472033Z]: nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
+ceph-thin3: kern:  notice: [2024-03-10T02:30:38.162658033Z]: Key type cifs.spnego registered
+ceph-thin3: kern:  notice: [2024-03-10T02:30:38.212819033Z]: Key type cifs.idmap registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.262064033Z]: fuse: init (API version 7.37)
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.310390033Z]: SGI XFS with ACLs, security attributes, quota, no debug enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.395018033Z]: ceph: loaded (mds proto 32)
+ceph-thin3: kern:  notice: [2024-03-10T02:30:38.441089033Z]: integrity: Platform Keyring initialized
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.517095033Z]: NET: Registered PF_ALG protocol family
+ceph-thin3: kern:  notice: [2024-03-10T02:30:38.574499033Z]: Key type asymmetric registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.613658033Z]: tsc: Refined TSC clocksource calibration: 1996.251 MHz
+ceph-thin3: kern:  notice: [2024-03-10T02:30:38.623622033Z]: Asymmetric key parser 'x509' registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.623633033Z]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cb1e4d56, max_idle_ns: 881590790753 ns
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.697772033Z]: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.964639033Z]: clocksource: Switched to clocksource tsc
+ceph-thin3: kern:    info: [2024-03-10T02:30:38.964767033Z]: io scheduler mq-deadline registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.078504033Z]: io scheduler kyber registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.127923033Z]: pcieport 0000:00:02.2: PME: Signaling with IRQ 26
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.197291033Z]: hv_vmbus: registering driver hyperv_fb
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.254811033Z]: IPMI message handler: version 39.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.308132033Z]: ipmi device interface
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.348052033Z]: ipmi_si: IPMI System Interface driver
+ceph-thin3: kern: warning: [2024-03-10T02:30:39.404560033Z]: ipmi_si: Unable to find any System Interface(s)
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.471300033Z]: IPMI poweroff: Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.579399033Z]: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.679532033Z]: ACPI: button: Power Button [PWRB]
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.731800033Z]: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.820509033Z]: ACPI: button: Power Button [PWRF]
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.872895033Z]: ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
+ceph-thin3: kern:    info: [2024-03-10T02:30:39.961795033Z]: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.072025033Z]: ioatdma: Intel(R) QuickData Technology Driver 5.00
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.142274033Z]: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.217500033Z]: 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.306420033Z]: Non-volatile memory driver v1.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.356543033Z]: Linux agpgart interface v0.103
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.410491033Z]: tpm_tis MSFT0101:00: 2.0 TPM (device-id 0x1A, rev-id 16)
+ SUBSYSTEM=platform
+ DEVICE=+platform:MSFT0101:00
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.511048033Z]: ACPI: bus type drm_connector registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.569573033Z]: [drm] amdgpu kernel modesetting enabled.
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.642220033Z]: [drm] initializing kernel modesetting (CARRIZO 0x1002:0x9874 0x103C:0x8158 0x88).
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.744401033Z]: [drm] register mmio base: 0xFEB00000
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.799707033Z]: [drm] register mmio size: 262144
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.851192033Z]: [drm] add ip block number 0 <vi_common>
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.909699033Z]: [drm] add ip block number 1 <gmc_v8_0>
+ceph-thin3: kern:    info: [2024-03-10T02:30:40.967127033Z]: [drm] add ip block number 2 <cz_ih>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.021454033Z]: [drm] add ip block number 3 <gfx_v8_0>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.078906033Z]: [drm] add ip block number 4 <sdma_v3_0>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.137388033Z]: [drm] add ip block number 5 <powerplay>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.195884033Z]: [drm] add ip block number 6 <dm>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.247082033Z]: [drm] add ip block number 7 <uvd_v6_0>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.304527033Z]: [drm] add ip block number 8 <vce_v3_0>
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.377373033Z]: [drm] BIOS signature incorrect 5b 7
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.431794033Z]: amdgpu 0000:00:01.0: amdgpu: Fetched VBIOS from ROM BAR
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.506929033Z]: amdgpu: ATOM BIOS: 113-C75100-X28
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.559181033Z]: [drm] UVD is enabled in physical mode
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.615551033Z]: [drm] VCE enabled in physical mode
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.668812033Z]: amdgpu 0000:00:01.0: vgaarb: deactivate vga console
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.739651033Z]: amdgpu 0000:00:01.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.836672033Z]: [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
+ceph-thin3: kern:    info: [2024-03-10T02:30:41.935648033Z]: amdgpu 0000:00:01.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.048118033Z]: amdgpu 0000:00:01.0: amdgpu: GART: 1024M 0x000000FF00000000 - 0x000000FF3FFFFFFF
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.149248033Z]: [drm] Detected VRAM RAM=512M, BAR=512M
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.206667033Z]: [drm] RAM width 128bits UNKNOWN
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.256809033Z]: [drm] amdgpu: 512M of VRAM memory ready
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.315202033Z]: [drm] amdgpu: 5697M of GTT memory ready.
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.374722033Z]: [drm] GART: num cpu pages 262144, num gpu pages 262144
+ceph-thin3: kern:    info: [2024-03-10T02:30:42.448815033Z]: [drm] PCIE GART of 1024M enabled (table at 0x000000F400A00000).
+ceph-thin3: kern: warning: [2024-03-10T02:30:42.532391033Z]: amdgpu 0000:00:01.0: Direct firmware load for amdgpu/carrizo_pfp.bin failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:     err: [2024-03-10T02:30:42.642856033Z]: amdgpu 0000:00:01.0: amdgpu: gfx8: Failed to load firmware "amdgpu/carrizo_pfp.bin"
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:     err: [2024-03-10T02:30:42.747119033Z]: [drm:gfx_v8_0_sw_init.cold] *ERROR* Failed to load gfx firmware!
+ceph-thin3: kern:     err: [2024-03-10T02:30:42.831610033Z]: [drm:amdgpu_device_init.cold] *ERROR* sw_init of IP block <gfx_v8_0> failed -2
+ceph-thin3: kern:     err: [2024-03-10T02:30:42.930559033Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu_device_ip_init failed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:     err: [2024-03-10T02:30:43.007667033Z]: amdgpu 0000:00:01.0: amdgpu: Fatal error during GPU init
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:43.083734033Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu: finishing device.
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.157844033Z]: ------------[ cut here ]------------
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.213185033Z]: WARNING: CPU: 2 PID: 1 at drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c:655 amdgpu_irq_put+0x45/0x70
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.328900033Z]: Modules linked in:
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.365526033Z]: CPU: 2 PID: 1 Comm: swapper/0 Not tainted 6.1.61-talos #1
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.442733033Z]: Hardware name: HP HP t630 Thin Client/8158, BIOS M40 v01.09 09/03/2018
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.533373033Z]: RIP: 0010:amdgpu_irq_put+0x45/0x70
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.586556033Z]: Code: 48 8b 4e 10 48 83 39 00 74 2c 89 d1 48 8d 04 88 8b 08 85 c9 74 14 f0 ff 08 b8 00 00 00 00 74 05 e9 f0 3d 16 01 e9 8b fd ff ff <0f> 0b b8 ea ff ff ff e9 df 3d 16 01 b8 ea ff ff ff e9 d5 3d 16 01
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.811544033Z]: RSP: 0018:ffffa72f80037c28 EFLAGS: 00010246
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.874084033Z]: RAX: ffff8c4640c5bd40 RBX: ffff8c4647180000 RCX: 0000000000000000
+ceph-thin3: kern: warning: [2024-03-10T02:30:43.959516033Z]: RDX: 0000000000000000 RSI: ffff8c4647180be0 RDI: ffff8c4647180000
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.044940033Z]: RBP: ffff8c4647180010 R08: 0000000000000000 R09: 00000000401ec4fd
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.130379033Z]: R10: 0000000000000003 R11: ffffffff9cd62d48 R12: ffff8c4647180010
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.215908033Z]: R13: 0000000000000001 R14: ffff8c4647180010 R15: ffff8c4647180000
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.301334033Z]: FS:  0000000000000000(0000) GS:ffff8c4833500000(0000) knlGS:0000000000000000
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.398314033Z]: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.467207033Z]: CR2: 0000000000000000 CR3: 00000000bd610000 CR4: 00000000001506e0
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.552734033Z]: Call Trace:
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.581971033Z]:  <TASK>
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.607151033Z]:  ? __warn+0x7d/0xc0
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.644819033Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.690812033Z]:  ? report_bug+0xe6/0x170
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.733681033Z]:  ? handle_bug+0x41/0x70
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.775493033Z]:  ? exc_invalid_op+0x13/0x60
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.821396033Z]:  ? asm_exc_invalid_op+0x16/0x20
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.871550033Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.917533033Z]:  gmc_v8_0_hw_fini+0x17/0xa0
+ceph-thin3: kern: warning: [2024-03-10T02:30:44.963521033Z]:  amdgpu_device_fini_hw+0x1cc/0x2af
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.016797033Z]:  amdgpu_driver_load_kms.cold+0x54/0x6a
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.074231033Z]:  amdgpu_pci_probe+0x125/0x340
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.122303033Z]:  local_pci_probe+0x41/0x80
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.167253033Z]:  pci_device_probe+0xbf/0x230
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.214281033Z]:  ? kernfs_create_link+0x5d/0xa0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.264440033Z]:  ? sysfs_do_create_link_sd+0x6e/0xe0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.319790033Z]:  really_probe+0xc7/0x280
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.362657033Z]:  ? pm_runtime_barrier+0x50/0x90
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.412797033Z]:  __driver_probe_device+0x73/0xf0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.463900033Z]:  driver_probe_device+0x1f/0x90
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.513004033Z]:  __driver_attach+0x84/0x130
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.558893033Z]:  ? __device_attach_driver+0xc0/0xc0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.613216033Z]:  bus_for_each_dev+0x87/0xd0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.659114033Z]:  bus_add_driver+0x186/0x1d0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.705102033Z]:  driver_register+0x89/0xe0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.749952033Z]:  ? drm_sched_fence_slab_init+0x87/0x87
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.807380033Z]:  do_one_initcall+0x59/0x230
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.853281033Z]:  kernel_init_freeable+0x2bb/0x35d
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.905515033Z]:  ? rest_init+0xd0/0xd0
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.946300033Z]:  kernel_init+0x16/0x130
+ceph-thin3: kern: warning: [2024-03-10T02:30:45.988137033Z]:  ret_from_fork+0x22/0x30
+ceph-thin3: kern: warning: [2024-03-10T02:30:46.030919033Z]:  </TASK>
+ceph-thin3: kern: warning: [2024-03-10T02:30:46.057138033Z]: ---[ end trace 0000000000000000 ]---
+ceph-thin3: kern: warning: [2024-03-10T02:30:46.112756033Z]: amdgpu: probe of 0000:00:01.0 failed with error -2
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.182846033Z]: [drm] amdgpu: ttm finalized
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.232482033Z]: loop: module loaded
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.270409033Z]: rbd: loaded (major 252)
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.312420033Z]: Guest personality initialized and is inactive
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.377218033Z]: VMCI host device registered (name=vmci, major=10, minor=126)
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.457590033Z]: Initialized host personality
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.504691033Z]: Loading iSCSI transport class v2.0-870.
+ceph-thin3: kern:  notice: [2024-03-10T02:30:46.563859033Z]: iscsi: registered transport (tcp)
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.616116033Z]: isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.693537033Z]: hv_vmbus: registering driver hv_storvsc
+ceph-thin3: kern:   debug: [2024-03-10T02:30:46.753261033Z]: ahci 0000:00:11.0: version 3.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.753772033Z]: ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.850731033Z]: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp fbs pio slum part 
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.951879033Z]: scsi host0: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host0
+ceph-thin3: kern:    info: [2024-03-10T02:30:46.986945033Z]: scsi host1: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host1
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.021595033Z]: ata1: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d100 irq 19
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.110278033Z]: ata2: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d180 irq 19
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.200946033Z]: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.294775033Z]: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.410741033Z]: tun: Universal TUN/TAP device driver, 1.6
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.471858033Z]: QLogic/NetXen Network Driver v4.0.82
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.527614033Z]: usbcore: registered new interface driver r8152
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.593399033Z]: hv_vmbus: registering driver hv_netvsc
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.650836033Z]: Fusion MPT base driver 3.04.20
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.669679033Z]: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.699949033Z]: Copyright (c) 1999-2008 LSI Corporation
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.699967033Z]: Fusion MPT SAS Host driver 3.04.20
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.774077033Z]: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.833119033Z]: ehci-pci 0000:00:12.0: EHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.886259033Z]: ata1.00: ATA-9: Fanxiang S201 2TB, W0220A0, max UDMA/133
+ceph-thin3: kern:    info: [2024-03-10T02:30:47.959931033Z]: ehci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.022975033Z]: ata1.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.098790033Z]: ehci-pci 0000:00:12.0: debug port 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.187428033Z]: ata2.00: ATA-9: TEAM TM8PS7002T, W0220A0, max UDMA/133
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.269941033Z]: ehci-pci 0000:00:12.0: irq 18, io mem 0xfeb6c000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.324667033Z]: ata2.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.413677033Z]: ehci-pci 0000:00:12.0: USB 2.0 started, EHCI 1.00
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.467360033Z]: ata1.00: configured for UDMA/133
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.549123033Z]: hub 1-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.617762033Z]: scsi 0:0:0:0: Direct-Access     ATA      Fanxiang S201 2T 0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.618852033Z]: ata2.00: configured for UDMA/133
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.668678033Z]: hub 1-0:1.0: 2 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.714032033Z]: sd 0:0:0:0: [sda] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.714159033Z]: sd 0:0:0:0: Attached scsi generic sg0 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.714404033Z]: scsi 1:0:0:0: Direct-Access     ATA      TEAM TM8PS7002T  0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.715213033Z]: sd 1:0:0:0: [sdb] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.715231033Z]: sd 1:0:0:0: [sdb] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:   debug: [2024-03-10T02:30:48.715235033Z]: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.715261033Z]: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.715300033Z]: sd 1:0:0:0: Attached scsi generic sg1 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.715365033Z]: sd 1:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.716903033Z]: sd 1:0:0:0: [sdb] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.811629033Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.861814033Z]: sd 0:0:0:0: [sda] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:48.861917033Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:   debug: [2024-03-10T02:30:48.909856033Z]: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:48.909883033Z]: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.110318033Z]: xhci_hcd 0000:00:10.0: hcc params 0x014040c3 hci version 0x100 quirks 0x0000000000000410
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.163169033Z]: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.169669033Z]: usb 1-1: new high-speed USB device number 2 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.256864033Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.331162033Z]: hub 1-1:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.421989033Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:49.422207033Z]: sd 0:0:0:0: [sda] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.485540033Z]: hub 1-1:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.559560033Z]: xhci_hcd 0000:00:10.0: Host supports USB 3.0 SuperSpeed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.905702033Z]: usb 1-1.3: new high-speed USB device number 3 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:49.932246033Z]: hub 2-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:50.693162033Z]: hub 2-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:50.741988033Z]: usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
+ SUBSYSTEM=usb
+ DEVICE=+usb:usb3
+ceph-thin3: kern:    info: [2024-03-10T02:30:50.839502033Z]: hub 3-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:50.884417033Z]: hub 3-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:50.933144033Z]: usbcore: registered new interface driver cdc_acm
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.000968033Z]: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.097995033Z]: scsi host2: uas
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host2
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.131880033Z]: usbcore: registered new interface driver uas
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.195650033Z]: usbcore: registered new interface driver usb-storage
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.195973033Z]: scsi 2:0:0:0: Direct-Access     SABRENT                   0204 PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.267738033Z]: usbcore: registered new interface driver usbserial_generic
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.368464033Z]: sd 2:0:0:0: Attached scsi generic sg2 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.369550033Z]: sd 2:0:0:0: [sdc] 937703088 512-byte logical blocks: (480 GB/447 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.369558033Z]: sd 2:0:0:0: [sdc] 4096-byte physical blocks
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.369917033Z]: sd 2:0:0:0: [sdc] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:   debug: [2024-03-10T02:30:51.369926033Z]: sd 2:0:0:0: [sdc] Mode Sense: 5f 00 00 08
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.370541033Z]: sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.370669033Z]: sd 2:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern: warning: [2024-03-10T02:30:51.370678033Z]: sd 2:0:0:0: [sdc] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.442872033Z]: usbserial: USB Serial support registered for generic
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.658923033Z]: usb 3-1: new SuperSpeed USB device number 2 using xhci_hcd
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-1
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.716346033Z]: usbcore: registered new interface driver ch341
+ceph-thin3: kern:  notice: [2024-03-10T02:30:51.867712033Z]: sd 2:0:0:0: [sdc] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.899966033Z]: usbserial: USB Serial support registered for ch341-uart
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.911024033Z]: usb-storage 3-1:1.0: USB Mass Storage device detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-1:1.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:51.911304033Z]: scsi host3: usb-storage 3-1:1.0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host3
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.505647033Z]: usbcore: registered new interface driver cp210x
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.572411033Z]: usbserial: USB Serial support registered for cp210x
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.643396033Z]: usbcore: registered new interface driver ftdi_sio
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.712281033Z]: usbserial: USB Serial support registered for FTDI USB Serial Device
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.799952033Z]: usbcore: registered new interface driver pl2303
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.866697033Z]: usbserial: USB Serial support registered for pl2303
+ceph-thin3: kern:    info: [2024-03-10T02:30:52.937862033Z]: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
+ceph-thin3: kern:  notice: [2024-03-10T02:30:53.036999033Z]: scsi 3:0:0:0: Direct-Access     PNY      USB 3.2.1 FD     PMAP PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.038458033Z]: serio: i8042 KBD port at 0x60,0x64 irq 1
+ceph-thin3: kern:  notice: [2024-03-10T02:30:53.134562033Z]: sd 3:0:0:0: Attached scsi generic sg3 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.193487033Z]: serio: i8042 AUX port at 0x60,0x64 irq 12
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.317909033Z]: hv_vmbus: registering driver hyperv_keyboard
+ceph-thin3: kern:  notice: [2024-03-10T02:30:53.318004033Z]: sd 3:0:0:0: [sdd] 242147328 512-byte logical blocks: (124 GB/115 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.381788033Z]: mousedev: PS/2 mouse device common for all mice
+ceph-thin3: kern:  notice: [2024-03-10T02:30:53.471969033Z]: sd 3:0:0:0: [sdd] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.538755033Z]: rtc_cmos 00:03: RTC can wake from S4
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin3: kern:   debug: [2024-03-10T02:30:53.595527033Z]: sd 3:0:0:0: [sdd] Mode Sense: 45 00 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:  notice: [2024-03-10T02:30:53.596215033Z]: sd 3:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.651589033Z]: rtc_cmos 00:03: registered as rtc0
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.766896033Z]:  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6
+ceph-thin3: kern:    info: [2024-03-10T02:30:53.813787033Z]: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin3: kern:  notice: [2024-03-10T02:30:53.868483033Z]: sd 3:0:0:0: [sdd] Attached SCSI removable disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin3: kern:     err: [2024-03-10T02:30:53.959944033Z]: fail to initialize ptp_kvm
+ceph-thin3: kern: warning: [2024-03-10T02:30:54.025777033Z]: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.216895033Z]: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.318302033Z]: sdhci: Secure Digital Host Controller Interface driver
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.392321033Z]: sdhci: Copyright(c) Pierre Ossman
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.444691033Z]: sdhci-pltfm: SDHCI platform and OF driver helper
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.512859033Z]: hid: raw HID events driver (C) Jiri Kosina
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.575367033Z]: usbcore: registered new interface driver usbhid
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.642113033Z]: usbhid: USB HID core driver
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.688900033Z]: hv_utils: Registering HyperV Utility Driver
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.751513033Z]: hv_vmbus: registering driver hv_utils
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.807919033Z]: hv_vmbus: registering driver hv_balloon
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.866523033Z]: NET: Registered PF_LLC protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.923990033Z]: GACT probability NOT on
+ceph-thin3: kern:    info: [2024-03-10T02:30:54.965822033Z]: Mirror/redirect action on
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.009763033Z]: Simple TC action Loaded
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.052040033Z]: netem: version 1.3
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.088737033Z]: u32 classifier
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.121219033Z]:     input device check on
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.165124033Z]:     Actions configured
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.319751033Z]: xt_time: kernel timezone is -0000
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.371982033Z]: IPVS: Registered protocols (TCP, UDP)
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.428435033Z]: IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.516123033Z]: IPVS: ipvs loaded.
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.552738033Z]: IPVS: [rr] scheduler registered.
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.603957033Z]: IPVS: [wrr] scheduler registered.
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.656223033Z]: IPVS: [lc] scheduler registered.
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.707440033Z]: IPVS: [sh] scheduler registered.
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.758829033Z]: ipip: IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.824977033Z]: gre: GRE over IPv4 demultiplexor driver
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.883563033Z]: Initializing XFRM netlink socket
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.935079033Z]: NET: Registered PF_INET6 protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:55.995611033Z]: Segment Routing with IPv6
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.039522033Z]: In-situ OAM (IOAM) with IPv6
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.086622033Z]: mip6: Mobile IPv6
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.122261033Z]: sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.193915033Z]: NET: Registered PF_PACKET protocol family
+ceph-thin3: kern:  notice: [2024-03-10T02:30:56.254546033Z]: Bridge firewalling registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.302693033Z]: NET: Registered PF_APPLETALK protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.366418033Z]: NET: Registered PF_X25 protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.423883033Z]: X25: Linux Version 0.2
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.464715033Z]: RPC: Registered rdma transport module.
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.522139033Z]: RPC: Registered rdma backchannel transport module.
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.592190033Z]: l2tp_core: L2TP core driver, V2.0
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.644351033Z]: NET: Registered PF_PHONET protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.704973033Z]: 8021q: 802.1Q VLAN Support v1.8
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.759968033Z]: DCCP: Activated CCID 2 (TCP-like)
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.812221033Z]: DCCP: Activated CCID 3 (TCP-Friendly Rate Control)
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.882366033Z]: sctp: Hash tables configured (bind 256/256)
+ceph-thin3: kern:    info: [2024-03-10T02:30:56.945412033Z]: NET: Registered PF_RDS protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.003855033Z]: NET: Registered PF_IEEE802154 protocol family
+ceph-thin3: kern:  notice: [2024-03-10T02:30:57.068556033Z]: Key type dns_resolver registered
+ceph-thin3: kern:  notice: [2024-03-10T02:30:57.119747033Z]: Key type ceph registered
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.162751033Z]: libceph: loaded (mon/osd proto 15/24)
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.219178033Z]: openvswitch: Open vSwitch switching datapath
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.283545033Z]: NET: Registered PF_VSOCK protocol family
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.343039033Z]: mpls_gso: MPLS GSO support
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.387987033Z]: x86/pm: family 0x15 cpu detected, MSR saving is needed during suspending.
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.482832033Z]: microcode: CPU0: patch_level=0x0600611a
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.541286033Z]: microcode: CPU1: patch_level=0x0600611a
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.599764033Z]: microcode: CPU2: patch_level=0x0600611a
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.658253033Z]: microcode: CPU3: patch_level=0x0600611a
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.716721033Z]: microcode: Microcode Update Driver: v2.2.
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.716735033Z]: IPI shorthand broadcast: enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.828402033Z]: AVX2 version of gcm_enc/dec engaged.
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.883913033Z]: AES CTR mode by8 optimization enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:57.941209033Z]: sched_clock: Marking stable (39063527502, 14038212855)->(57141278877, -4039538520)
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.044713033Z]: registered taskstats version 1
+ceph-thin3: kern:  notice: [2024-03-10T02:30:58.093787033Z]: Loading compiled-in X.509 certificates
+ceph-thin3: kern:  notice: [2024-03-10T02:30:58.152813033Z]: Loaded X.509 cert 'Sidero Labs, Inc.: Build time throw-away kernel key: 5ec02fb0cf80adf5fd052b049a2f3c73c62e9f08'
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.288287033Z]: ima: Allocated hash algorithm: sha512
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.390804033Z]: ima: No architecture policies found
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.449327033Z]: PM:   Magic number: 0:419:510
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.497571033Z]: printk: console [netcon0] enabled
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.549719033Z]: netconsole: network logging started
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.604476033Z]: acpi_cpufreq: overriding BIOS provided _PSD data
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.683160033Z]: Freeing unused kernel image (initmem) memory: 3088K
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.769716033Z]: Write protecting the kernel read-only data: 49152k
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.840766033Z]: Freeing unused kernel image (text/rodata gap) memory: 2024K
+ceph-thin3: kern:    info: [2024-03-10T02:30:58.920654033Z]: Freeing unused kernel image (rodata/data gap) memory: 964K
+ceph-thin3: kern:    info: [2024-03-10T02:30:59.119683033Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin3: kern:    info: [2024-03-10T02:30:59.196824033Z]: x86/mm: Checking user space page tables
+ceph-thin3: kern:    info: [2024-03-10T02:30:59.369049033Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin3: kern:    info: [2024-03-10T02:30:59.446293033Z]: Run /init as init process
+ceph-thin3: kern:   debug: [2024-03-10T02:30:59.490308033Z]:   with arguments:
+ceph-thin3: kern:   debug: [2024-03-10T02:30:59.490312033Z]:     /init
+ceph-thin3: kern:   debug: [2024-03-10T02:30:59.490315033Z]:   with environment:
+ceph-thin3: kern:   debug: [2024-03-10T02:30:59.490318033Z]:     HOME=/
+ceph-thin3: kern:   debug: [2024-03-10T02:30:59.490321033Z]:     TERM=linux
+ceph-thin3: kern:   debug: [2024-03-10T02:30:59.490325033Z]:     pti=on
+ceph-thin3: user: warning: [2024-03-10T02:30:59.511972033Z]: [talos] [initramfs] TPM manufacturer ID: 49465800
+ceph-thin3: user: warning: [2024-03-10T02:30:59.609290033Z]: [talos] [initramfs] seeded random pool with 256 bytes from the TPM in 28.23753ms
+ceph-thin3: user: warning: [2024-03-10T02:30:59.719051033Z]: [talos] [initramfs] booting Talos v1.5.5
+ceph-thin3: user: warning: [2024-03-10T02:30:59.778540033Z]: [talos] [initramfs] mounting the rootfs
+ceph-thin3: kern:    info: [2024-03-10T02:30:59.837203033Z]: loop0: detected capacity change from 0 to 105192
+ceph-thin3: user: warning: [2024-03-10T02:30:59.919314033Z]: [talos] [initramfs] bind mounting /lib/firmware
+ceph-thin3: user: warning: [2024-03-10T02:30:59.988091033Z]: [talos] [initramfs] entering the rootfs
+ceph-thin3: user: warning: [2024-03-10T02:31:00.046516033Z]: [talos] [initramfs] moving mounts to the new rootfs
+ceph-thin3: user: warning: [2024-03-10T02:31:00.118175033Z]: [talos] [initramfs] changing working directory into /root
+ceph-thin3: user: warning: [2024-03-10T02:31:00.195427033Z]: [talos] [initramfs] moving /root to /
+ceph-thin3: user: warning: [2024-03-10T02:31:00.251771033Z]: [talos] [initramfs] changing root directory
+ceph-thin3: user: warning: [2024-03-10T02:31:00.314402033Z]: [talos] [initramfs] cleaning up initramfs
+ceph-thin3: user: warning: [2024-03-10T02:31:00.384795033Z]: [talos] [initramfs] executing /sbin/init
+ceph-thin3: user: warning: [2024-03-10T02:31:04.706861033Z]: [talos] task setupLogger (1/1): done, 351.8\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:31:04.772744033Z]: [talos] phase logger (1/11): done, 66.281116ms
+ceph-thin3: user: warning: [2024-03-10T02:31:04.838493033Z]: [talos] phase systemRequirements (2/11): 6 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:04.909614033Z]: [talos] task setRLimit (6/6): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:04.967045033Z]: [talos] task setRLimit (6/6): done, 57.452503ms
+ceph-thin3: user: warning: [2024-03-10T02:31:05.033882033Z]: [talos] task mountCgroups (4/6): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:05.094448033Z]: [talos] task enforceKSPPRequirements (1/6): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:05.166458033Z]: [talos] task setupSystemDirectory (2/6): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:05.235363033Z]: [talos] task mountPseudoFilesystems (5/6): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:05.306345033Z]: [talos] task mountBPFFS (3/6): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:05.365079033Z]: [talos] task mountCgroups (4/6): done, 455.464639ms
+ceph-thin3: user: warning: [2024-03-10T02:31:05.436068033Z]: [talos] task mountPseudoFilesystems (5/6): done, 455.56785ms
+ceph-thin3: user: warning: [2024-03-10T02:31:05.516548033Z]: [talos] task setupSystemDirectory (2/6): done, 606.846709ms
+ceph-thin3: user: warning: [2024-03-10T02:31:05.595869033Z]: [talos] task mountBPFFS (3/6): done, 685.639832ms
+ceph-thin3: user: warning: [2024-03-10T02:31:05.711574033Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "127.0.0.1/8", "link": "lo"}
+ceph-thin3: user: warning: [2024-03-10T02:31:05.885579033Z]: [talos] task enforceKSPPRequirements (1/6): done, 805.340506ms
+ceph-thin3: user: warning: [2024-03-10T02:31:05.968751033Z]: [talos] phase systemRequirements (2/11): done, 1.130251763s
+ceph-thin3: user: warning: [2024-03-10T02:31:06.048032033Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:06.216817033Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:06.386669033Z]: [talos] phase integrity (3/11): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:06.448375033Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:06.617246033Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:06.787227033Z]: [talos] task writeIMAPolicy (1/1): starting
+ceph-thin3: kern:  notice: [2024-03-10T02:31:06.849999033Z]: audit: type=1807 audit(1710037835.595:2): action=dont_measure fsmagic=0x9fa0 res=1
+ceph-thin3: kern:    info: [2024-03-10T02:31:06.850279033Z]: ima: policy update completed
+ceph-thin3: kern:  notice: [2024-03-10T02:31:06.953265033Z]: audit: type=1807 audit(1710037835.595:3): action=dont_measure fsmagic=0x62656572 res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.107714033Z]: audit: type=1807 audit(1710037835.595:4): action=dont_measure fsmagic=0x64626720 res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.215114033Z]: audit: type=1807 audit(1710037835.595:5): action=dont_measure fsmagic=0x1021994 res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.321441033Z]: audit: type=1807 audit(1710037835.595:6): action=dont_measure fsmagic=0x1cd1 res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.424691033Z]: audit: type=1807 audit(1710037835.595:7): action=dont_measure fsmagic=0x42494e4d res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.532109033Z]: audit: type=1807 audit(1710037835.595:8): action=dont_measure fsmagic=0x73636673 res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.639529033Z]: audit: type=1807 audit(1710037835.595:9): action=dont_measure fsmagic=0xf97cff8c res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.746930033Z]: audit: type=1807 audit(1710037835.595:10): action=dont_measure fsmagic=0x43415d53 res=1
+ceph-thin3: kern:  notice: [2024-03-10T02:31:07.855395033Z]: audit: type=1807 audit(1710037835.595:11): action=dont_measure fsmagic=0x27e0eb res=1
+ceph-thin3: user: warning: [2024-03-10T02:31:07.969902033Z]: [talos] task writeIMAPolicy (1/1): done, 1.521519348s
+ceph-thin3: user: warning: [2024-03-10T02:31:08.043044033Z]: [talos] phase integrity (3/11): done, 1.995008659s
+ceph-thin3: user: warning: [2024-03-10T02:31:08.113021033Z]: [talos] phase etc (4/11): 3 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:08.168440033Z]: [talos] task setUserEnvVars (3/3): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:08.231036033Z]: [talos] task CreateSystemCgroups (1/3): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:08.298874033Z]: [talos] task createOSReleaseFile (2/3): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:08.366739033Z]: [talos] task setUserEnvVars (3/3): done, 198.331321ms
+ceph-thin3: user: warning: [2024-03-10T02:31:08.440151033Z]: [talos] task createOSReleaseFile (2/3): done, 271.712184ms
+ceph-thin3: user: warning: [2024-03-10T02:31:08.544566033Z]: [talos] task CreateSystemCgroups (1/3): done, 376.13653ms
+ceph-thin3: user: warning: [2024-03-10T02:31:08.621868033Z]: [talos] phase etc (4/11): done, 508.856772ms
+ceph-thin3: user: warning: [2024-03-10T02:31:08.685609033Z]: [talos] phase earlyServices (5/11): 2 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:08.751441033Z]: [talos] task startMachined (2/2): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:08.813101033Z]: [talos] task startUdevd (1/2): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:08.871781033Z]: [talos] service[machined](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:31:08.946983033Z]: [talos] service[machined](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:31:09.028380033Z]: [talos] service[udevd](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:31:09.100568033Z]: [talos] service[machined](Running): Service started as goroutine
+ceph-thin3: user: warning: [2024-03-10T02:31:09.228484033Z]: [talos] service[udevd](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:31:10.029245033Z]: [talos] service[machined](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-10T02:31:10.108829033Z]: [talos] task startMachined (2/2): done, 1.357397113s
+ceph-thin3: user: warning: [2024-03-10T02:31:13.142013033Z]: [talos] service[udevd](Running): Process Process(["/sbin/udevd" "--resolve-names=never"]) started with PID 688
+ceph-thin3: daemon:    info: [2024-03-10T02:31:13.399973033Z]: udevd[688]: starting version 3.2.12
+ceph-thin3: daemon:    info: [2024-03-10T02:31:13.670247033Z]: udevd[688]: starting eudev-3.2.12
+ceph-thin3: kern:    info: [2024-03-10T02:31:13.899526033Z]: r8169 0000:01:00.0 eth0: RTL8168h/8111h, 7c:d3:0a:3e:fd:47, XID 541, IRQ 33
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:31:13.995441033Z]: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:31:14.099381033Z]: r8169 0000:01:00.0 enp1s0: renamed from eth0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-10T02:31:14.196979033Z]: [talos] service[udevd](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-10T02:31:14.273237033Z]: [talos] task startUdevd (1/2): done, 5.521801861s
+ceph-thin3: user: warning: [2024-03-10T02:31:14.342161033Z]: [talos] phase earlyServices (5/11): done, 5.656553633s
+ceph-thin3: user: warning: [2024-03-10T02:31:14.416297033Z]: [talos] phase meta (6/11): 1 tasks(s)
+ceph-thin3: kern: warning: [2024-03-10T02:31:14.419142033Z]: r8169 0000:01:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-10T02:31:14.472828033Z]: [talos] task reloadMeta (1/1): starting
+ceph-thin3: kern:     err: [2024-03-10T02:31:14.581148033Z]: r8169 0000:01:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:31:14.757711033Z]: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
+ SUBSYSTEM=mdio_bus
+ DEVICE=+mdio_bus:r8169-0-100:00
+ceph-thin3: user: warning: [2024-03-10T02:31:14.887497033Z]: [talos] META: loaded 0 keys
+ceph-thin3: user: warning: [2024-03-10T02:31:14.933833033Z]: [talos] task reloadMeta (1/1): done, 461.010627ms
+ceph-thin3: user: warning: [2024-03-10T02:31:15.002737033Z]: [talos] phase meta (6/11): done, 586.45417ms
+ceph-thin3: kern:    info: [2024-03-10T02:31:15.045763033Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-10T02:31:15.067674033Z]: [talos] phase dashboard (7/11): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:15.186508033Z]: [talos] task startDashboard (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:15.249195033Z]: [talos] task startDashboard (1/1): done, 62.728196ms
+ceph-thin3: user: warning: [2024-03-10T02:31:15.321270033Z]: [talos] service[dashboard](Waiting): Waiting for service "machined" to be "up", file "/system/run/machined/machine.sock" to exist
+ceph-thin3: user: warning: [2024-03-10T02:31:15.473484033Z]: [talos] phase dashboard (7/11): done, 253.642499ms
+ceph-thin3: user: warning: [2024-03-10T02:31:15.543450033Z]: [talos] service[dashboard](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:31:15.619613033Z]: [talos] phase mountSystem (9/11): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:15.683297033Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:15.687421033Z]: [talos] task mountStatePartition (1/1): mount skipped
+ceph-thin3: user: warning: [2024-03-10T02:31:15.824426033Z]: [talos] service[dashboard](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:31:15.906863033Z]: [talos] task mountStatePartition (1/1): done, 141.118962ms
+ceph-thin3: user: warning: [2024-03-10T02:31:15.985170033Z]: [talos] phase mountSystem (9/11): done, 441.723253ms
+ceph-thin3: user: warning: [2024-03-10T02:31:16.057132033Z]: [talos] phase config (10/11): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:16.116769033Z]: [talos] task loadConfig (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:16.175198033Z]: [talos] service[dashboard](Running): Process Process(["/sbin/dashboard"]) started with PID 1610
+ceph-thin3: user: warning: [2024-03-10T02:31:16.292195033Z]: [talos] downloading config {"component": "controller-runtime", "controller": "config.AcquireController", "platform": "metal"}
+ceph-thin3: user: warning: [2024-03-10T02:31:16.440109033Z]: [talos] waiting for network to be ready
+ceph-thin3: user: warning: [2024-03-10T02:31:16.498624033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on [::1]:53: read udp [::1]:39074->[::1]:53: read: connection refused"}
+ceph-thin3: user: warning: [2024-03-10T02:31:17.750835033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: kern:    info: [2024-03-10T02:31:18.510147033Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: kern:    info: [2024-03-10T02:31:18.601942033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
+ceph-thin3: user: warning: [2024-03-10T02:31:19.001874033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-10T02:31:20.252544033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-10T02:31:21.503382033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-10T02:31:22.754216033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-10T02:31:23.814707033Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:23.978682033Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin3", "domainname": "dezendorf.net"}
+ceph-thin3: user: warning: [2024-03-10T02:31:24.171078033Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin3", "domainname": "dezendorf.net"}
+ceph-thin3: user: warning: [2024-03-10T02:31:24.360770033Z]: [talos] fetching machine config from: "http://192.168.1.87:1880/wk.yaml"
+ceph-thin3: user: warning: [2024-03-10T02:31:24.453631033Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.23/23", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T02:31:24.453796033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-10T02:31:24.453850033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "network.RouteSpecController", "error": "1 error occurred:\x5cn\x5ct* error adding route: netlink receive: network is unreachable, message {Family:2 DstLength:0 SrcLength:0 Tos:0 Table:0 Protocol:3 Scope:0 Type:1 Flags:0 Attributes:{Dst:<nil> Src:192.168.0.23 Gateway:192.168.1.1 OutIface:8 Priority:1024 Table:254 Mark:0 Pref:<nil> Expires:<nil> Metrics:<nil> Multipath:[]}}\x5cn\x5cn"}
+ceph-thin3: user: warning: [2024-03-10T02:31:25.375439033Z]: [talos] enabling JSON logging {"component": "controller-runtime"}
+ceph-thin3: user: warning: [2024-03-10T02:31:25.463097033Z]: [talos] machine config loaded successfully {"component": "controller-runtime", "controller": "config.AcquireController", "sources": ["metal"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:25.641545033Z]: [talos] task loadConfig (1/1): done, 9.258731964s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.710675033Z]: [talos] phase config (10/11): done, 9.653532095s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.782622033Z]: [talos] phase unmountSystem (11/11): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849578033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849600033Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87", "192.168.1.9"]}
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849713033Z]: [talos] task unmountStatePartition (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849750033Z]: [talos] task unmountStatePartition (1/1): unmount skipped
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849771033Z]: [talos] task unmountStatePartition (1/1): done, 134.318\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849796033Z]: [talos] phase unmountSystem (11/11): done, 67.211089ms
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849812033Z]: [talos] initialize sequence: done: 21.143421985s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849858033Z]: [talos] install sequence: 0 phase(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849871033Z]: [talos] install sequence: done: 12.097\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849938033Z]: [talos] boot sequence: 18 phase(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:25.849952033Z]: [talos] phase saveStateEncryptionConfig (1/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:25.850000033Z]: [talos] task SaveStateEncryptionConfig (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:25.850024033Z]: [talos] task SaveStateEncryptionConfig (1/1): done, 36.98\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.850045033Z]: [talos] phase saveStateEncryptionConfig (1/18): done, 93.654\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:31:25.850059033Z]: [talos] phase mountState (2/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:25.850085033Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:25.852105033Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin3: user: warning: [2024-03-10T02:31:27.377142033Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin3: user: warning: [2024-03-10T02:31:27.630215033Z]: [talos] adjusting time (jump) by 17.78024417s via 216.229.4.69, state TIME_OK, status STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: user: warning: [2024-03-10T02:31:27.822006033Z]: [talos] formatting the partition "/dev/sdd5" as "xfs" with label "STATE"
+ceph-thin3: user: warning: [2024-03-10T02:31:27.914973033Z]: [talos] synchronized RTC with system clock {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: user: warning: [2024-03-10T02:31:28.377886033Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be registered
+ceph-thin3: kern:  notice: [2024-03-10T02:31:39.412813033Z]: XFS (sdd5): Mounting V5 Filesystem
+ceph-thin3: kern:    info: [2024-03-10T02:31:40.436867033Z]: XFS (sdd5): Ending clean mount
+ceph-thin3: user: warning: [2024-03-10T02:31:40.492827033Z]: [talos] task mountStatePartition (1/1): done, 14.642717568s
+ceph-thin3: user: warning: [2024-03-10T02:31:40.572330033Z]: [talos] phase mountState (2/18): done, 14.722240995s
+ceph-thin3: user: warning: [2024-03-10T02:31:40.644424033Z]: [talos] phase saveConfig (3/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:40.644502033Z]: [talos] task saveConfig (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:40.646646033Z]: [talos] task saveConfig (1/1): done, 2.136227ms
+ceph-thin3: user: warning: [2024-03-10T02:31:40.832894033Z]: [talos] node identity established {"component": "controller-runtime", "controller": "cluster.NodeIdentityController", "node_id": "G3O7BOswMOSCOW4IZeBNEkPWzJ8uLA4g7fBVCxf65bRA"}
+ceph-thin3: user: warning: [2024-03-10T02:31:41.033994033Z]: [talos] phase saveConfig (3/18): done, 188.500049ms
+ceph-thin3: user: warning: [2024-03-10T02:31:41.104977033Z]: [talos] phase memorySizeCheck (4/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:41.172911033Z]: [talos] task memorySizeCheck (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:41.173162033Z]: [talos] memory size is OK
+ceph-thin3: user: warning: [2024-03-10T02:31:41.280375033Z]: [talos] memory size is 11400 MiB
+ceph-thin3: user: warning: [2024-03-10T02:31:41.331550033Z]: [talos] task memorySizeCheck (1/1): done, 158.646656ms
+ceph-thin3: user: warning: [2024-03-10T02:31:41.405733033Z]: [talos] phase memorySizeCheck (4/18): done, 300.746031ms
+ceph-thin3: user: warning: [2024-03-10T02:31:41.405755033Z]: [talos] phase diskSizeCheck (5/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:41.547826033Z]: [talos] task diskSizeCheck (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:41.609611033Z]: [talos] disk size is OK
+ceph-thin3: user: warning: [2024-03-10T02:31:41.651441033Z]: [talos] disk size is 118236 MiB
+ceph-thin3: user: warning: [2024-03-10T02:31:41.701774033Z]: [talos] task diskSizeCheck (1/1): done, 153.941933ms
+ceph-thin3: user: warning: [2024-03-10T02:31:41.701836033Z]: [talos] phase diskSizeCheck (5/18): done, 296.084313ms
+ceph-thin3: user: warning: [2024-03-10T02:31:41.847871033Z]: [talos] phase env (6/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:41.903429033Z]: [talos] task setUserEnvVars (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:41.966219033Z]: [talos] task setUserEnvVars (1/1): done, 62.813774ms
+ceph-thin3: user: warning: [2024-03-10T02:31:42.038264033Z]: [talos] phase env (6/18): done, 190.398924ms
+ceph-thin3: user: warning: [2024-03-10T02:31:42.038283033Z]: [talos] phase containerd (7/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:42.038318033Z]: [talos] task startContainerd (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:42.228248033Z]: [talos] service[containerd](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:31:42.305435033Z]: [talos] service[containerd](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:31:42.389061033Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up"
+ceph-thin3: user: warning: [2024-03-10T02:31:42.485108033Z]: [talos] service[containerd](Running): Process Process(["/bin/containerd" "--address" "/system/run/containerd/containerd.sock" "--state" "/system/run/containerd" "--root" "/system/var/lib/containerd"]) started with PID 1637
+ceph-thin3: user: warning: [2024-03-10T02:31:45.602585033Z]: [talos] service[containerd](Running): Health check failed: rpc error: code = DeadlineExceeded desc = context deadline exceeded
+ceph-thin3: user: warning: [2024-03-10T02:31:48.392320033Z]: [talos] service[containerd](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-10T02:31:48.473903033Z]: [talos] service[apid](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:31:48.544902033Z]: [talos] task startContainerd (1/1): done, 6.435591923s
+ceph-thin3: user: warning: [2024-03-10T02:31:48.619085033Z]: [talos] service[apid](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:31:48.619166033Z]: [talos] phase containerd (7/18): done, 6.580878494s
+ceph-thin3: user: warning: [2024-03-10T02:31:48.619198033Z]: [talos] phase dbus (8/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:48.619243033Z]: [talos] task startDBus (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:48.882167033Z]: [talos] task startDBus (1/1): done, 262.919148ms
+ceph-thin3: user: warning: [2024-03-10T02:31:48.950047033Z]: [talos] phase dbus (8/18): done, 330.855477ms
+ceph-thin3: user: warning: [2024-03-10T02:31:49.014782033Z]: [talos] phase ephemeral (9/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:31:49.076495033Z]: [talos] task mountEphemeralPartition (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:31:49.158876033Z]: [talos] formatting the partition "/dev/sdd6" as "xfs" with label "EPHEMERAL"
+ceph-thin3: user: warning: [2024-03-10T02:31:50.699220033Z]: [talos] service[apid](Running): Started task apid (PID 1692) for container apid
+ceph-thin3: user: warning: [2024-03-10T02:31:54.641716033Z]: [talos] service[apid](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-10T02:32:00.090023033Z]: [talos] adjusting time (slew) by 22.286109ms via 216.229.4.69, state TIME_OK, status STA_PLL | STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: kern:  notice: [2024-03-10T02:32:00.930264033Z]: XFS (sdd6): Mounting V5 Filesystem
+ceph-thin3: kern:    info: [2024-03-10T02:32:01.705713033Z]: XFS (sdd6): Ending clean mount
+ceph-thin3: user: warning: [2024-03-10T02:32:01.846836033Z]: [talos] task mountEphemeralPartition (1/1): done, 12.771660985s
+ceph-thin3: user: warning: [2024-03-10T02:32:01.930411033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "error": "error writing kubelet PKI: open /etc/kubernetes/bootstrap-kubeconfig: read-only file system"}
+ceph-thin3: user: warning: [2024-03-10T02:32:01.930590033Z]: [talos] phase ephemeral (9/18): done, 12.917762498s
+ceph-thin3: user: warning: [2024-03-10T02:32:02.238823033Z]: [talos] phase var (10/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:02.295321033Z]: [talos] task setupVarDirectory (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:02.376105033Z]: [talos] task setupVarDirectory (1/1): done, 80.86302ms
+ceph-thin3: user: warning: [2024-03-10T02:32:02.450294033Z]: [talos] phase var (10/18): done, 211.754411ms
+ceph-thin3: user: warning: [2024-03-10T02:32:02.450312033Z]: [talos] phase overlay (11/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:02.450350033Z]: [talos] task mountOverlayFilesystems (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:02.453484033Z]: [talos] task mountOverlayFilesystems (1/1): done, 3.123863ms
+ceph-thin3: user: warning: [2024-03-10T02:32:02.727872033Z]: [talos] phase overlay (11/18): done, 277.89213ms
+ceph-thin3: user: warning: [2024-03-10T02:32:02.795628033Z]: [talos] phase legacyCleanup (12/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:02.862582033Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:02.938781033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin3: user: warning: [2024-03-10T02:32:03.051573033Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): done, 189.228642ms
+ceph-thin3: user: warning: [2024-03-10T02:32:03.138333033Z]: [talos] phase legacyCleanup (12/18): done, 343.104409ms
+ceph-thin3: user: warning: [2024-03-10T02:32:03.213496033Z]: [talos] phase udevSetup (13/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:03.276165033Z]: [talos] task writeUdevRules (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:03.339114033Z]: [talos] task writeUdevRules (1/1): done, 63.032614ms
+ceph-thin3: user: warning: [2024-03-10T02:32:03.411147033Z]: [talos] phase udevSetup (13/18): done, 197.892234ms
+ceph-thin3: user: warning: [2024-03-10T02:32:03.482125033Z]: [talos] phase userDisks (14/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:03.482222033Z]: [talos] task mountUserDisks (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:03.607397033Z]: [talos] task mountUserDisks (1/1): done, 125.329881ms
+ceph-thin3: user: warning: [2024-03-10T02:32:03.680491033Z]: [talos] phase userDisks (14/18): done, 198.596376ms
+ceph-thin3: user: warning: [2024-03-10T02:32:03.751406033Z]: [talos] phase userSetup (15/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:03.751439033Z]: [talos] task writeUserFiles (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:03.751568033Z]: [talos] task writeUserFiles (1/1): done, 109.335\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:32:03.751628033Z]: [talos] phase userSetup (15/18): done, 237.501\xc2\xb5s
+ceph-thin3: user: warning: [2024-03-10T02:32:04.016725033Z]: [talos] phase lvm (16/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:04.073169033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be registered
+ceph-thin3: user: warning: [2024-03-10T02:32:04.171226033Z]: [talos] task activateLogicalVolumes (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:04.490869033Z]: [talos] task activateLogicalVolumes (1/1): done, 418.082929ms
+ceph-thin3: user: warning: [2024-03-10T02:32:04.572293033Z]: [talos] phase lvm (16/18): done, 556.251309ms
+ceph-thin3: user: warning: [2024-03-10T02:32:04.637054033Z]: [talos] phase extendPCRStartAll (17/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:04.708096033Z]: [talos] task extendPCRStartAll (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:04.781714033Z]: [talos] task extendPCRStartAll (1/1): done, 73.687982ms
+ceph-thin3: user: warning: [2024-03-10T02:32:04.856887033Z]: [talos] phase extendPCRStartAll (17/18): done, 220.081062ms
+ceph-thin3: user: warning: [2024-03-10T02:32:04.936125033Z]: [talos] phase startEverything (18/18): 1 tasks(s)
+ceph-thin3: user: warning: [2024-03-10T02:32:05.005131033Z]: [talos] task startAllServices (1/1): starting
+ceph-thin3: user: warning: [2024-03-10T02:32:05.069871033Z]: [talos] task startAllServices (1/1): waiting for 7 services
+ceph-thin3: user: warning: [2024-03-10T02:32:05.149349033Z]: [talos] service[cri](Waiting): Waiting for network
+ceph-thin3: user: warning: [2024-03-10T02:32:05.219431033Z]: [talos] service[cri](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:32:05.289443033Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "containerd" to be "up", service "cri" to be "up", service "dashboard" to be "up", service "kubelet" to be "up", service "machined" to be "up", service "udevd" to be "up"
+ceph-thin3: user: warning: [2024-03-10T02:32:05.559091033Z]: [talos] service[cri](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:32:05.560095033Z]: [talos] service[cri](Running): Process Process(["/bin/containerd" "--address" "/run/containerd/containerd.sock" "--config" "/etc/cri/containerd.toml"]) started with PID 1725
+ceph-thin3: user: warning: [2024-03-10T02:32:06.048651033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up"
+ceph-thin3: user: warning: [2024-03-10T02:32:06.929518033Z]: [talos] service[cri](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-10T02:32:07.003850033Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-10T02:32:20.279612033Z]: [talos] task startAllServices (1/1): service "kubelet" to be "up"
+ceph-thin3: user: warning: [2024-03-10T02:32:35.275585033Z]: [talos] task startAllServices (1/1): service "kubelet" to be "up"
+ceph-thin3: user: warning: [2024-03-10T02:32:47.415691033Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-10T02:32:47.777316033Z]: [talos] service[kubelet](Running): Started task kubelet (PID 1772) for container kubelet
+ceph-thin3: user: warning: [2024-03-10T02:32:48.632925033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin3\x5c" not found"}
+ceph-thin3: user: warning: [2024-03-10T02:32:49.601691033Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-10T02:32:49.680369033Z]: [talos] task startAllServices (1/1): done, 44.690922347s
+ceph-thin3: user: warning: [2024-03-10T02:32:49.756982033Z]: [talos] phase startEverything (18/18): done, 44.836621737s
+ceph-thin3: user: warning: [2024-03-10T02:32:49.835577033Z]: [talos] boot sequence: done: 1m24.006979735s
+ceph-thin3: user: warning: [2024-03-10T02:35:02.247417033Z]: [talos] machine is running and ready {"component": "controller-runtime", "controller": "runtime.MachineStatusController"}
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.138231033Z]: cni0: port 1(veth08deace7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.207075033Z]: cni0: port 1(veth08deace7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.207290033Z]: device veth08deace7 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.207410033Z]: cni0: port 1(veth08deace7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.207415033Z]: cni0: port 1(veth08deace7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.276558033Z]: cni0: port 1(veth08deace7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.349722033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.624306033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth08deace7: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.707858033Z]: cni0: port 1(veth08deace7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T03:08:38.707864033Z]: cni0: port 1(veth08deace7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.328027033Z]: cni0: port 2(vetha31e66a2) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.396871033Z]: cni0: port 2(vetha31e66a2) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.466027033Z]: device vetha31e66a2 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.544455033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.620185033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha31e66a2: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.703710033Z]: cni0: port 2(vetha31e66a2) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T03:11:13.772576033Z]: cni0: port 2(vetha31e66a2) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T03:20:52.841033033Z]: cni0: port 2(vetha31e66a2) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T03:20:52.922751033Z]: device vetha31e66a2 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T03:20:52.983292033Z]: cni0: port 2(vetha31e66a2) entered disabled state
+ceph-thin3: user: warning: [2024-03-10T03:25:21.818998033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T04:45:57.002884033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T06:06:32.194216033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T07:27:07.469293033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T08:47:42.656114033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T10:08:17.841777033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T11:28:53.021594033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T12:49:28.212978033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T14:10:03.406901033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-10T15:04:25.647821033Z]: cni0: port 1(veth08deace7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:04:25.717397033Z]: device veth08deace7 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:04:25.778099033Z]: cni0: port 1(veth08deace7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:14:38.716855033Z]: cni0: port 1(veth09913c0b) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:14:38.785771033Z]: cni0: port 1(veth09913c0b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:14:38.785946033Z]: device veth09913c0b entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:14:38.929906033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:14:39.005179033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth09913c0b: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:14:39.005362033Z]: cni0: port 1(veth09913c0b) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:14:39.157570033Z]: cni0: port 1(veth09913c0b) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:14:48.898412033Z]: cni0: port 1(veth09913c0b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:14:48.968213033Z]: device veth09913c0b left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:14:49.028898033Z]: cni0: port 1(veth09913c0b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.522249033Z]: cni0: port 1(vethfd21961f) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.591118033Z]: cni0: port 1(vethfd21961f) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.660223033Z]: device vethfd21961f entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.734185033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.809454033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethfd21961f: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.893047033Z]: cni0: port 1(vethfd21961f) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:06.961935033Z]: cni0: port 1(vethfd21961f) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:16:10.032141033Z]: cni0: port 1(vethfd21961f) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:10.101936033Z]: device vethfd21961f left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:16:10.162516033Z]: cni0: port 1(vethfd21961f) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.138991033Z]: cni0: port 1(veth06e064a7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.207892033Z]: cni0: port 1(veth06e064a7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.208104033Z]: device veth06e064a7 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.340887033Z]: cni0: port 1(veth06e064a7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.409803033Z]: cni0: port 1(veth06e064a7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.481130033Z]: cni0: port 1(veth06e064a7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.561575033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.636850033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth06e064a7: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.720364033Z]: cni0: port 1(veth06e064a7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:11.720371033Z]: cni0: port 1(veth06e064a7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:16:15.055475033Z]: cni0: port 1(veth06e064a7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:15.125069033Z]: device veth06e064a7 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:16:15.185607033Z]: cni0: port 1(veth06e064a7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.215143033Z]: cni0: port 1(veth3f260d9a) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.284023033Z]: cni0: port 1(veth3f260d9a) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.353187033Z]: device veth3f260d9a entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.417228033Z]: cni0: port 1(veth3f260d9a) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.486137033Z]: cni0: port 1(veth3f260d9a) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.559769033Z]: cni0: port 1(veth3f260d9a) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.640592033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.715860033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3f260d9a: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.799376033Z]: cni0: port 1(veth3f260d9a) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:16:16.868308033Z]: cni0: port 1(veth3f260d9a) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:16:23.089390033Z]: cni0: port 1(veth3f260d9a) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:16:23.159216033Z]: device veth3f260d9a left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:16:23.219768033Z]: cni0: port 1(veth3f260d9a) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.215861033Z]: cni0: port 1(vethbb67f563) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.284742033Z]: cni0: port 1(vethbb67f563) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.353964033Z]: device vethbb67f563 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.428535033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.503862033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethbb67f563: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.587497033Z]: cni0: port 1(vethbb67f563) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:17:44.587503033Z]: cni0: port 1(vethbb67f563) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:17:54.455454033Z]: cni0: port 1(vethbb67f563) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:17:54.525174033Z]: device vethbb67f563 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:17:54.585735033Z]: cni0: port 1(vethbb67f563) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.252032033Z]: cni0: port 1(veth3d52bca2) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.320970033Z]: cni0: port 1(veth3d52bca2) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.321152033Z]: device veth3d52bca2 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.464017033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.539322033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3d52bca2: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.622907033Z]: cni0: port 1(veth3d52bca2) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:18:11.622913033Z]: cni0: port 1(veth3d52bca2) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:20:26.663767033Z]: cni0: port 2(veth4dfacf3d) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:20:26.732698033Z]: cni0: port 2(veth4dfacf3d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:20:26.801771033Z]: device veth4dfacf3d entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:20:26.880456033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:20:26.955919033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4dfacf3d: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:20:27.039567033Z]: cni0: port 2(veth4dfacf3d) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:20:27.108420033Z]: cni0: port 2(veth4dfacf3d) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:20:40.160266033Z]: cni0: port 2(veth4dfacf3d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:20:40.230122033Z]: device veth4dfacf3d left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:20:40.290731033Z]: cni0: port 2(veth4dfacf3d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:23:36.688767033Z]: cni0: port 1(veth3d52bca2) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:23:36.758481033Z]: device veth3d52bca2 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:23:36.818998033Z]: cni0: port 1(veth3d52bca2) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.438771033Z]: cni0: port 1(veth09cc0172) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.507650033Z]: cni0: port 1(veth09cc0172) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.576744033Z]: device veth09cc0172 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.653198033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.728335033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth09cc0172: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.728388033Z]: cni0: port 1(veth09cc0172) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:24:15.880670033Z]: cni0: port 1(veth09cc0172) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:24:18.984627033Z]: cni0: port 1(veth09cc0172) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:24:19.054448033Z]: device veth09cc0172 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:24:19.114964033Z]: cni0: port 1(veth09cc0172) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:17.811296033Z]: cni0: port 1(vethd0931502) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:17.880230033Z]: cni0: port 1(vethd0931502) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:17.949334033Z]: device vethd0931502 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:25:18.024371033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:25:18.099590033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethd0931502: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:25:18.183129033Z]: cni0: port 1(vethd0931502) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:18.252002033Z]: cni0: port 1(vethd0931502) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:25:22.214738033Z]: cni0: port 1(vethd0931502) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:22.284469033Z]: device vethd0931502 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:25:22.345048033Z]: cni0: port 1(vethd0931502) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.356854033Z]: cni0: port 1(vethb79c71d7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.425776033Z]: cni0: port 1(vethb79c71d7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.494850033Z]: device vethb79c71d7 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.558826033Z]: cni0: port 1(vethb79c71d7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.627657033Z]: cni0: port 1(vethb79c71d7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.699420033Z]: cni0: port 1(vethb79c71d7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.784128033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.859680033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb79c71d7: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:25:23.943335033Z]: cni0: port 1(vethb79c71d7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:24.012153033Z]: cni0: port 1(vethb79c71d7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:25:27.239849033Z]: cni0: port 1(vethb79c71d7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:27.309556033Z]: device vethb79c71d7 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:25:27.370159033Z]: cni0: port 1(vethb79c71d7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:28.802431033Z]: cni0: port 1(veth49efa007) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:28.871250033Z]: cni0: port 1(veth49efa007) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:28.940494033Z]: device veth49efa007 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:25:29.013559033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:25:29.088764033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth49efa007: link becomes ready
+ceph-thin3: kern:    info: [2024-03-10T15:25:29.172331033Z]: cni0: port 1(veth49efa007) entered blocking state
+ceph-thin3: kern:    info: [2024-03-10T15:25:29.241222033Z]: cni0: port 1(veth49efa007) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-10T15:25:35.295824033Z]: cni0: port 1(veth49efa007) entered disabled state
+ceph-thin3: kern:    info: [2024-03-10T15:25:35.365645033Z]: device veth49efa007 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-10T15:25:35.426235033Z]: cni0: port 1(veth49efa007) entered disabled state
+ceph-thin3: user: warning: [2024-03-10T15:30:38.589828033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T16:51:13.796541033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T18:11:48.988241033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T19:32:24.173437033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T20:52:59.444275033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T22:13:34.627125033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-10T23:34:09.815104033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T00:54:45.002715033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T02:15:20.188551033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T03:35:55.370229033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T04:56:30.562408033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T06:17:05.748868033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T07:37:40.943842033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T08:58:16.127113033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T10:18:51.327137033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T11:39:26.509289033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T13:00:01.694848033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T14:20:36.899126033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T15:41:12.177934033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T17:01:47.284475033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T18:22:22.471553033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T19:42:57.659495033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T21:03:32.849448033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T22:24:08.432141033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-11T23:44:43.621643033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T01:05:18.809590033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T02:25:54.006342033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T03:46:29.331275033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T05:07:04.520967033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T06:27:39.701610033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T07:48:14.884579033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T09:08:50.076848033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T10:29:25.268952033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T11:50:00.451216033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T13:10:35.642918033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T14:31:10.844316033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T15:51:46.031887033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T17:12:21.216898033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T18:32:56.599877033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T19:53:31.415760033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T21:14:06.780947033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T22:34:41.983972033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-12T23:55:17.175974033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T01:15:52.357889033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T02:36:27.550484033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T03:57:02.625584033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T05:17:38.034321033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T06:38:13.153667033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T07:58:48.307689033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T09:19:23.488249033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T10:39:58.582218033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T12:00:33.967850033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T12:56:39.531293033Z]: [talos] error watching discovery service state {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = closing transport due to: connection error: desc = \x5c"error reading from server: read tcp 192.168.0.23:38218->172.174.35.21:443: read: connection timed out\x5c", received prior goaway: code: NO_ERROR"}
+ceph-thin3: user: warning: [2024-03-13T12:56:45.569816033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:54927->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:56:46.523155033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:54927->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:56:48.045186033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:54927->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:56:49.598722033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:54927->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:56:53.416973033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:36365->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:56:56.989041033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:36365->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:57:02.009540033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:46277->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:57:08.956754033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:57778->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:57:16.863350033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:34027->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:57:32.086557033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48702->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:57:55.357840033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:57408->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:58:27.596810033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:38495->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T12:59:51.280840033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:50777->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:00:51.923786033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:47030->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:01:42.200103033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:47030->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:02:22.679030033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:47030->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:03:33.402279033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:57304->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:04:46.176046033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:49739->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:06:05.063630033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:49739->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:07:32.151167033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:43903->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:08:23.890663033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:43903->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:09:41.711539033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:39642->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:10:23.892249033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:39642->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:11:36.213090033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:56024->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:12:21.035363033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:56024->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:13:17.459865033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:39790->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:14:20.063704033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:39790->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:15:19.809861033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:51315->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:16:23.827890033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:51315->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:17:20.757664033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:51315->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:17:58.249131033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48187->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:18:59.783753033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48187->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:19:48.868550033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:42886->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:21:06.652336033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:59559->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:21:09.100385033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T13:21:53.092580033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:59559->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:22:46.112038033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:59559->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:24:05.835691033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:37565->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:25:21.376997033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35719->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:26:06.464018033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35719->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:26:44.157293033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35719->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:27:25.199067033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35719->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:28:17.772014033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:42050->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:29:18.536821033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:42050->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:30:30.741052033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:40329->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:31:10.246764033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:40329->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:32:23.448406033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:38705->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:33:52.882597033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:38705->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:34:49.160613033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:40577->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:35:57.060275033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:40577->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:36:44.567906033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48123->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:37:48.707532033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48123->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:38:43.017500033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48123->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:39:21.248482033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48594->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:40:51.081423033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48594->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:41:23.632287033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48594->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:42:07.837880033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:55097->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:43:24.254131033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:55097->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:44:21.551378033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:34482->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:45:02.597605033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:34482->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:46:25.335557033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48967->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:47:15.054453033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48967->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:48:26.846506033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:48967->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:49:11.887281033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:36162->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:50:27.018052033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35950->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:51:02.988366033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35950->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:51:43.979254033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:35950->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:52:54.508598033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:44035->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:53:33.254456033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:44035->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:54:52.368672033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:56298->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:55:32.329856033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:56298->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:56:14.484791033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:50878->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:57:02.871652033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:50878->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:57:57.719932033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:50878->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:58:29.863436033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:50878->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T13:59:10.064895033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:47305->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T14:00:01.069620033Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.23:47305->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin3: user: warning: [2024-03-13T14:41:44.258073033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T16:02:19.443941033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T17:22:54.634234033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T18:43:29.815438033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T20:04:05.070087033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T21:24:40.221470033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-13T22:45:15.520285033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T00:05:50.677902033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T01:26:25.875505033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T02:47:01.057632033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T04:07:36.241349033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T05:28:11.432477033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T06:48:46.623291033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T08:10:10.326021033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T09:30:45.521070033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T10:51:20.701864033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T12:11:55.888976033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T13:32:31.072254033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T14:53:06.220450033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T16:13:41.545860033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T17:34:16.718452033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T18:54:51.842189033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T20:15:27.137647033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T21:36:02.329663033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-14T22:56:37.528857033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T00:17:12.764890033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T01:37:47.924450033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T02:58:23.211370033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T04:18:58.396694033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T05:39:33.653949033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T07:00:08.844084033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T08:20:44.028212033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T09:41:19.238131033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T11:01:54.437738033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T12:22:29.619446033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T13:27:27.951774033Z]: [talos] adjusting time (jump) by -503.878326ms via 216.229.4.69, state TIME_OK, status STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: user: warning: [2024-03-15T13:27:28.145928033Z]: [talos] synchronized RTC with system clock {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: user: warning: [2024-03-15T13:43:04.205134033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T15:03:39.576571033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T15:43:28.722579033Z]: [talos] adjusting time (jump) by 576.805548ms via 216.229.4.69, state TIME_OK, status STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: user: warning: [2024-03-15T15:43:28.915362033Z]: [talos] synchronized RTC with system clock {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin3: user: warning: [2024-03-15T16:24:15.291388033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T17:44:50.530973033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T19:05:25.712399033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T20:26:00.899276033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T21:46:36.080230033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-15T23:07:11.268910033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T00:27:46.463723033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T00:49:05.058275033Z]: [talos] ntp query error with server "216.229.4.69" {"component": "controller-runtime", "controller": "time.SyncController", "error": "kiss of death received"}
+ceph-thin3: user: warning: [2024-03-16T01:48:21.657330033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T03:08:56.849749033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T04:29:32.042264033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T05:50:07.227390033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T07:10:42.413724033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T08:31:17.597942033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T08:47:01.845742033Z]: [talos] ntp query error with server "96.245.170.99" {"component": "controller-runtime", "controller": "time.SyncController", "error": "read udp 192.168.0.23:52554->96.245.170.99:123: i/o timeout"}
+ceph-thin3: user: warning: [2024-03-16T09:51:52.788038033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T11:12:28.002121033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T12:33:03.193378033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T13:53:38.375690033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T15:14:13.634575033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T16:34:48.820381033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T17:55:24.007323033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T19:15:59.193431033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T20:36:34.380251033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T21:57:09.566194033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-16T23:17:44.753783033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T00:38:19.936630033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T01:58:55.119013033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T03:19:30.438397033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T04:40:05.617708033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T06:00:40.806868033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T07:21:16.002389033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T08:41:51.207767033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T10:02:26.391169033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T11:23:01.581409033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T12:43:36.852251033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T14:04:12.038844033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T15:24:47.223148033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T16:45:22.419914033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T18:05:57.605919033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T19:26:32.797386033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T20:47:07.979557033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T22:07:43.163017033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-17T23:28:18.345418033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T00:48:53.611041033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T02:09:28.797721033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T03:30:03.984611033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T04:50:39.170964033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T06:11:14.352143033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T07:31:49.536046033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T08:52:24.839300033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T10:13:00.030067033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T11:33:35.211243033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T12:54:10.482908033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T14:14:45.666692033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T15:35:20.852165033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T16:55:56.042501033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T18:16:31.241381033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T19:37:06.435575033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T20:57:41.624292033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T22:18:16.826300033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-18T23:38:52.008546033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T00:59:27.275586033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T02:20:02.466197033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T03:40:37.653623033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T05:01:12.942649033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T06:21:48.129245033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T07:42:23.432425033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T09:02:58.621075033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T10:23:33.810768033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T11:44:09.126201033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T13:04:44.393605033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T14:25:19.587102033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T15:45:54.776079033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T17:06:30.055543033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T18:27:05.241615033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T19:47:40.426700033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T21:08:15.809280033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T22:28:50.992745033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-19T23:49:26.178793033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T01:10:01.383424033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T02:30:36.568401033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T03:51:11.843997033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T05:11:47.126213033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T06:32:22.316774033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T07:52:57.502128033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T09:13:32.684298033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T10:34:07.994421033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T11:54:43.193666033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T13:15:18.381186033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T14:35:53.568756033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T15:56:28.755693033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T17:17:04.197217033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T18:37:39.382682033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T19:58:14.558788033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T21:18:49.744739033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-20T22:39:24.932165033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T00:00:00.123955033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T01:20:35.323317033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T02:41:10.509690033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T04:01:45.696473033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T05:22:20.873741033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T06:42:56.061388033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T07:33:17.705794033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "Get \x5c"https://192.168.0.11:6443/api/v1/nodes?allowWatchBookmarks=true&fieldSelector=metadata.name%3Dceph-thin3&resourceVersion=2838162&timeout=7m58s&timeoutSeconds=478&watch=true\x5c": http2: client connection lost"}
+ceph-thin3: user: warning: [2024-03-21T07:33:37.536511033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin3&resourceVersion=2838162\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin3: user: warning: [2024-03-21T07:33:40.608392033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin3&resourceVersion=2838162\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin3: user: warning: [2024-03-21T07:33:52.896124033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin3&resourceVersion=2838162\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin3: user: warning: [2024-03-21T07:34:02.111833033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin3&resourceVersion=2838162\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin3: user: warning: [2024-03-21T07:34:26.687310033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin3&resourceVersion=2838162\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin3: kern:    info: [2024-03-21T07:39:16.989185033Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-21T07:39:17.057357033Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin3: user: warning: [2024-03-21T07:39:17.286109033Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-or0-i1j", "domainname": ""}
+ceph-thin3: user: warning: [2024-03-21T07:39:17.286144033Z]: [talos] removed address 192.168.0.23/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin3: user: warning: [2024-03-21T07:39:17.286301033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-or0-i1j?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:17.286440033Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 1772, container kubelet)
+ceph-thin3: user: warning: [2024-03-21T07:39:18.069733033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:18.419916033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-or0-i1j?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:18.812174033Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin3: user: warning: [2024-03-21T07:39:18.898944033Z]: [talos] kubelet client certificate does not match expected nodename, removing {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "expected": "system:node:talos-or0-i1j", "actual": "system:node:ceph-thin3"}
+ceph-thin3: user: warning: [2024-03-21T07:39:19.163544033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin3: user: warning: [2024-03-21T07:39:19.277278033Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-21T07:39:19.407515033Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-21T07:39:19.594049033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:20.096549033Z]: [talos] service[kubelet](Running): Started task kubelet (PID 256073) for container kubelet
+ceph-thin3: user: warning: [2024-03-21T07:39:21.629833033Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-21T07:39:22.257969033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:25.883230033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:35.795876033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:39:47.077247033Z]: [talos] failed refreshing discovery service data {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "error updating local affiliate data: rpc error: code = DeadlineExceeded desc = context deadline exceeded"}
+ceph-thin3: user: warning: [2024-03-21T07:39:51.259744033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:17.064299033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 4 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.13:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.12:50001: connect: network is unreachable\x5c"\x5cn\x5cttimeout"}
+ceph-thin3: user: warning: [2024-03-21T07:40:35.403425033Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-or0-i1j&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin3: kern:    info: [2024-03-21T07:40:37.693165033Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-21T07:40:42.825880033Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin3", "domainname": "dezendorf.net"}
+ceph-thin3: user: warning: [2024-03-21T07:40:43.016324033Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin3: user: warning: [2024-03-21T07:40:43.270365033Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.23/23", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T07:40:43.450843033Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 256073, container kubelet)
+ceph-thin3: user: warning: [2024-03-21T07:40:43.739924033Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin3: user: warning: [2024-03-21T07:40:43.827172033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin3: user: warning: [2024-03-21T07:40:43.940681033Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-21T07:40:44.061141033Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-21T07:40:44.877328033Z]: [talos] service[kubelet](Running): Started task kubelet (PID 256556) for container kubelet
+ceph-thin3: kern:    info: [2024-03-21T07:40:45.002815033Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-21T07:40:45.068849033Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin3: user: warning: [2024-03-21T07:40:45.297446033Z]: [talos] removed address 192.168.0.23/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin3: user: warning: [2024-03-21T07:40:45.457696033Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-or0-i1j", "domainname": ""}
+ceph-thin3: user: warning: [2024-03-21T07:40:45.457761033Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 256556, container kubelet)
+ceph-thin3: user: warning: [2024-03-21T07:40:45.888868033Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin3: user: warning: [2024-03-21T07:40:45.976197033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin3: user: warning: [2024-03-21T07:40:46.089653033Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-21T07:40:46.210091033Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-21T07:40:46.634716033Z]: [talos] service[kubelet](Running): Started task kubelet (PID 256670) for container kubelet
+ceph-thin3: user: warning: [2024-03-21T07:40:46.747925033Z]: [talos] ntp query error with server "108.61.56.35" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.61.56.35:123: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:46.969242033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:48.227345033Z]: [talos] ntp query error with server "108.61.56.35" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.61.56.35:123: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:48.447872033Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-21T07:40:48.527026033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin3: kern:    info: [2024-03-21T07:40:49.352422033Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin3: user: warning: [2024-03-21T07:40:49.528228033Z]: [talos] ntp query error with server "108.61.56.35" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.61.56.35:123: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:49.749690033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:51.008173033Z]: [talos] ntp query error with server "108.61.56.35" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.61.56.35:123: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:51.229371033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:52.488177033Z]: [talos] ntp query error with server "108.61.56.35" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.61.56.35:123: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:52.709242033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:53.967504033Z]: [talos] ntp query error with server "108.61.56.35" {"component": "controller-runtime", "controller": "time.SyncController", "error": "dial udp 108.61.56.35:123: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:54.188947033Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 192.168.1.9:53: dial udp 192.168.1.9:53: connect: network is unreachable"}
+ceph-thin3: user: warning: [2024-03-21T07:40:54.481313033Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin3", "domainname": "dezendorf.net"}
+ceph-thin3: user: warning: [2024-03-21T07:40:54.671569033Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.23/23", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T07:40:54.851918033Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin3: user: warning: [2024-03-21T07:40:55.105951033Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 256670, container kubelet)
+ceph-thin3: user: warning: [2024-03-21T07:40:55.405241033Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin3: user: warning: [2024-03-21T07:40:55.492769033Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin3: user: warning: [2024-03-21T07:40:55.606592033Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin3: user: warning: [2024-03-21T07:40:55.727967033Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin3: user: warning: [2024-03-21T07:40:56.120969033Z]: [talos] service[kubelet](Running): Started task kubelet (PID 256826) for container kubelet
+ceph-thin3: user: warning: [2024-03-21T07:40:57.240417033Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"talos-or0-i1j\x5c" not found"}
+ceph-thin3: user: warning: [2024-03-21T07:40:57.949499033Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin3: user: warning: [2024-03-21T08:34:50.413582033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T09:55:25.610422033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T11:16:00.789352033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T12:36:35.967767033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T13:57:11.146736033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T15:17:46.329930033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T16:38:21.517116033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T17:58:56.704048033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T19:19:31.879063033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T20:40:07.066376033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T22:00:42.380207033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-21T23:21:17.578356033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T00:41:52.780887033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T02:02:28.010847033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T03:23:03.305244033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T04:43:38.484514033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T06:04:13.667742033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T07:24:48.857402033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T08:45:24.049473033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T10:05:59.295683033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T11:26:34.488792033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T12:47:09.673740033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T14:07:44.861842033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T15:28:20.051431033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T16:48:55.238411033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.388039033Z]: cni0: port 1(veth8b0547e6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.458993033Z]: cni0: port 1(veth8b0547e6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.530141033Z]: device veth8b0547e6 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.609910033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.687290033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth8b0547e6: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.772978033Z]: cni0: port 1(veth8b0547e6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:54:45.772986033Z]: cni0: port 1(veth8b0547e6) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:54:48.732075033Z]: cni0: port 1(veth8b0547e6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:54:48.803974033Z]: device veth8b0547e6 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:54:48.866623033Z]: cni0: port 1(veth8b0547e6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:55:52.862601033Z]: cni0: port 1(vethc9589bda) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:55:52.933594033Z]: cni0: port 1(vethc9589bda) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:55:53.004734033Z]: device vethc9589bda entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:55:53.084243033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:55:53.161622033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc9589bda: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:55:53.247232033Z]: cni0: port 1(vethc9589bda) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:55:53.247242033Z]: cni0: port 1(vethc9589bda) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:55:55.961989033Z]: cni0: port 1(vethc9589bda) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:55:56.033855033Z]: device vethc9589bda left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:55:56.096588033Z]: cni0: port 1(vethc9589bda) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:55:57.550226033Z]: cni0: port 1(vethf51b161b) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:55:57.621273033Z]: cni0: port 1(vethf51b161b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:55:57.621508033Z]: device vethf51b161b entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:55:57.773234033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:55:57.850480033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf51b161b: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:55:57.850538033Z]: cni0: port 1(vethf51b161b) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:55:58.006927033Z]: cni0: port 1(vethf51b161b) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:56:00.988562033Z]: cni0: port 1(vethf51b161b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:56:01.060288033Z]: device vethf51b161b left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:56:01.122970033Z]: cni0: port 1(vethf51b161b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.064826033Z]: cni0: port 1(vethb8cbda37) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.135823033Z]: cni0: port 1(vethb8cbda37) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.206988033Z]: device vethb8cbda37 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.272967033Z]: cni0: port 1(vethb8cbda37) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.343947033Z]: cni0: port 1(vethb8cbda37) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.417127033Z]: cni0: port 1(vethb8cbda37) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.420879033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.565626033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb8cbda37: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.651286033Z]: cni0: port 1(vethb8cbda37) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:56:02.722227033Z]: cni0: port 1(vethb8cbda37) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:56:10.030887033Z]: cni0: port 1(vethb8cbda37) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:56:10.102705033Z]: device vethb8cbda37 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:56:10.165374033Z]: cni0: port 1(vethb8cbda37) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.549631033Z]: cni0: port 1(vethedfa3330) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.620620033Z]: cni0: port 1(vethedfa3330) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.691769033Z]: device vethedfa3330 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.772621033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.849932033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethedfa3330: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.935509033Z]: cni0: port 1(vethedfa3330) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:57:33.935517033Z]: cni0: port 1(vethedfa3330) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:57:37.352893033Z]: cni0: port 1(vethedfa3330) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:57:37.424954033Z]: device vethedfa3330 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:57:37.487603033Z]: cni0: port 1(vethedfa3330) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.308522033Z]: cni0: port 1(vethec9e6617) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.379437033Z]: cni0: port 1(vethec9e6617) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.450718033Z]: device vethec9e6617 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.528689033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.528787033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethec9e6617: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.691529033Z]: cni0: port 1(vethec9e6617) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:46.762434033Z]: cni0: port 1(vethec9e6617) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:58:50.612786033Z]: cni0: port 1(vethec9e6617) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:50.684365033Z]: device vethec9e6617 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:58:50.746933033Z]: cni0: port 1(vethec9e6617) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:51.766433033Z]: cni0: port 1(veth93221af7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:51.837365033Z]: cni0: port 1(veth93221af7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:51.908516033Z]: device veth93221af7 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:58:51.974511033Z]: cni0: port 1(veth93221af7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:52.045447033Z]: cni0: port 1(veth93221af7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:58:52.118464033Z]: cni0: port 1(veth93221af7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:52.122387033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:58:52.266890033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth93221af7: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:58:52.352446033Z]: cni0: port 1(veth93221af7) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:52.423352033Z]: cni0: port 1(veth93221af7) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:58:55.655839033Z]: cni0: port 1(veth93221af7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:55.727549033Z]: device veth93221af7 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:58:55.790128033Z]: cni0: port 1(veth93221af7) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:56.807645033Z]: cni0: port 1(veth9820b5d0) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:56.878633033Z]: cni0: port 1(veth9820b5d0) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:56.949743033Z]: device veth9820b5d0 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.015632033Z]: cni0: port 1(veth9820b5d0) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.086508033Z]: cni0: port 1(veth9820b5d0) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.159656033Z]: cni0: port 1(veth9820b5d0) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.232883033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.310186033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9820b5d0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.395785033Z]: cni0: port 1(veth9820b5d0) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T17:58:57.466648033Z]: cni0: port 1(veth9820b5d0) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T17:59:03.686063033Z]: cni0: port 1(veth9820b5d0) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T17:59:03.757826033Z]: device veth9820b5d0 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T17:59:03.820437033Z]: cni0: port 1(veth9820b5d0) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.510784033Z]: cni0: port 1(vetha94c3196) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.581735033Z]: cni0: port 1(vetha94c3196) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.652846033Z]: device vetha94c3196 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.733801033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.811174033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha94c3196: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.896823033Z]: cni0: port 1(vetha94c3196) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:01:55.896832033Z]: cni0: port 1(vetha94c3196) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.235794033Z]: cni0: port 2(veth8172dd70) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.306782033Z]: cni0: port 2(veth8172dd70) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.377946033Z]: device veth8172dd70 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.456786033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.534025033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth8172dd70: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.534085033Z]: cni0: port 2(veth8172dd70) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:03:48.690526033Z]: cni0: port 2(veth8172dd70) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:03:56.754234033Z]: cni0: port 2(veth8172dd70) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:03:56.826206033Z]: device veth8172dd70 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:03:56.888822033Z]: cni0: port 2(veth8172dd70) entered disabled state
+ceph-thin3: user: warning: [2024-03-22T18:09:30.463375033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-22T18:46:21.581156033Z]: cni0: port 1(vetha94c3196) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:46:21.652814033Z]: device vetha94c3196 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:46:21.715391033Z]: cni0: port 1(vetha94c3196) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.174100033Z]: cni0: port 1(veth6d367f61) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.245025033Z]: cni0: port 1(veth6d367f61) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.316144033Z]: device veth6d367f61 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.399321033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.476844033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6d367f61: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.562578033Z]: cni0: port 1(veth6d367f61) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:46:52.633510033Z]: cni0: port 1(veth6d367f61) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:46:56.383073033Z]: cni0: port 1(veth6d367f61) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:46:56.455060033Z]: device veth6d367f61 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:46:56.517676033Z]: cni0: port 1(veth6d367f61) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:15.957253033Z]: cni0: port 1(veth4361fbdb) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:16.028132033Z]: cni0: port 1(veth4361fbdb) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:16.099208033Z]: device veth4361fbdb entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:48:16.178293033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:48:16.255567033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4361fbdb: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:48:16.255629033Z]: cni0: port 1(veth4361fbdb) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:16.255636033Z]: cni0: port 1(veth4361fbdb) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:48:19.666545033Z]: cni0: port 1(veth4361fbdb) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:19.738378033Z]: device veth4361fbdb left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:48:19.800972033Z]: cni0: port 1(veth4361fbdb) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:20.769248033Z]: cni0: port 1(veth40d183b6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:20.840203033Z]: cni0: port 1(veth40d183b6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:20.911261033Z]: device veth40d183b6 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:48:20.977168033Z]: cni0: port 1(veth40d183b6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:21.048027033Z]: cni0: port 1(veth40d183b6) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:48:21.121722033Z]: cni0: port 1(veth40d183b6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:21.198333033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:48:21.275595033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth40d183b6: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:48:21.361166033Z]: cni0: port 1(veth40d183b6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:21.361176033Z]: cni0: port 1(veth40d183b6) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:48:25.699131033Z]: cni0: port 1(veth40d183b6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:25.770937033Z]: device veth40d183b6 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:48:25.833557033Z]: cni0: port 1(veth40d183b6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:26.883585033Z]: cni0: port 1(vetha11a4ded) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:26.954542033Z]: cni0: port 1(vetha11a4ded) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.025612033Z]: device vetha11a4ded entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.091510033Z]: cni0: port 1(vetha11a4ded) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.162398033Z]: cni0: port 1(vetha11a4ded) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.236248033Z]: cni0: port 1(vetha11a4ded) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.314013033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.391321033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha11a4ded: link becomes ready
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.476818033Z]: cni0: port 1(vetha11a4ded) entered blocking state
+ceph-thin3: kern:    info: [2024-03-22T18:48:27.547699033Z]: cni0: port 1(vetha11a4ded) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-22T18:48:33.745782033Z]: cni0: port 1(vetha11a4ded) entered disabled state
+ceph-thin3: kern:    info: [2024-03-22T18:48:33.817520033Z]: device vetha11a4ded left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-22T18:48:33.880167033Z]: cni0: port 1(vetha11a4ded) entered disabled state
+ceph-thin3: user: warning: [2024-03-22T19:30:05.621251033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T20:50:40.783009033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T22:11:15.946157033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-22T23:31:51.181816033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T00:52:26.390000033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T02:13:01.656148033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T03:33:36.817432033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T04:54:11.992045033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T06:14:47.165650033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T07:35:22.333846033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T08:55:57.497126033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T10:16:32.656869033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T11:37:07.821077033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T12:57:42.980974033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T14:18:18.151341033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-23T15:29:54.719153033Z]: cni0: port 1(veth097670a9) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:29:54.790039033Z]: cni0: port 1(veth097670a9) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:29:54.861221033Z]: device veth097670a9 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:29:54.943527033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:29:55.020942033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth097670a9: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:29:55.106577033Z]: cni0: port 1(veth097670a9) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:29:55.106584033Z]: cni0: port 1(veth097670a9) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T15:29:58.135279033Z]: cni0: port 1(veth097670a9) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:29:58.219467033Z]: device veth097670a9 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:29:58.282046033Z]: cni0: port 1(veth097670a9) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:26.557402033Z]: cni0: port 1(veth6f30f569) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:26.628250033Z]: cni0: port 1(veth6f30f569) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:26.699264033Z]: device veth6f30f569 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:31:26.783089033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:31:26.860363033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6f30f569: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:31:26.860632033Z]: cni0: port 1(veth6f30f569) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:27.016620033Z]: cni0: port 1(veth6f30f569) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T15:31:30.463711033Z]: cni0: port 1(veth6f30f569) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:30.535371033Z]: device veth6f30f569 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:31:30.597905033Z]: cni0: port 1(veth6f30f569) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:31.664458033Z]: cni0: port 1(veth401f2acc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:31.735361033Z]: cni0: port 1(veth401f2acc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:31.806686033Z]: device veth401f2acc entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:31:31.872619033Z]: cni0: port 1(veth401f2acc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:31.943533033Z]: cni0: port 1(veth401f2acc) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T15:31:32.016960033Z]: cni0: port 1(veth401f2acc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:32.102959033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:31:32.180188033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth401f2acc: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:31:32.265674033Z]: cni0: port 1(veth401f2acc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:32.265681033Z]: cni0: port 1(veth401f2acc) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T15:31:35.492423033Z]: cni0: port 1(veth401f2acc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:35.564219033Z]: device veth401f2acc left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:31:35.626720033Z]: cni0: port 1(veth401f2acc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.069708033Z]: cni0: port 1(vethacca5df8) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.140631033Z]: cni0: port 1(vethacca5df8) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.140852033Z]: device vethacca5df8 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.290488033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.367716033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethacca5df8: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.453315033Z]: cni0: port 1(vethacca5df8) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:31:37.524151033Z]: cni0: port 1(vethacca5df8) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T15:31:44.554453033Z]: cni0: port 1(vethacca5df8) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:31:44.626190033Z]: device vethacca5df8 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:31:44.688794033Z]: cni0: port 1(vethacca5df8) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.077996033Z]: cni0: port 1(veth3798daa8) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.148874033Z]: cni0: port 1(veth3798daa8) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.220021033Z]: device veth3798daa8 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.297500033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.374763033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3798daa8: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.460298033Z]: cni0: port 1(veth3798daa8) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T15:32:45.460307033Z]: cni0: port 1(veth3798daa8) entered forwarding state
+ceph-thin3: user: warning: [2024-03-23T15:38:53.322156033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T16:59:28.493727033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T18:20:03.660804033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T19:40:38.827280033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T21:01:13.998421033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-23T22:21:49.164140033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-23T22:56:33.966154033Z]: cni0: port 1(veth3798daa8) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:56:34.038189033Z]: device veth3798daa8 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:56:34.100826033Z]: cni0: port 1(veth3798daa8) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:57:29.698389033Z]: cni0: port 1(veth2a4ad3d4) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:57:29.769381033Z]: cni0: port 1(veth2a4ad3d4) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:57:29.840521033Z]: device veth2a4ad3d4 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:57:29.921291033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:57:29.998561033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth2a4ad3d4: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:57:30.084100033Z]: cni0: port 1(veth2a4ad3d4) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:57:30.084107033Z]: cni0: port 1(veth2a4ad3d4) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T22:57:33.931329033Z]: cni0: port 1(veth2a4ad3d4) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:57:34.003189033Z]: device veth2a4ad3d4 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:57:34.065770033Z]: cni0: port 1(veth2a4ad3d4) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:00.737483033Z]: cni0: port 1(veth853133fa) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:59:00.808503033Z]: cni0: port 1(veth853133fa) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:00.879787033Z]: device veth853133fa entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:59:00.961709033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:59:01.039119033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth853133fa: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:59:01.124746033Z]: cni0: port 1(veth853133fa) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:59:01.124755033Z]: cni0: port 1(veth853133fa) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T22:59:05.086553033Z]: cni0: port 1(veth853133fa) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:05.158508033Z]: device veth853133fa left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:59:05.221178033Z]: cni0: port 1(veth853133fa) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.361579033Z]: cni0: port 1(veth7b60bdae) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.432567033Z]: cni0: port 1(veth7b60bdae) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.503814033Z]: device veth7b60bdae entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.582077033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.659425033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7b60bdae: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.744995033Z]: cni0: port 1(veth7b60bdae) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:59:06.745003033Z]: cni0: port 1(veth7b60bdae) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T22:59:11.102471033Z]: cni0: port 1(veth7b60bdae) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:11.174449033Z]: device veth7b60bdae left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:59:11.237154033Z]: cni0: port 1(veth7b60bdae) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.514656033Z]: cni0: port 1(vethabfc9ab6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.585690033Z]: cni0: port 1(vethabfc9ab6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.656935033Z]: device vethabfc9ab6 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.737066033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.814473033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethabfc9ab6: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.900008033Z]: cni0: port 1(vethabfc9ab6) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T22:59:12.900016033Z]: cni0: port 1(vethabfc9ab6) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T22:59:20.389785033Z]: cni0: port 1(vethabfc9ab6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T22:59:20.461652033Z]: device vethabfc9ab6 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T22:59:20.524245033Z]: cni0: port 1(vethabfc9ab6) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T23:00:21.895566033Z]: cni0: port 1(vethbe88e2ec) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T23:00:21.966616033Z]: cni0: port 1(vethbe88e2ec) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T23:00:22.037879033Z]: device vethbe88e2ec entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T23:00:22.123793033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T23:00:22.201293033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethbe88e2ec: link becomes ready
+ceph-thin3: kern:    info: [2024-03-23T23:00:22.286922033Z]: cni0: port 1(vethbe88e2ec) entered blocking state
+ceph-thin3: kern:    info: [2024-03-23T23:00:22.286932033Z]: cni0: port 1(vethbe88e2ec) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-23T23:04:04.494310033Z]: cni0: port 1(vethbe88e2ec) entered disabled state
+ceph-thin3: kern:    info: [2024-03-23T23:04:04.566288033Z]: device vethbe88e2ec left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-23T23:04:04.628968033Z]: cni0: port 1(vethbe88e2ec) entered disabled state
+ceph-thin3: user: warning: [2024-03-23T23:42:24.334415033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T01:02:59.498060033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.190016033Z]: cni0: port 1(veth31797aad) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.260759033Z]: cni0: port 1(veth31797aad) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.331776033Z]: device veth31797aad entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.408596033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.485766033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth31797aad: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.485832033Z]: cni0: port 1(veth31797aad) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:23:43.641885033Z]: cni0: port 1(veth31797aad) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T01:23:51.439324033Z]: cni0: port 1(veth31797aad) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:23:51.511243033Z]: device veth31797aad left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:23:51.573742033Z]: cni0: port 1(veth31797aad) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.037998033Z]: cni0: port 1(vethdc775416) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.108986033Z]: cni0: port 1(vethdc775416) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.180135033Z]: device vethdc775416 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.263239033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.340510033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethdc775416: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.426069033Z]: cni0: port 1(vethdc775416) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:25:07.426077033Z]: cni0: port 1(vethdc775416) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T01:25:10.710410033Z]: cni0: port 1(vethdc775416) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:10.781955033Z]: device vethdc775416 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:25:10.844451033Z]: cni0: port 1(vethdc775416) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.426554033Z]: cni0: port 1(veth66352c2d) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.497259033Z]: cni0: port 1(veth66352c2d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.568276033Z]: device veth66352c2d entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.651302033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.728648033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth66352c2d: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.814042033Z]: cni0: port 1(veth66352c2d) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:25:12.814050033Z]: cni0: port 1(veth66352c2d) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T01:25:18.885399033Z]: cni0: port 1(veth66352c2d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:18.957408033Z]: device veth66352c2d left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:25:19.019960033Z]: cni0: port 1(veth66352c2d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.440617033Z]: cni0: port 1(veth7bc09981) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.511400033Z]: cni0: port 1(veth7bc09981) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.582623033Z]: device veth7bc09981 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.664282033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.741525033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7bc09981: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.826955033Z]: cni0: port 1(veth7bc09981) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:25:20.826966033Z]: cni0: port 1(veth7bc09981) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T01:25:30.954065033Z]: cni0: port 1(veth7bc09981) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:25:31.025910033Z]: device veth7bc09981 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:25:31.088468033Z]: cni0: port 1(veth7bc09981) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.347343033Z]: cni0: port 1(veth9df6d544) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.418355033Z]: cni0: port 1(veth9df6d544) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.418554033Z]: device veth9df6d544 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.567444033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.644838033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9df6d544: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.730436033Z]: cni0: port 1(veth9df6d544) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T01:27:20.801294033Z]: cni0: port 1(veth9df6d544) entered forwarding state
+ceph-thin3: user: warning: [2024-03-24T02:23:34.670506033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T03:44:09.837483033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T05:04:44.997620033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T06:25:20.165609033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T07:45:55.334030033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T09:06:30.513462033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T10:27:05.756482033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T11:47:40.915816033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T13:08:16.072459033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T14:28:51.319514033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-24T15:35:38.134224033Z]: cni0: port 1(veth9df6d544) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:35:38.205916033Z]: device veth9df6d544 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:35:38.268490033Z]: cni0: port 1(veth9df6d544) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:36:15.662573033Z]: cni0: port 1(vethc657f38d) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:36:15.733373033Z]: cni0: port 1(vethc657f38d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:36:15.804459033Z]: device vethc657f38d entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:36:15.883470033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:36:15.960683033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc657f38d: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:36:16.046158033Z]: cni0: port 1(vethc657f38d) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:36:16.116996033Z]: cni0: port 1(vethc657f38d) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T15:36:19.378298033Z]: cni0: port 1(vethc657f38d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:36:19.450029033Z]: device vethc657f38d left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:36:19.512667033Z]: cni0: port 1(vethc657f38d) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:37.851937033Z]: cni0: port 1(veth535bcf05) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:37:37.922821033Z]: cni0: port 1(veth535bcf05) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:37.993860033Z]: device veth535bcf05 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:37:38.071095033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:37:38.148310033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth535bcf05: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:37:38.233705033Z]: cni0: port 1(veth535bcf05) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:37:38.304484033Z]: cni0: port 1(veth535bcf05) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T15:37:41.669832033Z]: cni0: port 1(veth535bcf05) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:41.741422033Z]: device veth535bcf05 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:37:41.803970033Z]: cni0: port 1(veth535bcf05) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.102283033Z]: cni0: port 1(vethae8df4ca) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.173157033Z]: cni0: port 1(vethae8df4ca) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.244202033Z]: device vethae8df4ca entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.321974033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.399277033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethae8df4ca: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.484751033Z]: cni0: port 1(vethae8df4ca) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:37:43.555638033Z]: cni0: port 1(vethae8df4ca) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T15:37:46.712088033Z]: cni0: port 1(vethae8df4ca) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:46.783856033Z]: device vethae8df4ca left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:37:46.846433033Z]: cni0: port 1(vethae8df4ca) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:48.788651033Z]: cni0: port 1(vethe2795c2c) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:37:48.859634033Z]: cni0: port 1(vethe2795c2c) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:48.930834033Z]: device vethe2795c2c entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:37:49.009712033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:37:49.086894033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe2795c2c: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T15:37:49.172337033Z]: cni0: port 1(vethe2795c2c) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T15:37:49.243151033Z]: cni0: port 1(vethe2795c2c) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T15:37:55.769885033Z]: cni0: port 1(vethe2795c2c) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T15:37:55.841498033Z]: device vethe2795c2c left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T15:37:55.904002033Z]: cni0: port 1(vethe2795c2c) entered disabled state
+ceph-thin3: user: warning: [2024-03-24T15:49:26.480975033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T17:10:01.642163033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T18:30:36.802056033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T19:51:11.958928033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-24T20:50:37.745271033Z]: cni0: port 1(vethcbb73949) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:50:37.816197033Z]: cni0: port 1(vethcbb73949) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:50:37.887372033Z]: device vethcbb73949 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:50:37.964861033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:50:38.042209033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethcbb73949: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:50:38.127739033Z]: cni0: port 1(vethcbb73949) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:50:38.198574033Z]: cni0: port 1(vethcbb73949) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T20:50:54.035057033Z]: cni0: port 1(vethcbb73949) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:50:54.106857033Z]: device vethcbb73949 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:50:54.169422033Z]: cni0: port 1(vethcbb73949) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.015243033Z]: cni0: port 1(veth05745d07) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.086102033Z]: cni0: port 1(veth05745d07) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.157182033Z]: device veth05745d07 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.238024033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.315357033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth05745d07: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.400899033Z]: cni0: port 1(veth05745d07) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:54:21.471790033Z]: cni0: port 1(veth05745d07) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T20:54:24.961420033Z]: cni0: port 1(veth05745d07) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:54:25.033140033Z]: device veth05745d07 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:54:25.095680033Z]: cni0: port 1(veth05745d07) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.357008033Z]: cni0: port 1(veth6d483043) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.427967033Z]: cni0: port 1(veth6d483043) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.499122033Z]: device veth6d483043 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.576226033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.653533033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6d483043: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.739075033Z]: cni0: port 1(veth6d483043) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:55:41.739082033Z]: cni0: port 1(veth6d483043) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T20:55:45.259370033Z]: cni0: port 1(veth6d483043) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:45.331520033Z]: device veth6d483043 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:55:45.394058033Z]: cni0: port 1(veth6d483043) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:46.869249033Z]: cni0: port 1(vethfe803034) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:55:46.940147033Z]: cni0: port 1(vethfe803034) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:47.011450033Z]: device vethfe803034 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:55:47.103395033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:55:47.180665033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethfe803034: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:55:47.266113033Z]: cni0: port 1(vethfe803034) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:55:47.266120033Z]: cni0: port 1(vethfe803034) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T20:55:50.284134033Z]: cni0: port 1(vethfe803034) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:50.355930033Z]: device vethfe803034 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:55:50.418454033Z]: cni0: port 1(vethfe803034) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:51.843103033Z]: cni0: port 1(vethc5407e5b) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:55:51.914047033Z]: cni0: port 1(vethc5407e5b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:51.985230033Z]: device vethc5407e5b entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:55:52.065648033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:55:52.142903033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc5407e5b: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:55:52.228511033Z]: cni0: port 1(vethc5407e5b) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:55:52.299408033Z]: cni0: port 1(vethc5407e5b) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-24T20:55:59.347051033Z]: cni0: port 1(vethc5407e5b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:55:59.418774033Z]: device vethc5407e5b left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:55:59.481388033Z]: cni0: port 1(vethc5407e5b) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.412825033Z]: cni0: port 1(veth1f07f3fa) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.483728033Z]: cni0: port 1(veth1f07f3fa) entered disabled state
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.483963033Z]: device veth1f07f3fa entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.635410033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.712840033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth1f07f3fa: link becomes ready
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.798393033Z]: cni0: port 1(veth1f07f3fa) entered blocking state
+ceph-thin3: kern:    info: [2024-03-24T20:57:37.798401033Z]: cni0: port 1(veth1f07f3fa) entered forwarding state
+ceph-thin3: user: warning: [2024-03-24T21:11:47.159251033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T22:32:22.334983033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-24T23:52:57.497644033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T01:13:32.658275033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T02:34:07.825565033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T03:54:42.994649033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T05:15:18.156957033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T06:35:53.314519033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T07:56:28.481925033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T09:17:03.654250033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T10:37:38.812938033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T11:58:13.973156033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T13:18:49.133946033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T14:39:24.295182033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T15:59:59.469325033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T17:20:34.629873033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T18:41:09.792514033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T20:01:44.953303033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T21:22:20.114706033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-25T22:42:55.280537033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T00:03:30.539025033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T01:24:05.703861033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T02:44:40.862142033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T04:05:16.255186033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T05:25:51.419658033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T06:46:26.583456033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T08:07:01.742065033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T09:27:36.910294033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T10:48:12.074696033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-26T12:05:07.760831033Z]: cni0: port 2(vethb7c96449) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:05:07.831595033Z]: cni0: port 2(vethb7c96449) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:05:07.902611033Z]: device vethb7c96449 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:05:07.982310033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:05:08.059498033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb7c96449: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:05:08.145001033Z]: cni0: port 2(vethb7c96449) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:05:08.215921033Z]: cni0: port 2(vethb7c96449) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-26T12:05:15.124657033Z]: cni0: port 2(vethb7c96449) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:05:15.196732033Z]: device vethb7c96449 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:05:15.259293033Z]: cni0: port 2(vethb7c96449) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:07:26.852584033Z]: cni0: port 1(veth1f07f3fa) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:07:26.924473033Z]: device veth1f07f3fa left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:07:26.987130033Z]: cni0: port 1(veth1f07f3fa) entered disabled state
+ceph-thin3: user: warning: [2024-03-26T12:08:47.238392033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: kern:    info: [2024-03-26T12:10:04.720398033Z]: cni0: port 1(vethe2967c66) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:10:04.791326033Z]: cni0: port 1(vethe2967c66) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:10:04.791546033Z]: device vethe2967c66 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:10:04.941675033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:10:05.019025033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe2967c66: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:10:05.104615033Z]: cni0: port 1(vethe2967c66) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:10:05.175554033Z]: cni0: port 1(vethe2967c66) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-26T12:10:09.470907033Z]: cni0: port 1(vethe2967c66) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:10:09.542882033Z]: device vethe2967c66 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:10:09.605539033Z]: cni0: port 1(vethe2967c66) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:22.858232033Z]: cni0: port 1(vethb48a2c46) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:11:22.929118033Z]: cni0: port 1(vethb48a2c46) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:23.000221033Z]: device vethb48a2c46 entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:11:23.077057033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:11:23.154431033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb48a2c46: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:11:23.239951033Z]: cni0: port 1(vethb48a2c46) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:11:23.239957033Z]: cni0: port 1(vethb48a2c46) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-26T12:11:27.461329033Z]: cni0: port 1(vethb48a2c46) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:27.533324033Z]: device vethb48a2c46 left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:11:27.595946033Z]: cni0: port 1(vethb48a2c46) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.241604033Z]: cni0: port 1(veth9da44ebc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.312608033Z]: cni0: port 1(veth9da44ebc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.383788033Z]: device veth9da44ebc entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.482560033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.559883033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9da44ebc: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.645446033Z]: cni0: port 1(veth9da44ebc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:11:29.716378033Z]: cni0: port 1(veth9da44ebc) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-26T12:11:34.497531033Z]: cni0: port 1(veth9da44ebc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:34.569457033Z]: device veth9da44ebc left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:11:34.632116033Z]: cni0: port 1(veth9da44ebc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.019565033Z]: cni0: port 1(vethb09a18cc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.090473033Z]: cni0: port 1(vethb09a18cc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.161639033Z]: device vethb09a18cc entered promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.241122033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.318369033Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb09a18cc: link becomes ready
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.403949033Z]: cni0: port 1(vethb09a18cc) entered blocking state
+ceph-thin3: kern:    info: [2024-03-26T12:11:37.403956033Z]: cni0: port 1(vethb09a18cc) entered forwarding state
+ceph-thin3: kern:    info: [2024-03-26T12:11:44.925573033Z]: cni0: port 1(vethb09a18cc) entered disabled state
+ceph-thin3: kern:    info: [2024-03-26T12:11:44.997436033Z]: device vethb09a18cc left promiscuous mode
+ceph-thin3: kern:    info: [2024-03-26T12:11:45.060000033Z]: cni0: port 1(vethb09a18cc) entered disabled state
+ceph-thin3: user: warning: [2024-03-26T13:29:22.402327033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T14:49:57.750069033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T16:10:32.907219033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T17:31:08.073585033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T18:51:43.228329033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T20:12:18.389913033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T21:32:53.718508033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-26T22:53:28.949088033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T00:14:04.214064033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T01:34:39.367082033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T02:55:14.528421033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T04:15:49.688826033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T05:36:24.865550033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T06:57:00.025252033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T08:17:35.190288033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T09:38:10.350259033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T10:58:45.506050033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T12:19:20.667400033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T13:39:56.016063033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin3: user: warning: [2024-03-27T15:00:31.176040033Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}

+ 2648 - 0
dezendorf/homelab/talos/dmesg.ceph-thin4.txt

@@ -0,0 +1,2648 @@
+ceph-thin4: kern:  notice: [2024-03-10T02:18:39.892338849Z]: Linux version 6.1.61-talos (@buildkitsandbox) (gcc (GCC) 12.3.0, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT_DYNAMIC Wed Nov  8 10:39:42 UTC 2023
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: Command line: talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-provided physical RAM map:
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x0000000000000000-0x000000000009718f] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x0000000000097190-0x000000000009719f] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000000971a0-0x000000000009d7ff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x0000000000100000-0x00000000ddfa6fff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000ddfa7000-0x00000000de0a0fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000de0a1000-0x00000000de0dafff] ACPI data
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000de0db000-0x00000000de577fff] ACPI NVS
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000de578000-0x00000000de853fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: BIOS-e820: [mem 0x0000000100000000-0x00000002deffffff] usable
+ceph-thin4: kern:  notice: [2024-03-10T02:18:39.892338849Z]: random: crng init done
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: NX (Execute Disable) protection: active
+ceph-thin4: kern:   debug: [2024-03-10T02:18:39.892338849Z]: e820: update [mem 0x00091190-0x0009119f] usable ==> usable
+ceph-thin4: kern:   debug: [2024-03-10T02:18:39.892338849Z]: e820: update [mem 0x00091190-0x0009119f] usable ==> usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: extended physical RAM map:
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x0000000000000000-0x000000000009118f] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x0000000000091190-0x000000000009119f] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000000911a0-0x000000000009718f] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x0000000000097190-0x000000000009719f] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000000971a0-0x000000000009d7ff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x000000000009d800-0x000000000009ffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000000e0000-0x00000000000fffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x0000000000100000-0x00000000ddfa6fff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000ddfa7000-0x00000000de0a0fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000de0a1000-0x00000000de0dafff] ACPI data
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000de0db000-0x00000000de577fff] ACPI NVS
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000de578000-0x00000000de853fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000de854000-0x00000000deffffff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedc8fff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: reserve setup_data: [mem 0x0000000100000000-0x00000002deffffff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: SMBIOS 2.8 present.
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: DMI: HP HP t630 Thin Client/8158, BIOS M40 v01.03 10/05/2016
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: tsc: Fast TSC calibration using PIT
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.892338849Z]: tsc: Detected 1996.217 MHz processor
+ceph-thin4: kern:   debug: [2024-03-10T02:18:39.895815849Z]: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
+ceph-thin4: kern:   debug: [2024-03-10T02:18:39.895827849Z]: e820: remove [mem 0x000a0000-0x000fffff] usable
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.895876849Z]: last_pfn = 0x2df000 max_arch_pfn = 0x400000000
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.896237849Z]: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
+ceph-thin4: kern:   debug: [2024-03-10T02:18:39.896726849Z]: e820: update [mem 0xdf000000-0xffffffff] usable ==> reserved
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.896754849Z]: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.914565849Z]: found SMP MP-table at [mem 0x000fcc10-0x000fcc1f]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.914628849Z]: Kernel/User page tables isolation: force enabled on command line.
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.914634849Z]: Using GB pages for direct mapping
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917127849Z]: RAMDISK: [mem 0xd606f000-0xd99fffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917140849Z]: ACPI: Early table checksum verification disabled
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917148849Z]: ACPI: RSDP 0x00000000000F05B0 000024 (v02 HPQOEM)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917163849Z]: ACPI: XSDT 0x00000000DE0AC090 0000A4 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917184849Z]: ACPI: FACP 0x00000000DE0BC7F0 00010C (v05 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin4: kern: warning: [2024-03-10T02:18:39.917200849Z]: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20220331/tbfadt-615)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917215849Z]: ACPI: DSDT 0x00000000DE0AC1C8 010623 (v02 HPQOEM SLIC-WKS 01072009 INTL 20120913)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917229849Z]: ACPI: FACS 0x00000000DE576C80 000040
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917238849Z]: ACPI: APIC 0x00000000DE0BC900 00007E (v03 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917250849Z]: ACPI: FPDT 0x00000000DE0BC980 000044 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917262849Z]: ACPI: FIDT 0x00000000DE0BC9C8 00009C (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917273849Z]: ACPI: TCPA 0x00000000DE0BCA68 000032 (v02 ALASKA NAPAASF  00000001 MSFT 01000013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917285849Z]: ACPI: MCFG 0x00000000DE0BCAA0 00003C (v01 HPQOEM SLIC-WKS 01072009 MSFT 00010013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917296849Z]: ACPI: HPET 0x00000000DE0BCAE0 000038 (v01 HPQOEM SLIC-WKS 01072009 AMI  00000005)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917307849Z]: ACPI: UEFI 0x00000000DE0BCB18 000042 (v01                 00000000      00000000)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917318849Z]: ACPI: IVRS 0x00000000DE0BCB60 0000D0 (v02 AMD    AGESA    00000001 AMD  00000000)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917329849Z]: ACPI: DBGP 0x00000000DE0BCC30 000034 (v01 HPQOEM SLIC-WKS 01072009 AMI  00010013)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917340849Z]: ACPI: SSDT 0x00000000DE0BCC68 000843 (v01 HPQOEM SLIC-WKS 00000001 INTL 20120913)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917352849Z]: ACPI: SSDT 0x00000000DE0BD4B0 000EE4 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917363849Z]: ACPI: SSDT 0x00000000DE0BE398 00873A (v02 AMD    AGESA    00000002 MSFT 04000000)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917374849Z]: ACPI: CRAT 0x00000000DE0C6AD8 000528 (v01 AMD    AGESA    00000001 AMD  00000001)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917385849Z]: ACPI: SSDT 0x00000000DE0C7000 00147F (v01 AMD    CPMDFIGP 00000001 INTL 20120913)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917396849Z]: ACPI: SSDT 0x00000000DE0C8480 0015F0 (v01 AMD    CPMCMN   00000001 INTL 20120913)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917406849Z]: ACPI: Reserving FACP table memory at [mem 0xde0bc7f0-0xde0bc8fb]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917412849Z]: ACPI: Reserving DSDT table memory at [mem 0xde0ac1c8-0xde0bc7ea]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917417849Z]: ACPI: Reserving FACS table memory at [mem 0xde576c80-0xde576cbf]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917421849Z]: ACPI: Reserving APIC table memory at [mem 0xde0bc900-0xde0bc97d]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917425849Z]: ACPI: Reserving FPDT table memory at [mem 0xde0bc980-0xde0bc9c3]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917429849Z]: ACPI: Reserving FIDT table memory at [mem 0xde0bc9c8-0xde0bca63]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917433849Z]: ACPI: Reserving TCPA table memory at [mem 0xde0bca68-0xde0bca99]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917437849Z]: ACPI: Reserving MCFG table memory at [mem 0xde0bcaa0-0xde0bcadb]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917441849Z]: ACPI: Reserving HPET table memory at [mem 0xde0bcae0-0xde0bcb17]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917445849Z]: ACPI: Reserving UEFI table memory at [mem 0xde0bcb18-0xde0bcb59]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917449849Z]: ACPI: Reserving IVRS table memory at [mem 0xde0bcb60-0xde0bcc2f]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917453849Z]: ACPI: Reserving DBGP table memory at [mem 0xde0bcc30-0xde0bcc63]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917457849Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bcc68-0xde0bd4aa]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917460849Z]: ACPI: Reserving SSDT table memory at [mem 0xde0bd4b0-0xde0be393]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917464849Z]: ACPI: Reserving SSDT table memory at [mem 0xde0be398-0xde0c6ad1]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917468849Z]: ACPI: Reserving CRAT table memory at [mem 0xde0c6ad8-0xde0c6fff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917472849Z]: ACPI: Reserving SSDT table memory at [mem 0xde0c7000-0xde0c847e]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917476849Z]: ACPI: Reserving SSDT table memory at [mem 0xde0c8480-0xde0c9a6f]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917589849Z]: No NUMA configuration found
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917592849Z]: Faking a node at [mem 0x0000000000000000-0x00000002deffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917607849Z]: NODE_DATA(0) allocated [mem 0x2deffc000-0x2deffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917742849Z]: Zone ranges:
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917745849Z]:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917752849Z]:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917758849Z]:   Normal   [mem 0x0000000100000000-0x00000002deffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917763849Z]: Movable zone start for each node
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917766849Z]: Early memory node ranges
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917768849Z]:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917774849Z]:   node   0: [mem 0x0000000000100000-0x00000000ddfa6fff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917779849Z]:   node   0: [mem 0x00000000de854000-0x00000000deffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917783849Z]:   node   0: [mem 0x0000000100000000-0x00000002deffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917791849Z]: Initmem setup node 0 [mem 0x0000000000001000-0x00000002deffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917810849Z]: On node 0, zone DMA: 1 pages in unavailable ranges
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.917922849Z]: On node 0, zone DMA: 99 pages in unavailable ranges
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.942946849Z]: On node 0, zone DMA32: 2221 pages in unavailable ranges
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997066849Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997189849Z]: On node 0, zone Normal: 4096 pages in unavailable ranges
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997291849Z]: ACPI: PM-Timer IO Port: 0x808
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997313849Z]: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997331849Z]: IOAPIC[0]: apic_id 0, version 33, address 0xfec00000, GSI 0-23
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997342849Z]: IOAPIC[1]: apic_id 1, version 33, address 0xfec01000, GSI 24-55
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997350849Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997357849Z]: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997373849Z]: ACPI: Using ACPI (MADT) for SMP configuration information
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997376849Z]: ACPI: HPET id: 0x10228201 base: 0xfed00000
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997389849Z]: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997473849Z]: [mem 0xdf000000-0xf7ffffff] available for PCI devices
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997479849Z]: Booting paravirtualized kernel on bare hardware
+ceph-thin4: kern:    info: [2024-03-10T02:18:39.997485849Z]: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.028836849Z]: setup_percpu: NR_CPUS:512 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.029739849Z]: percpu: Embedded 56 pages/cpu s192080 r8192 d29104 u524288
+ceph-thin4: kern:   debug: [2024-03-10T02:18:40.029766849Z]: pcpu-alloc: s192080 r8192 d29104 u524288 alloc=1*2097152
+ceph-thin4: kern:   debug: [2024-03-10T02:18:40.029776849Z]: pcpu-alloc: [0] 0 1 2 3 
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.029865849Z]: Fallback order for Node 0: 0 
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.029875849Z]: Built 1 zonelists, mobility grouping on.  Total pages: 2828021
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.029882849Z]: Policy zone: Normal
+ceph-thin4: kern:  notice: [2024-03-10T02:18:40.029887849Z]: Kernel command line: talos.platform=metal talos.config=http://192.168.1.87:1880/wk.yaml console=ttyS0 console=tty0 init_on_alloc=1 slab_nomerge pti=on consoleblank=0 nvme_core.io_timeout=4294967295 printk.devkmsg=on ima_template=ima-ng ima_appraise=fix ima_hash=sha512
+ceph-thin4: kern:  notice: [2024-03-10T02:18:40.030875849Z]: Unknown kernel command line parameters "pti=on", will be passed to user space.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.035819849Z]: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.038300849Z]: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.038382849Z]: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.038435849Z]: software IO TLB: area num 4.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.160971849Z]: Memory: 11092744K/11492284K available (28692K kernel code, 3989K rwdata, 17468K rodata, 3088K init, 2692K bss, 399280K reserved, 0K cma-reserved)
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.161486849Z]: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.161528849Z]: Kernel/User page tables isolation: enabled
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.161635849Z]: ftrace: allocating 82001 entries in 321 pages
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.225546849Z]: ftrace: allocated 321 pages with 3 groups
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231124849Z]: Dynamic Preempt: voluntary
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231247849Z]: rcu: Preemptible hierarchical RCU implementation.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231250849Z]: rcu: \x09RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231255849Z]: \x09Trampoline variant of Tasks RCU enabled.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231257849Z]: \x09Rude variant of Tasks RCU enabled.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231259849Z]: \x09Tracing variant of Tasks RCU enabled.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231262849Z]: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.231265849Z]: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.257176849Z]: NR_IRQS: 33024, nr_irqs: 1000, preallocated irqs: 16
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.257494849Z]: rcu: srcu_init: Setting srcu_struct sizes based on contention.
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.257890849Z]: Console: colour dummy device 80x25
+ceph-thin4: kern:    info: [2024-03-10T02:18:40.259084849Z]: printk: console [tty0] enabled
+ceph-thin4: kern:    info: [2024-03-10T02:18:53.643758849Z]: printk: console [ttyS0] enabled
+ceph-thin4: kern:    info: [2024-03-10T02:18:53.693783849Z]: ACPI: Core revision 20220331
+ceph-thin4: kern:    info: [2024-03-10T02:18:53.741000849Z]: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
+ceph-thin4: kern:    info: [2024-03-10T02:18:53.850209849Z]: APIC: Switch to symmetric I/O mode setup
+ceph-thin4: kern:    info: [2024-03-10T02:18:53.910189849Z]: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
+ceph-thin4: kern:    info: [2024-03-10T02:18:53.998211849Z]: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398c7135575, max_idle_ns: 881590756769 ns
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.124200849Z]: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.43 BogoMIPS (lpj=7984868)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.128249849Z]: LVT offset 1 assigned for vector 0xf9
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.132211849Z]: Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.136190849Z]: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.140198849Z]: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.144196849Z]: Spectre V2 : Mitigation: Retpolines
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.148190849Z]: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.152190849Z]: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.156191849Z]: RETBleed: Mitigation: untrained return thunk
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.160195849Z]: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.164205849Z]: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.168190849Z]: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.172190849Z]: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.176193849Z]: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.180190849Z]: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.233428849Z]: Freeing SMP alternatives memory: 68K
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.236193849Z]: pid_max: default: 32768 minimum: 301
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.240306849Z]: LSM: Security Framework initializing
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.244206849Z]: Yama: becoming mindful.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.248336849Z]: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.252261849Z]: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.368553849Z]: smpboot: CPU0: AMD Embedded G-Series GX-420GI Radeon R7E (family: 0x15, model: 0x60, stepping: 0x1)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.372654849Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.376191849Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.380259849Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.384190849Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.388245849Z]: cblist_init_generic: Setting adjustable number of callback queues.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.392190849Z]: cblist_init_generic: Setting shift to 2 and lim to 1.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.396242849Z]: Performance Events: Fam15h core perfctr, AMD PMU driver.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.400192849Z]: ... version:                0
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.404190849Z]: ... bit width:              48
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.408189849Z]: ... generic registers:      6
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.412189849Z]: ... value mask:             0000ffffffffffff
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.416189849Z]: ... max period:             00007fffffffffff
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.420189849Z]: ... fixed-purpose events:   0
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.424189849Z]: ... event mask:             000000000000003f
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.428663849Z]: signal: max sigframe size: 1776
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.432264849Z]: rcu: Hierarchical SRCU implementation.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.436191849Z]: rcu: \x09Max phase no-delay instances is 1000.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.440758849Z]: MCE: In-kernel MCE decoding enabled.
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.444347849Z]: smp: Bringing up secondary CPUs ...
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.452415849Z]: x86: Booting SMP configuration:
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.456191849Z]: .... node  #0, CPUs:      #1 #2 #3
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.466422849Z]: smp: Brought up 1 node, 4 CPUs
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.472198849Z]: smpboot: Max logical packages: 1
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.476191849Z]: smpboot: Total of 4 processors activated (15969.73 BogoMIPS)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.485282849Z]: devtmpfs: initialized
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.492390849Z]: ACPI: PM: Registering ACPI NVS region [mem 0xde0db000-0xde577fff] (4837376 bytes)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.496614849Z]: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.500222849Z]: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.504607849Z]: PM: RTC time: 02:18:40, date: 2024-03-10
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.510895849Z]: NET: Registered PF_NETLINK/PF_ROUTE protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.513132849Z]: audit: initializing netlink subsys (disabled)
+ceph-thin4: kern:  notice: [2024-03-10T02:18:54.516272849Z]: audit: type=2000 audit(1710037102.420:1): state=initialized audit_enabled=0 res=1
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.516517849Z]: thermal_sys: Registered thermal governor 'step_wise'
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.520194849Z]: thermal_sys: Registered thermal governor 'user_space'
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.524254849Z]: cpuidle: using governor menu
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.644690849Z]: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.724344849Z]: dca service started, version 1.12.1
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.776211849Z]: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.888193849Z]: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
+ceph-thin4: kern:    info: [2024-03-10T02:18:54.968220849Z]: PCI: Using configuration type 1 for base access
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.048381849Z]: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.056283849Z]: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.136195849Z]: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.212334849Z]: cryptd: max_cpu_qlen set to 1000
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.264393849Z]: ACPI: Added _OSI(Module Device)
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.312192849Z]: ACPI: Added _OSI(Processor Device)
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.368190849Z]: ACPI: Added _OSI(3.0 _SCP Extensions)
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.424190849Z]: ACPI: Added _OSI(Processor Aggregator Device)
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.511543849Z]: ACPI: 6 ACPI AML tables successfully acquired and loaded
+ceph-thin4: kern:  notice: [2024-03-10T02:18:55.591998849Z]: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.670595849Z]: ACPI: Interpreter enabled
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.712233849Z]: ACPI: PM: (supports S0 S3 S5)
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.760192849Z]: ACPI: Using IOAPIC for interrupt routing
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.820251849Z]: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+ceph-thin4: kern:    info: [2024-03-10T02:18:55.932192849Z]: PCI: Using E820 reservations for host bridge windows
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.000636849Z]: ACPI: Enabled 5 GPEs in block 00 to 1F
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.064823849Z]: ACPI: PM: Power Resource [P0SD]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.116270849Z]: ACPI: PM: Power Resource [P3SD]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.168356849Z]: ACPI: PM: Power Resource [P0U2]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.216247849Z]: ACPI: PM: Power Resource [P3U2]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.268470849Z]: ACPI: PM: Power Resource [P0U3]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.316245849Z]: ACPI: PM: Power Resource [P3U3]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.368608849Z]: ACPI: PM: Power Resource [P0ST]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.416258849Z]: ACPI: PM: Power Resource [P3ST]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.468369849Z]: ACPI: PM: Power Resource [P0SA]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.516237849Z]: ACPI: PM: Power Resource [P3SA]
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.572381849Z]: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.648202849Z]: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.756341849Z]: acpi PNP0A08:00: _OSC: platform does not support [LTR]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.832446849Z]: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:56.928242849Z]: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0A08:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.052903849Z]: PCI host bridge to bus 0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.100190849Z]: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.184191849Z]: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.264190849Z]: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.344190849Z]: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.428191849Z]: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.516190849Z]: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.604190849Z]: pci_bus 0000:00: root bus resource [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.696196849Z]: pci_bus 0000:00: root bus resource [bus 00-ff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.760425849Z]: pci 0000:00:00.0: [1022:1576] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.832384849Z]: pci 0000:00:00.2: [1022:1577] type 00 class 0x080600
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.904385849Z]: pci 0000:00:01.0: [1002:9874] type 00 class 0x030000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:57.976205849Z]: pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.064199849Z]: pci 0000:00:01.0: reg 0x18: [mem 0xf0000000-0xf07fffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.148196849Z]: pci 0000:00:01.0: reg 0x20: [io  0xf000-0xf0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.216196849Z]: pci 0000:00:01.0: reg 0x24: [mem 0xfeb00000-0xfeb3ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.292196849Z]: pci 0000:00:01.0: reg 0x30: [mem 0xfeb40000-0xfeb5ffff pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.372221849Z]: pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.472190849Z]: pci 0000:00:01.0: pci_fixup_video+0x0/0xe0 took 97656 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.548230849Z]: pci 0000:00:01.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.600189849Z]: pci 0000:00:01.0: PME# supported from D1 D2 D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.668376849Z]: pci 0000:00:01.1: [1002:9840] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.740204849Z]: pci 0000:00:01.1: reg 0x10: [mem 0xfeb64000-0xfeb67fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.824262849Z]: pci 0000:00:01.1: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.876287849Z]: pci 0000:00:02.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:58.948311849Z]: pci 0000:00:02.2: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.020286849Z]: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.092352849Z]: pci 0000:00:02.3: [1022:157c] type 01 class 0x060400
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.164282849Z]: pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.236358849Z]: pci 0000:00:03.0: [1022:157b] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.308310849Z]: pci 0000:00:08.0: [1022:1578] type 00 class 0x108000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.380202849Z]: pci 0000:00:08.0: reg 0x10: [mem 0xf0800000-0xf081ffff 64bit pref]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.468195849Z]: pci 0000:00:08.0: reg 0x18: [mem 0xfe800000-0xfe8fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.544195849Z]: pci 0000:00:08.0: reg 0x1c: [mem 0xfeb6f000-0xfeb6ffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.616200849Z]: pci 0000:00:08.0: reg 0x24: [mem 0xfeb6a000-0xfeb6bfff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.692365849Z]: pci 0000:00:09.0: [1022:157d] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.764293849Z]: pci 0000:00:09.2: [1022:157a] type 00 class 0x040300
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.836200849Z]: pci 0000:00:09.2: reg 0x10: [mem 0xfeb60000-0xfeb63fff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.912244849Z]: pci 0000:00:09.2: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin4: kern:    info: [2024-03-10T02:18:59.984353849Z]: pci 0000:00:10.0: [1022:7914] type 00 class 0x0c0330
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.056214849Z]: pci 0000:00:10.0: reg 0x10: [mem 0xfeb68000-0xfeb69fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.136314849Z]: pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.212362849Z]: pci 0000:00:11.0: [1022:7901] type 00 class 0x010601
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.284206849Z]: pci 0000:00:11.0: reg 0x10: [io  0xf140-0xf147]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.348199849Z]: pci 0000:00:11.0: reg 0x14: [io  0xf130-0xf133]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.416198849Z]: pci 0000:00:11.0: reg 0x18: [io  0xf120-0xf127]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.484199849Z]: pci 0000:00:11.0: reg 0x1c: [io  0xf110-0xf113]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.548198849Z]: pci 0000:00:11.0: reg 0x20: [io  0xf100-0xf10f]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.616199849Z]: pci 0000:00:11.0: reg 0x24: [mem 0xfeb6d000-0xfeb6d3ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.692237849Z]: pci 0000:00:11.0: PME# supported from D3hot
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.752215849Z]: pci 0000:00:12.0: [1022:7908] type 00 class 0x0c0320
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.824206849Z]: pci 0000:00:12.0: reg 0x10: [mem 0xfeb6c000-0xfeb6c0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.900278849Z]: pci 0000:00:12.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:00.952191849Z]: pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.032338849Z]: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.104381849Z]: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.176430849Z]: pci 0000:00:18.0: [1022:1570] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.248294849Z]: pci 0000:00:18.1: [1022:1571] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.320280849Z]: pci 0000:00:18.2: [1022:1572] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.392289849Z]: pci 0000:00:18.3: [1022:1573] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.464297849Z]: pci 0000:00:18.4: [1022:1574] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.536277849Z]: pci 0000:00:18.5: [1022:1575] type 00 class 0x060000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.608379849Z]: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.680209849Z]: pci 0000:01:00.0: reg 0x10: [io  0xe000-0xe0ff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.744216849Z]: pci 0000:01:00.0: reg 0x18: [mem 0xfea04000-0xfea04fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.828206849Z]: pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.908300849Z]: pci 0000:01:00.0: supports D1 D2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:01.960207849Z]: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.036449849Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.096195849Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.172192849Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.252302849Z]: pci 0000:02:00.0: [8086:24fb] type 00 class 0x028000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.324233849Z]: pci 0000:02:00.0: reg 0x10: [mem 0xfe900000-0xfe901fff 64bit]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.404400849Z]: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.476406849Z]: pci 0000:00:02.3: PCI bridge to [bus 02]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.536196849Z]: pci 0000:00:02.3:   bridge window [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.621829849Z]: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.692277849Z]: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.760188849Z]: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.832279849Z]: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.904271849Z]: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:02.972266849Z]: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.044259849Z]: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.116257849Z]: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.189067849Z]: iommu: Default domain type: Translated 
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.248191849Z]: iommu: DMA domain TLB invalidation policy: lazy mode 
+ceph-thin4: kern:  notice: [2024-03-10T02:19:03.320396849Z]: SCSI subsystem initialized
+ceph-thin4: kern:   debug: [2024-03-10T02:19:03.364317849Z]: libata version 3.00 loaded.
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.364317849Z]: ACPI: bus type USB registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.412236849Z]: usbcore: registered new interface driver usbfs
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.476208849Z]: usbcore: registered new interface driver hub
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.540205849Z]: usbcore: registered new device driver usb
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.600220849Z]: pps_core: LinuxPPS API ver. 1 registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.660190849Z]: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.772195849Z]: PTP clock support registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.816298849Z]: EDAC MC: Ver: 3.0.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.856630849Z]: NET: Registered PF_ATMPVC protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.916196849Z]: NET: Registered PF_ATMSVC protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:03.976207849Z]: NetLabel: Initializing
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.016190849Z]: NetLabel:  domain hash size = 128
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.068188849Z]: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.136225849Z]: NetLabel:  unlabeled traffic allowed by default
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.204253849Z]: PCI: Using ACPI for IRQ routing
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254221849Z]: PCI: pci_cache_line_size set to 64 bytes
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254294849Z]: e820: reserve RAM buffer [mem 0x00091190-0x0009ffff]
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254300849Z]: e820: reserve RAM buffer [mem 0x00097190-0x0009ffff]
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254303849Z]: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254306849Z]: e820: reserve RAM buffer [mem 0xddfa7000-0xdfffffff]
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254309849Z]: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
+ceph-thin4: kern:   debug: [2024-03-10T02:19:04.254312849Z]: e820: reserve RAM buffer [mem 0x2df000000-0x2dfffffff]
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.256228849Z]: pci 0000:00:01.0: vgaarb: setting as boot VGA device
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.260186849Z]: pci 0000:00:01.0: vgaarb: bridge control possible
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.260186849Z]: pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.500202849Z]: vgaarb: loaded
+ceph-thin4: kern: warning: [2024-03-10T02:19:04.532806849Z]: acpi PNP0C14:01: duplicate WMI GUID 5FB7F034-2C63-45E9-BE91-3D44E2C707E4 (first instance was on PNP0C14:00)
+ SUBSYSTEM=acpi
+ DEVICE=+acpi:PNP0C14:01
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.660619849Z]: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.720190849Z]: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.792204849Z]: clocksource: Switched to clocksource tsc-early
+ceph-thin4: kern:  notice: [2024-03-10T02:19:04.898190849Z]: VFS: Disk quotas dquot_6.6.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:04.945160849Z]: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.027484849Z]: pnp: PnP ACPI init
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.064358849Z]: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.143705849Z]: system 00:01: [mem 0xa0000000-0xdfffffff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:01
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.227302849Z]: system 00:02: [mem 0xfeb80000-0xfebfffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:02
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.307726849Z]: system 00:04: [io  0x0a00-0x0a1f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.378545849Z]: system 00:04: [io  0x0a20-0x0a2f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.449415849Z]: system 00:04: [io  0x0e00-0x0efe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.520302849Z]: system 00:04: [io  0x0a40-0x0a5f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.591167849Z]: system 00:04: [io  0x0a60-0x0a7f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.661928849Z]: system 00:04: [io  0x0a80-0x0a9f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.732791849Z]: system 00:04: [io  0x0a30-0x0a3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:04
+ceph-thin4: kern:   debug: [2024-03-10T02:19:05.804508849Z]: pnp 00:07: [dma 0 disabled]
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:07
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.805649849Z]: system 00:08: [io  0x04d0-0x04d1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.876452849Z]: system 00:08: [io  0x040b] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:05.940052849Z]: system 00:08: [io  0x04d6] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.003690849Z]: system 00:08: [io  0x0c00-0x0c01] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.074602849Z]: system 00:08: [io  0x0c14] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.138265849Z]: system 00:08: [io  0x0c50-0x0c51] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.209196849Z]: system 00:08: [io  0x0c52] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.272848849Z]: system 00:08: [io  0x0c6c] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.336437849Z]: system 00:08: [io  0x0c6f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.400104849Z]: system 00:08: [io  0x0cd0-0x0cd1] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.470898849Z]: system 00:08: [io  0x0cd2-0x0cd3] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.541666849Z]: system 00:08: [io  0x0cd4-0x0cd5] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.612438849Z]: system 00:08: [io  0x0cd6-0x0cd7] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.683217849Z]: system 00:08: [io  0x0cd8-0x0cdf] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.753973849Z]: system 00:08: [io  0x0800-0x089f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.824747849Z]: system 00:08: [io  0x0b00-0x0b0f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.895619849Z]: system 00:08: [io  0x0b20-0x0b3f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:06.966451849Z]: system 00:08: [io  0x0900-0x090f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.037307849Z]: system 00:08: [io  0x0910-0x091f] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.108254849Z]: system 00:08: [io  0xfe00-0xfefe] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.179177849Z]: system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.262557849Z]: system 00:08: [mem 0xfec01000-0xfec01fff] could not be reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.345781849Z]: system 00:08: [mem 0xfedc0000-0xfedc0fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.424867849Z]: system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.503981849Z]: system 00:08: [mem 0xfed80000-0xfed8ffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.583135849Z]: system 00:08: [mem 0xfed61000-0xfed70fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.662409849Z]: system 00:08: [mem 0xfec10000-0xfec10fff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.741553849Z]: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:08
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.822255849Z]: pnp: PnP ACPI: found 10 devices
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.883163849Z]: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
+ceph-thin4: kern:    info: [2024-03-10T02:19:07.989464849Z]: NET: Registered PF_INET protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.048664849Z]: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.150507849Z]: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.253607849Z]: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.346535849Z]: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.444637849Z]: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.534470849Z]: TCP: Hash tables configured (established 131072 bind 65536)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.613856849Z]: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.695311849Z]: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.782056849Z]: NET: Registered PF_UNIX/PF_LOCAL protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.850294849Z]: RPC: Registered named UNIX socket transport module.
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.921120849Z]: RPC: Registered udp transport module.
+ceph-thin4: kern:    info: [2024-03-10T02:19:08.977329849Z]: RPC: Registered tcp transport module.
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.033661849Z]: RPC: Registered tcp NFSv4.1 backchannel transport module.
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.110789849Z]: pci 0000:00:02.2: PCI bridge to [bus 01]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.170116849Z]: pci 0000:00:02.2:   bridge window [io  0xe000-0xefff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.243027849Z]: pci 0000:00:02.2:   bridge window [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.324196849Z]: pci 0000:00:02.3: PCI bridge to [bus 02]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.383578849Z]: pci 0000:00:02.3:   bridge window [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.464758849Z]: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.538768849Z]: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.612668849Z]: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.686585849Z]: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.760461849Z]: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.842773849Z]: pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfed3ffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:09.925109849Z]: pci_bus 0000:00: resource 10 [mem 0xfedca000-0xffffffff window]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:00
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.008425849Z]: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.075093849Z]: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:01
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.150061849Z]: pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
+ SUBSYSTEM=pci_bus
+ DEVICE=+pci_bus:0000:02
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.225362849Z]: pci 0000:00:01.1: D0 power state depends on 0000:00:01.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.301389849Z]: pci 0000:00:01.1: quirk_gpu_hda+0x0/0x10 took 74357 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.379042849Z]: pci 0000:00:10.0: PME# does not work under D0, disabling it
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.458044849Z]: pci 0000:00:10.0: pci_fixup_amd_fch_xhci_pme+0x0/0x29 took 77151 usecs
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.549178849Z]: PCI: CLS 64 bytes, default 64
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.597446849Z]: Unpacking initramfs...
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.603109849Z]: AMD-Vi: Using global IVHD EFR:0x77ef22294ada, EFR2:0x0
+ceph-thin4: kern: warning: [2024-03-10T02:19:10.712116849Z]: AMD-Vi: [Firmware Warn]: EFR mismatch. Use IVHD EFR (0x37ef22294ada : 0x77ef22294ada), EFR2 (0x0 : 0x0).
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.838046849Z]: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.920515849Z]: pci 0000:00:01.0: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:10.981066849Z]: pci 0000:00:01.1: Adding to iommu group 0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.1
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.041659849Z]: pci 0000:00:02.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.102094849Z]: pci 0000:00:02.2: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.162621849Z]: pci 0000:00:02.3: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.223122849Z]: pci 0000:00:03.0: Adding to iommu group 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:03.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.283599849Z]: pci 0000:00:08.0: Adding to iommu group 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:08.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.344008849Z]: pci 0000:00:09.0: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.404430849Z]: pci 0000:00:09.2: Adding to iommu group 4
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:09.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.464990849Z]: pci 0000:00:10.0: Adding to iommu group 5
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.525541849Z]: pci 0000:00:11.0: Adding to iommu group 6
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.586022849Z]: pci 0000:00:12.0: Adding to iommu group 7
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.646595849Z]: pci 0000:00:14.0: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.707055849Z]: pci 0000:00:14.3: Adding to iommu group 8
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:14.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.767578849Z]: pci 0000:00:18.0: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.794021849Z]: Freeing initrd memory: 58948K
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.827992849Z]: pci 0000:00:18.1: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.1
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.936370849Z]: pci 0000:00:18.2: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:11.996900849Z]: pci 0000:00:18.3: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.057449849Z]: pci 0000:00:18.4: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.4
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.117999849Z]: pci 0000:00:18.5: Adding to iommu group 9
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:18.5
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.178522849Z]: pci 0000:01:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.239057849Z]: pci 0000:02:00.0: Adding to iommu group 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:02:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.302282849Z]: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:00.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.367929849Z]: AMD-Vi: Extended features (0x77ef22294ada, 0x0): PPR NX GT IA GA PC GA_vAPIC
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.465330849Z]: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.542396849Z]: software IO TLB: mapped [mem 0x00000000d9fa7000-0x00000000ddfa7000] (64MB)
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.637784849Z]: LVT offset 0 assigned for vector 0x400
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.695389849Z]: perf: AMD IBS detected (0x000007ff)
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.749642849Z]: amd_uncore: 4  amd_nb counters detected
+ceph-thin4: kern:    info: [2024-03-10T02:19:12.808456849Z]: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
+ceph-thin4: kern:     err: [2024-03-10T02:19:12.893909849Z]: kvm: no hardware support for 'kvm_intel'
+ceph-thin4: kern:     err: [2024-03-10T02:19:12.953384849Z]: kvm: support for 'kvm_amd' disabled by bios
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.018855849Z]: Initialise system trusted keyrings
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.072053849Z]: Key type blacklist registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.120225849Z]: workingset: timestamp_bits=40 max_order=22 bucket_order=0
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.205367849Z]: squashfs: version 4.0 (2009/01/31) Phillip Lougher
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.275949849Z]: NFS: Registering the id_resolver key type
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.336357849Z]: Key type id_resolver registered
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.386429849Z]: Key type id_legacy registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.434433849Z]: nfs4filelayout_init: NFSv4 File Layout Driver Registering...
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.514520849Z]: nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.603804849Z]: Key type cifs.spnego registered
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.653917849Z]: Key type cifs.idmap registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.703146849Z]: fuse: init (API version 7.37)
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.751447849Z]: SGI XFS with ACLs, security attributes, quota, no debug enabled
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.836362849Z]: ceph: loaded (mds proto 32)
+ceph-thin4: kern:  notice: [2024-03-10T02:19:13.882345849Z]: integrity: Platform Keyring initialized
+ceph-thin4: kern:    info: [2024-03-10T02:19:13.963115849Z]: NET: Registered PF_ALG protocol family
+ceph-thin4: kern:  notice: [2024-03-10T02:19:14.020472849Z]: Key type asymmetric registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.031135849Z]: tsc: Refined TSC clocksource calibration: 1996.252 MHz
+ceph-thin4: kern:  notice: [2024-03-10T02:19:14.069476849Z]: Asymmetric key parser 'x509' registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.069523849Z]: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.143383849Z]: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398cb382d3f, max_idle_ns: 881590697313 ns
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.201915849Z]: io scheduler mq-deadline registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.464167849Z]: io scheduler kyber registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.512157849Z]: clocksource: Switched to clocksource tsc
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.572710849Z]: pcieport 0000:00:02.2: PME: Signaling with IRQ 26
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.641823849Z]: pcieport 0000:00:02.3: PME: Signaling with IRQ 27
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:02.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.710915849Z]: hv_vmbus: registering driver hyperv_fb
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.768347849Z]: IPMI message handler: version 39.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.821543849Z]: ipmi device interface
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.861499849Z]: ipmi_si: IPMI System Interface driver
+ceph-thin4: kern: warning: [2024-03-10T02:19:14.918000849Z]: ipmi_si: Unable to find any System Interface(s)
+ceph-thin4: kern:    info: [2024-03-10T02:19:14.984664849Z]: IPMI poweroff: Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.093118849Z]: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.193131849Z]: ACPI: button: Power Button [PWRB]
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.245341849Z]: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.333877849Z]: ACPI: button: Power Button [PWRF]
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.386207849Z]: ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.474847849Z]: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.584256849Z]: ACPI: \x5c_PR_.P000: Found 2 idle states
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.640990849Z]: ACPI: \x5c_PR_.P001: Found 2 idle states
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.697565849Z]: ACPI: \x5c_PR_.P002: Found 2 idle states
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.753980849Z]: ACPI: \x5c_PR_.P003: Found 2 idle states
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.810616849Z]: ioatdma: Intel(R) QuickData Technology Driver 5.00
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.880679849Z]: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+ceph-thin4: kern:    info: [2024-03-10T02:19:15.955721849Z]: 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.044828849Z]: Non-volatile memory driver v1.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.094925849Z]: Linux agpgart interface v0.103
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.148322849Z]: tpm_tis 00:09: 1.2 TPM (device-id 0x1A, rev-id 16)
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:09
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.247945849Z]: ACPI: bus type drm_connector registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.306485849Z]: [drm] amdgpu kernel modesetting enabled.
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.381264849Z]: [drm] initializing kernel modesetting (CARRIZO 0x1002:0x9874 0x103C:0x8158 0x88).
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.483186849Z]: [drm] register mmio base: 0xFEB00000
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.538389849Z]: [drm] register mmio size: 262144
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.589549849Z]: [drm] add ip block number 0 <vi_common>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.647868849Z]: [drm] add ip block number 1 <gmc_v8_0>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.705222849Z]: [drm] add ip block number 2 <cz_ih>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.759424849Z]: [drm] add ip block number 3 <gfx_v8_0>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.816800849Z]: [drm] add ip block number 4 <sdma_v3_0>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.875100849Z]: [drm] add ip block number 5 <powerplay>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.933353849Z]: [drm] add ip block number 6 <dm>
+ceph-thin4: kern:    info: [2024-03-10T02:19:16.984541849Z]: [drm] add ip block number 7 <uvd_v6_0>
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.041809849Z]: [drm] add ip block number 8 <vce_v3_0>
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.114662849Z]: [drm] BIOS signature incorrect 5b 7
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.169048849Z]: amdgpu 0000:00:01.0: amdgpu: Fetched VBIOS from ROM BAR
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.244065849Z]: amdgpu: ATOM BIOS: 113-C75100-X28
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.296204849Z]: [drm] UVD is enabled in physical mode
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.352419849Z]: [drm] VCE enabled in physical mode
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.405547849Z]: amdgpu 0000:00:01.0: vgaarb: deactivate vga console
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.476383849Z]: amdgpu 0000:00:01.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.573231849Z]: [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.671956849Z]: amdgpu 0000:00:01.0: amdgpu: VRAM: 1024M 0x000000F400000000 - 0x000000F43FFFFFFF (1024M used)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.786411849Z]: amdgpu 0000:00:01.0: amdgpu: GART: 1024M 0x000000FF00000000 - 0x000000FF3FFFFFFF
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.887320849Z]: [drm] Detected VRAM RAM=1024M, BAR=1024M
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.946708849Z]: [drm] RAM width 128bits UNKNOWN
+ceph-thin4: kern:    info: [2024-03-10T02:19:17.996835849Z]: [drm] amdgpu: 1024M of VRAM memory ready
+ceph-thin4: kern:    info: [2024-03-10T02:19:18.056206849Z]: [drm] amdgpu: 5445M of GTT memory ready.
+ceph-thin4: kern:    info: [2024-03-10T02:19:18.115560849Z]: [drm] GART: num cpu pages 262144, num gpu pages 262144
+ceph-thin4: kern:    info: [2024-03-10T02:19:18.189555849Z]: [drm] PCIE GART of 1024M enabled (table at 0x000000F400A00000).
+ceph-thin4: kern: warning: [2024-03-10T02:19:18.272952849Z]: amdgpu 0000:00:01.0: Direct firmware load for amdgpu/carrizo_pfp.bin failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:     err: [2024-03-10T02:19:18.383227849Z]: amdgpu 0000:00:01.0: amdgpu: gfx8: Failed to load firmware "amdgpu/carrizo_pfp.bin"
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:     err: [2024-03-10T02:19:18.487205849Z]: [drm:gfx_v8_0_sw_init.cold] *ERROR* Failed to load gfx firmware!
+ceph-thin4: kern:     err: [2024-03-10T02:19:18.571589849Z]: [drm:amdgpu_device_init.cold] *ERROR* sw_init of IP block <gfx_v8_0> failed -2
+ceph-thin4: kern:     err: [2024-03-10T02:19:18.670295849Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu_device_ip_init failed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:     err: [2024-03-10T02:19:18.747241849Z]: amdgpu 0000:00:01.0: amdgpu: Fatal error during GPU init
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:18.823149849Z]: amdgpu 0000:00:01.0: amdgpu: amdgpu: finishing device.
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:01.0
+ceph-thin4: kern: warning: [2024-03-10T02:19:18.897250849Z]: ------------[ cut here ]------------
+ceph-thin4: kern: warning: [2024-03-10T02:19:18.952531849Z]: WARNING: CPU: 3 PID: 1 at drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c:655 amdgpu_irq_put+0x45/0x70
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.068121849Z]: Modules linked in:
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.104718849Z]: CPU: 3 PID: 1 Comm: swapper/0 Not tainted 6.1.61-talos #1
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.181646849Z]: Hardware name: HP HP t630 Thin Client/8158, BIOS M40 v01.03 10/05/2016
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.272179849Z]: RIP: 0010:amdgpu_irq_put+0x45/0x70
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.325273849Z]: Code: 48 8b 4e 10 48 83 39 00 74 2c 89 d1 48 8d 04 88 8b 08 85 c9 74 14 f0 ff 08 b8 00 00 00 00 74 05 e9 f0 3d 16 01 e9 8b fd ff ff <0f> 0b b8 ea ff ff ff e9 df 3d 16 01 b8 ea ff ff ff e9 d5 3d 16 01
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.549896849Z]: RSP: 0018:ffffaa1e00037c28 EFLAGS: 00010246
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.612428849Z]: RAX: ffff94bcc0974648 RBX: ffff94bcc7160000 RCX: 0000000000000000
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.697687849Z]: RDX: 0000000000000000 RSI: ffff94bcc7160be0 RDI: ffff94bcc7160000
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.783029849Z]: RBP: ffff94bcc7160010 R08: 0000000000000000 R09: 0000000000000001
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.868394849Z]: R10: 0000000000000001 R11: 0000000000000001 R12: ffff94bcc7160010
+ceph-thin4: kern: warning: [2024-03-10T02:19:19.953815849Z]: R13: 0000000000000001 R14: ffff94bcc7160010 R15: ffff94bcc7160000
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.039215849Z]: FS:  0000000000000000(0000) GS:ffff94be93d80000(0000) knlGS:0000000000000000
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.136065849Z]: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.204792849Z]: CR2: 0000000000000000 CR3: 00000002a9c10000 CR4: 00000000001506e0
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.290187849Z]: Call Trace:
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.319513849Z]:  <TASK>
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.344674849Z]:  ? __warn+0x7d/0xc0
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.382285849Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.428137849Z]:  ? report_bug+0xe6/0x170
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.470917849Z]:  ? handle_bug+0x41/0x70
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.512614849Z]:  ? exc_invalid_op+0x13/0x60
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.558523849Z]:  ? asm_exc_invalid_op+0x16/0x20
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.608575849Z]:  ? amdgpu_irq_put+0x45/0x70
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.654466849Z]:  gmc_v8_0_hw_fini+0x17/0xa0
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.700321849Z]:  amdgpu_device_fini_hw+0x1cc/0x2af
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.753444849Z]:  amdgpu_driver_load_kms.cold+0x54/0x6a
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.810751849Z]:  amdgpu_pci_probe+0x125/0x340
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.858703849Z]:  local_pci_probe+0x41/0x80
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.903591849Z]:  pci_device_probe+0xbf/0x230
+ceph-thin4: kern: warning: [2024-03-10T02:19:20.950475849Z]:  ? kernfs_create_link+0x5d/0xa0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.000521849Z]:  ? sysfs_do_create_link_sd+0x6e/0xe0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.055828849Z]:  really_probe+0xc7/0x280
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.098593849Z]:  ? pm_runtime_barrier+0x50/0x90
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.148714849Z]:  __driver_probe_device+0x73/0xf0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.199792849Z]:  driver_probe_device+0x1f/0x90
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.248762849Z]:  __driver_attach+0x84/0x130
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.294703849Z]:  ? __device_attach_driver+0xc0/0xc0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.349016849Z]:  bus_for_each_dev+0x87/0xd0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.394968849Z]:  bus_add_driver+0x186/0x1d0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.440867849Z]:  driver_register+0x89/0xe0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.485744849Z]:  ? drm_sched_fence_slab_init+0x87/0x87
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.543023849Z]:  do_one_initcall+0x59/0x230
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.588946849Z]:  kernel_init_freeable+0x2bb/0x35d
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.641125849Z]:  ? rest_init+0xd0/0xd0
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.681870849Z]:  kernel_init+0x16/0x130
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.723668849Z]:  ret_from_fork+0x22/0x30
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.766479849Z]:  </TASK>
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.792629849Z]: ---[ end trace 0000000000000000 ]---
+ceph-thin4: kern: warning: [2024-03-10T02:19:21.848262849Z]: amdgpu: probe of 0000:00:01.0 failed with error -2
+ceph-thin4: kern:    info: [2024-03-10T02:19:21.918345849Z]: [drm] amdgpu: ttm finalized
+ceph-thin4: kern:    info: [2024-03-10T02:19:21.968422849Z]: loop: module loaded
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.006294849Z]: rbd: loaded (major 252)
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.048195849Z]: Guest personality initialized and is inactive
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.113027849Z]: VMCI host device registered (name=vmci, major=10, minor=126)
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.193276849Z]: Initialized host personality
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.240317849Z]: Loading iSCSI transport class v2.0-870.
+ceph-thin4: kern:  notice: [2024-03-10T02:19:22.299383849Z]: iscsi: registered transport (tcp)
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.351605849Z]: isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.428905849Z]: hv_vmbus: registering driver hv_storvsc
+ceph-thin4: kern:   debug: [2024-03-10T02:19:22.488392849Z]: ahci 0000:00:11.0: version 3.0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.488870849Z]: ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.585787849Z]: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp fbs pio slum part 
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:11.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.686624849Z]: scsi host0: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host0
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.721540849Z]: scsi host1: ahci
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host1
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.756145849Z]: ata1: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d100 irq 19
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.844662849Z]: ata2: SATA max UDMA/133 abar m1024@0xfeb6d000 port 0xfeb6d180 irq 19
+ceph-thin4: kern:    info: [2024-03-10T02:19:22.935120849Z]: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.028767849Z]: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.144707849Z]: tun: Universal TUN/TAP device driver, 1.6
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.205856849Z]: QLogic/NetXen Network Driver v4.0.82
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.261477849Z]: usbcore: registered new interface driver r8152
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.327182849Z]: hv_vmbus: registering driver hv_netvsc
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.384578849Z]: Fusion MPT base driver 3.04.20
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.411044849Z]: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.433571849Z]: Copyright (c) 1999-2008 LSI Corporation
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.433708849Z]: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.507517849Z]: Fusion MPT SAS Host driver 3.04.20
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.566259849Z]: ata2.00: ATA-9: Fanxiang S201 2TB, W0220A0, max UDMA/133
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.640246849Z]: ehci-pci 0000:00:12.0: EHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.693294849Z]: ata2.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.768828849Z]: ehci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.831438849Z]: ata1.00: ATA-9: Fanxiang S201 2TB, W0220A0, max UDMA/133
+ceph-thin4: kern:    info: [2024-03-10T02:19:23.913683849Z]: ehci-pci 0000:00:12.0: debug port 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.002733849Z]: ata1.00: 4000797360 sectors, multi 1: LBA48 NCQ (depth 32), AA
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.078336849Z]: ehci-pci 0000:00:12.0: irq 18, io mem 0xfeb6c000
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.133616849Z]: ata2.00: configured for UDMA/133
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.227028849Z]: ehci-pci 0000:00:12.0: USB 2.0 started, EHCI 1.00
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:12.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.283781849Z]: ata1.00: configured for UDMA/133
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.334022849Z]: hub 1-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.402777849Z]: scsi 0:0:0:0: Direct-Access     ATA      Fanxiang S201 2T 0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.453583849Z]: hub 1-0:1.0: 2 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-0:1.0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.499022849Z]: sd 0:0:0:0: Attached scsi generic sg0 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.499032849Z]: sd 0:0:0:0: [sda] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.499051849Z]: sd 0:0:0:0: [sda] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:   debug: [2024-03-10T02:19:24.499056849Z]: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.499084849Z]: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.499127849Z]: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.595651849Z]: sd 0:0:0:0: [sda] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:0:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.596497849Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.596521849Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.596837849Z]: xhci_hcd 0000:00:10.0: hcc params 0x014040c3 hci version 0x100 quirks 0x0000000000000410
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.597677849Z]: xhci_hcd 0000:00:10.0: xHCI Host Controller
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.597692849Z]: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.597704849Z]: xhci_hcd 0000:00:10.0: Host supports USB 3.0 SuperSpeed
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:00:10.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.604201849Z]: hub 2-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.604236849Z]: hub 2-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-0:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.604849849Z]: usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
+ SUBSYSTEM=usb
+ DEVICE=+usb:usb3
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.605296849Z]: hub 3-0:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.605330849Z]: hub 3-0:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:3-0:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606108849Z]: usbcore: registered new interface driver cdc_acm
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606115849Z]: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606270849Z]: usbcore: registered new interface driver uas
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606395849Z]: usbcore: registered new interface driver usb-storage
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606495849Z]: usbcore: registered new interface driver usbserial_generic
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606522849Z]: usbserial: USB Serial support registered for generic
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606557849Z]: usbcore: registered new interface driver ch341
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606580849Z]: usbserial: USB Serial support registered for ch341-uart
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606617849Z]: usbcore: registered new interface driver cp210x
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606643849Z]: usbserial: USB Serial support registered for cp210x
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606691849Z]: usbcore: registered new interface driver ftdi_sio
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606711849Z]: usbserial: USB Serial support registered for FTDI USB Serial Device
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606787849Z]: usbcore: registered new interface driver pl2303
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.606805849Z]: usbserial: USB Serial support registered for pl2303
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.607089849Z]: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.609446849Z]: serio: i8042 KBD port at 0x60,0x64 irq 1
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.609464849Z]: serio: i8042 AUX port at 0x60,0x64 irq 12
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.609710849Z]: hv_vmbus: registering driver hyperv_keyboard
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.609919849Z]: mousedev: PS/2 mouse device common for all mice
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.610529849Z]: rtc_cmos 00:03: RTC can wake from S4
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.611356849Z]: rtc_cmos 00:03: registered as rtc0
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.611488849Z]: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
+ SUBSYSTEM=pnp
+ DEVICE=+pnp:00:03
+ceph-thin4: kern:     err: [2024-03-10T02:19:24.611685849Z]: fail to initialize ptp_kvm
+ceph-thin4: kern: warning: [2024-03-10T02:19:24.611893849Z]: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.612218849Z]: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.612561849Z]: sdhci: Secure Digital Host Controller Interface driver
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.612565849Z]: sdhci: Copyright(c) Pierre Ossman
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.612758849Z]: sdhci-pltfm: SDHCI platform and OF driver helper
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.613116849Z]: hid: raw HID events driver (C) Jiri Kosina
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.613886849Z]: usbcore: registered new interface driver usbhid
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.613894849Z]: usbhid: USB HID core driver
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.614926849Z]: hv_utils: Registering HyperV Utility Driver
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.614932849Z]: hv_vmbus: registering driver hv_utils
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.614937849Z]: hv_vmbus: registering driver hv_balloon
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615070849Z]: NET: Registered PF_LLC protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615131849Z]: GACT probability NOT on
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615143849Z]: Mirror/redirect action on
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615172849Z]: Simple TC action Loaded
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615699849Z]: netem: version 1.3
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615798849Z]: u32 classifier
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615801849Z]:     input device check on
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.615804849Z]:     Actions configured
+ceph-thin4: kern: warning: [2024-03-10T02:19:24.643280849Z]: hpet: Lost 1 RTC interrupts
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.643691849Z]: scsi 1:0:0:0: Direct-Access     ATA      Fanxiang S201 2T 0A0  PQ: 0 ANSI: 5
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.730919849Z]: xt_time: kernel timezone is -0000
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.800167849Z]: sd 1:0:0:0: Attached scsi generic sg1 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.800303849Z]: sd 1:0:0:0: [sdb] 4000797360 512-byte logical blocks: (2.05 TB/1.86 TiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.800323849Z]: sd 1:0:0:0: [sdb] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:   debug: [2024-03-10T02:19:24.800328849Z]: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.800357849Z]: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.800395849Z]: sd 1:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:24.801533849Z]: sd 1:0:0:0: [sdb] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:1:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.851022849Z]: usb 1-1: new high-speed USB device number 2 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1
+ceph-thin4: kern:    info: [2024-03-10T02:19:24.857259849Z]: IPVS: Registered protocols (TCP, UDP)
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.381681849Z]: usb 2-4: new full-speed USB device number 2 using xhci_hcd
+ SUBSYSTEM=usb
+ DEVICE=+usb:2-4
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.381782849Z]: IPVS: Connection hash table configured (size=4096, memory=32Kbytes)
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.547496849Z]: IPVS: ipvs loaded.
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.583964849Z]: IPVS: [rr] scheduler registered.
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.616438849Z]: hub 1-1:1.0: USB hub found
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.635081849Z]: IPVS: [wrr] scheduler registered.
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.732009849Z]: IPVS: [lc] scheduler registered.
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.783068849Z]: IPVS: [sh] scheduler registered.
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.783068849Z]: hub 1-1:1.0: 4 ports detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.882263849Z]: ipip: IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin4: kern:    info: [2024-03-10T02:19:29.948364849Z]: gre: GRE over IPv4 demultiplexor driver
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.006954849Z]: Initializing XFRM netlink socket
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.058435849Z]: NET: Registered PF_INET6 protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.119316849Z]: Segment Routing with IPv6
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.163149849Z]: In-situ OAM (IOAM) with IPv6
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.210235849Z]: mip6: Mobile IPv6
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.245791849Z]: sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.317379849Z]: NET: Registered PF_PACKET protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.339128849Z]: usb 1-1.3: new high-speed USB device number 3 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3
+ceph-thin4: kern:  notice: [2024-03-10T02:19:30.377986849Z]: Bridge firewalling registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.506393849Z]: NET: Registered PF_APPLETALK protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.570158849Z]: NET: Registered PF_X25 protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.627724849Z]: X25: Linux Version 0.2
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.668617849Z]: RPC: Registered rdma transport module.
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.725948849Z]: RPC: Registered rdma backchannel transport module.
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.796180849Z]: l2tp_core: L2TP core driver, V2.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.804436849Z]: usb-storage 1-1.3:1.0: USB Mass Storage device detected
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.3:1.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.848361849Z]: NET: Registered PF_PHONET protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.923750849Z]: scsi host2: usb-storage 1-1.3:1.0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host2
+ceph-thin4: kern:    info: [2024-03-10T02:19:30.984057849Z]: 8021q: 802.1Q VLAN Support v1.8
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.091394849Z]: DCCP: Activated CCID 2 (TCP-like)
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.143760849Z]: DCCP: Activated CCID 3 (TCP-Friendly Rate Control)
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.213960849Z]: sctp: Hash tables configured (bind 256/256)
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.271123849Z]: usb 1-1.4: new high-speed USB device number 4 using ehci-pci
+ SUBSYSTEM=usb
+ DEVICE=+usb:1-1.4
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.279344849Z]: NET: Registered PF_RDS protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.415643849Z]: NET: Registered PF_IEEE802154 protocol family
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.466612849Z]: scsi host3: uas
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:host3
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.480335849Z]: Key type dns_resolver registered
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.564958849Z]: Key type ceph registered
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.607919849Z]: libceph: loaded (mon/osd proto 15/24)
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.608341849Z]: scsi 3:0:0:0: Direct-Access     SABRENT                   0204 PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.664261849Z]: openvswitch: Open vSwitch switching datapath
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.766135849Z]: sd 3:0:0:0: Attached scsi generic sg2 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.766924849Z]: sd 3:0:0:0: [sdc] 937703088 512-byte logical blocks: (480 GB/447 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.766932849Z]: sd 3:0:0:0: [sdc] 4096-byte physical blocks
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.767291849Z]: sd 3:0:0:0: [sdc] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:   debug: [2024-03-10T02:19:31.767295849Z]: sd 3:0:0:0: [sdc] Mode Sense: 5f 00 00 08
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:31.767792849Z]: sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:31.767917849Z]: sd 3:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern: warning: [2024-03-10T02:19:31.767922849Z]: sd 3:0:0:0: [sdc] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:32.263882849Z]: sd 3:0:0:0: [sdc] Attached SCSI disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:3:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:32.472984849Z]: NET: Registered PF_VSOCK protocol family
+ceph-thin4: kern:  notice: [2024-03-10T02:19:32.475713849Z]: scsi 2:0:0:0: Direct-Access     PNY      USB 3.2.1 FD     PMAP PQ: 0 ANSI: 6
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:32.532374849Z]: mpls_gso: MPLS GSO support
+ceph-thin4: kern:  notice: [2024-03-10T02:19:32.629752849Z]: sd 2:0:0:0: Attached scsi generic sg3 type 0
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:32.630081849Z]: sd 2:0:0:0: [sdd] 242147328 512-byte logical blocks: (124 GB/115 GiB)
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:32.631197849Z]: sd 2:0:0:0: [sdd] Write Protect is off
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:   debug: [2024-03-10T02:19:32.631202849Z]: sd 2:0:0:0: [sdd] Mode Sense: 45 00 00 00
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:32.632325849Z]: sd 2:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:    info: [2024-03-10T02:19:32.673888849Z]: x86/pm: family 0x15 cpu detected, MSR saving is needed during suspending.
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.088142849Z]: microcode: CPU0: patch_level=0x06006112
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.146581849Z]: microcode: CPU1: patch_level=0x06006112
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.204894849Z]: microcode: CPU2: patch_level=0x06006112
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.263301849Z]: microcode: CPU3: patch_level=0x06006112
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.321563849Z]: microcode: Microcode Update Driver: v2.2.
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.321578849Z]: IPI shorthand broadcast: enabled
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.433084849Z]: AVX2 version of gcm_enc/dec engaged.
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.488479849Z]: AES CTR mode by8 optimization enabled
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.545964849Z]: sched_clock: Marking stable (39814861611, 13838657171)->(57513990542, -3860471760)
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.550403849Z]:  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6
+ceph-thin4: kern:    info: [2024-03-10T02:19:33.703611849Z]: registered taskstats version 1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:33.703918849Z]: sd 2:0:0:0: [sdd] Attached SCSI removable disk
+ SUBSYSTEM=scsi
+ DEVICE=+scsi:2:0:0:0
+ceph-thin4: kern:  notice: [2024-03-10T02:19:33.752688849Z]: Loading compiled-in X.509 certificates
+ceph-thin4: kern:  notice: [2024-03-10T02:19:33.878855849Z]: Loaded X.509 cert 'Sidero Labs, Inc.: Build time throw-away kernel key: 5ec02fb0cf80adf5fd052b049a2f3c73c62e9f08'
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.014234849Z]: ima: Allocated hash algorithm: sha512
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.111241849Z]: ima: No architecture policies found
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.170281849Z]: PM:   Magic number: 0:213:308
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.218361849Z]: tty tty37: hash matches
+ SUBSYSTEM=tty
+ DEVICE=c4:37
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.260090849Z]: printk: console [netcon0] enabled
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.312252849Z]: netconsole: network logging started
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.367364849Z]: acpi_cpufreq: overriding BIOS provided _PSD data
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.445416849Z]: Freeing unused kernel image (initmem) memory: 3088K
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.523190849Z]: Write protecting the kernel read-only data: 49152k
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.594234849Z]: Freeing unused kernel image (text/rodata gap) memory: 2024K
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.674008849Z]: Freeing unused kernel image (rodata/data gap) memory: 964K
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.862920849Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin4: kern:    info: [2024-03-10T02:19:34.939942849Z]: x86/mm: Checking user space page tables
+ceph-thin4: kern:    info: [2024-03-10T02:19:35.102587849Z]: x86/mm: Checked W+X mappings: passed, no W+X pages found.
+ceph-thin4: kern:    info: [2024-03-10T02:19:35.179887849Z]: Run /init as init process
+ceph-thin4: kern:   debug: [2024-03-10T02:19:35.223814849Z]:   with arguments:
+ceph-thin4: kern:   debug: [2024-03-10T02:19:35.223869849Z]:     /init
+ceph-thin4: kern:   debug: [2024-03-10T02:19:35.223872849Z]:   with environment:
+ceph-thin4: kern:   debug: [2024-03-10T02:19:35.223875849Z]:     HOME=/
+ceph-thin4: kern:   debug: [2024-03-10T02:19:35.223879849Z]:     TERM=linux
+ceph-thin4: kern:   debug: [2024-03-10T02:19:35.223882849Z]:     pti=on
+ceph-thin4: user: warning: [2024-03-10T02:19:35.240642849Z]: [talos] [initramfs] TPM device is not available
+ceph-thin4: user: warning: [2024-03-10T02:19:35.311556849Z]: [talos] [initramfs] TPM device is not available, skipping PCR extension
+ceph-thin4: user: warning: [2024-03-10T02:19:35.403225849Z]: [talos] [initramfs] booting Talos v1.5.5
+ceph-thin4: user: warning: [2024-03-10T02:19:35.462761849Z]: [talos] [initramfs] mounting the rootfs
+ceph-thin4: kern:    info: [2024-03-10T02:19:35.521325849Z]: loop0: detected capacity change from 0 to 105192
+ceph-thin4: user: warning: [2024-03-10T02:19:35.617403849Z]: [talos] [initramfs] bind mounting /lib/firmware
+ceph-thin4: user: warning: [2024-03-10T02:19:35.686851849Z]: [talos] [initramfs] entering the rootfs
+ceph-thin4: user: warning: [2024-03-10T02:19:35.745142849Z]: [talos] [initramfs] moving mounts to the new rootfs
+ceph-thin4: user: warning: [2024-03-10T02:19:35.816741849Z]: [talos] [initramfs] changing working directory into /root
+ceph-thin4: user: warning: [2024-03-10T02:19:35.893780849Z]: [talos] [initramfs] moving /root to /
+ceph-thin4: user: warning: [2024-03-10T02:19:35.950022849Z]: [talos] [initramfs] changing root directory
+ceph-thin4: user: warning: [2024-03-10T02:19:36.012476849Z]: [talos] [initramfs] cleaning up initramfs
+ceph-thin4: user: warning: [2024-03-10T02:19:36.076994849Z]: [talos] [initramfs] TPM device is not available, skipping PCR extension
+ceph-thin4: user: warning: [2024-03-10T02:19:36.168549849Z]: [talos] [initramfs] executing /sbin/init
+ceph-thin4: user: warning: [2024-03-10T02:19:40.384709849Z]: [talos] task setupLogger (1/1): done, 548.304\xc2\xb5s
+ceph-thin4: user: warning: [2024-03-10T02:19:40.452668849Z]: [talos] phase logger (1/11): done, 68.56632ms
+ceph-thin4: user: warning: [2024-03-10T02:19:40.517227849Z]: [talos] phase systemRequirements (2/11): 6 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:40.588223849Z]: [talos] task setRLimit (6/6): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:40.645647849Z]: [talos] task setRLimit (6/6): done, 57.446658ms
+ceph-thin4: user: warning: [2024-03-10T02:19:40.712409849Z]: [talos] task enforceKSPPRequirements (1/6): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:40.784456849Z]: [talos] task mountBPFFS (3/6): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:40.842870849Z]: [talos] task mountCgroups (4/6): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:40.903404849Z]: [talos] task setupSystemDirectory (2/6): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:40.972177849Z]: [talos] task mountPseudoFilesystems (5/6): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:41.043153849Z]: [talos] task setupSystemDirectory (2/6): done, 454.88262ms
+ceph-thin4: user: warning: [2024-03-10T02:19:41.121326849Z]: [talos] task mountPseudoFilesystems (5/6): done, 455.202805ms
+ceph-thin4: user: warning: [2024-03-10T02:19:41.202666849Z]: [talos] task mountCgroups (4/6): done, 614.415721ms
+ceph-thin4: user: warning: [2024-03-10T02:19:41.273576849Z]: [talos] task mountBPFFS (3/6): done, 533.957368ms
+ceph-thin4: user: warning: [2024-03-10T02:19:41.388360849Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "127.0.0.1/8", "link": "lo"}
+ceph-thin4: user: warning: [2024-03-10T02:19:41.561395849Z]: [talos] task enforceKSPPRequirements (1/6): done, 801.570506ms
+ceph-thin4: user: warning: [2024-03-10T02:19:41.643852849Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin4: user: warning: [2024-03-10T02:19:41.812680849Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin4: user: warning: [2024-03-10T02:19:41.982566849Z]: [talos] phase systemRequirements (2/11): done, 1.126634216s
+ceph-thin4: user: warning: [2024-03-10T02:19:42.061799849Z]: [talos] phase integrity (3/11): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:42.123307849Z]: [talos] setting time servers {"component": "controller-runtime", "controller": "network.TimeServerSpecController", "addresses": ["pool.ntp.org"]}
+ceph-thin4: user: warning: [2024-03-10T02:19:42.292094849Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["1.1.1.1", "8.8.8.8"]}
+ceph-thin4: user: warning: [2024-03-10T02:19:42.461840849Z]: [talos] task writeIMAPolicy (1/1): starting
+ceph-thin4: kern:  notice: [2024-03-10T02:19:42.524510849Z]: audit: type=1807 audit(1710037150.423:2): action=dont_measure fsmagic=0x9fa0 res=1
+ceph-thin4: kern:    info: [2024-03-10T02:19:42.524840849Z]: ima: policy update completed
+ceph-thin4: kern:  notice: [2024-03-10T02:19:42.627736849Z]: audit: type=1807 audit(1710037150.423:3): action=dont_measure fsmagic=0x62656572 res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:42.782075849Z]: audit: type=1807 audit(1710037150.423:4): action=dont_measure fsmagic=0x64626720 res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:42.889419849Z]: audit: type=1807 audit(1710037150.423:5): action=dont_measure fsmagic=0x1021994 res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:42.995727849Z]: audit: type=1807 audit(1710037150.423:6): action=dont_measure fsmagic=0x1cd1 res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:43.098890849Z]: audit: type=1807 audit(1710037150.423:7): action=dont_measure fsmagic=0x42494e4d res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:43.206253849Z]: audit: type=1807 audit(1710037150.423:8): action=dont_measure fsmagic=0x73636673 res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:43.313547849Z]: audit: type=1807 audit(1710037150.423:9): action=dont_measure fsmagic=0xf97cff8c res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:43.420758849Z]: audit: type=1807 audit(1710037150.423:10): action=dont_measure fsmagic=0x43415d53 res=1
+ceph-thin4: kern:  notice: [2024-03-10T02:19:43.529121849Z]: audit: type=1807 audit(1710037150.423:11): action=dont_measure fsmagic=0x27e0eb res=1
+ceph-thin4: user: warning: [2024-03-10T02:19:43.643351849Z]: [talos] task writeIMAPolicy (1/1): done, 1.519978775s
+ceph-thin4: user: warning: [2024-03-10T02:19:43.716390849Z]: [talos] phase integrity (3/11): done, 1.654599243s
+ceph-thin4: user: warning: [2024-03-10T02:19:43.786175849Z]: [talos] phase etc (4/11): 3 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:43.841431849Z]: [talos] task setUserEnvVars (3/3): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:43.904105849Z]: [talos] task createOSReleaseFile (2/3): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:43.971905849Z]: [talos] task CreateSystemCgroups (1/3): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:44.039791849Z]: [talos] task setUserEnvVars (3/3): done, 198.382358ms
+ceph-thin4: user: warning: [2024-03-10T02:19:44.113562849Z]: [talos] task createOSReleaseFile (2/3): done, 272.02888ms
+ceph-thin4: user: warning: [2024-03-10T02:19:44.196837849Z]: [talos] task CreateSystemCgroups (1/3): done, 355.315781ms
+ceph-thin4: user: warning: [2024-03-10T02:19:44.274984849Z]: [talos] phase etc (4/11): done, 488.822212ms
+ceph-thin4: user: warning: [2024-03-10T02:19:44.338641849Z]: [talos] phase earlyServices (5/11): 2 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:44.404382849Z]: [talos] task startMachined (2/2): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:44.465922849Z]: [talos] task startUdevd (1/2): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:44.524499849Z]: [talos] TPM device is not available, skipping PCR extension
+ceph-thin4: user: warning: [2024-03-10T02:19:44.603736849Z]: [talos] service[udevd](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:19:44.675907849Z]: [talos] service[machined](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:19:44.751164849Z]: [talos] service[machined](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:19:44.832492849Z]: [talos] service[udevd](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:19:44.910715849Z]: [talos] service[machined](Running): Service started as goroutine
+ceph-thin4: user: warning: [2024-03-10T02:19:45.833829849Z]: [talos] service[machined](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-10T02:19:45.913158849Z]: [talos] task startMachined (2/2): done, 1.508783191s
+ceph-thin4: user: warning: [2024-03-10T02:19:48.538720849Z]: [talos] service[udevd](Running): Process Process(["/sbin/udevd" "--resolve-names=never"]) started with PID 695
+ceph-thin4: daemon:    info: [2024-03-10T02:19:48.824585849Z]: udevd[695]: starting version 3.2.12
+ceph-thin4: daemon:    info: [2024-03-10T02:19:49.102347849Z]: udevd[695]: starting eudev-3.2.12
+ceph-thin4: kern:    info: [2024-03-10T02:19:49.298731849Z]: r8169 0000:01:00.0 eth0: RTL8168h/8111h, 7c:d3:0a:2d:91:d2, XID 541, IRQ 34
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:49.394715849Z]: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:49.498729849Z]: r8169 0000:01:00.0 enp1s0: renamed from eth0
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-10T02:19:49.893787849Z]: [talos] service[udevd](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-10T02:19:49.970170849Z]: [talos] task startUdevd (1/2): done, 5.565768235s
+ceph-thin4: user: warning: [2024-03-10T02:19:50.039254849Z]: [talos] phase earlyServices (5/11): done, 5.700600978s
+ceph-thin4: user: warning: [2024-03-10T02:19:50.113358849Z]: [talos] phase meta (6/11): 1 tasks(s)
+ceph-thin4: kern: warning: [2024-03-10T02:19:50.116363849Z]: r8169 0000:01:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-10T02:19:50.169682849Z]: [talos] task reloadMeta (1/1): starting
+ceph-thin4: kern:     err: [2024-03-10T02:19:50.277770849Z]: r8169 0000:01:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:50.451199849Z]: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
+ SUBSYSTEM=mdio_bus
+ DEVICE=+mdio_bus:r8169-0-100:00
+ceph-thin4: user: warning: [2024-03-10T02:19:50.598142849Z]: [talos] META: loaded 0 keys
+ceph-thin4: user: warning: [2024-03-10T02:19:50.644341849Z]: [talos] task reloadMeta (1/1): done, 474.652052ms
+ceph-thin4: user: warning: [2024-03-10T02:19:50.713160849Z]: [talos] phase meta (6/11): done, 599.810488ms
+ceph-thin4: kern:    info: [2024-03-10T02:19:50.747307849Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-10T02:19:50.777808849Z]: [talos] phase dashboard (7/11): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:50.777866849Z]: [talos] task startDashboard (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:50.960244849Z]: [talos] task startDashboard (1/1): done, 182.371978ms
+ceph-thin4: user: warning: [2024-03-10T02:19:51.033153849Z]: [talos] service[dashboard](Waiting): Waiting for service "machined" to be "up", file "/system/run/machined/machine.sock" to exist
+ceph-thin4: user: warning: [2024-03-10T02:19:51.185064849Z]: [talos] phase dashboard (7/11): done, 255.34709ms
+ceph-thin4: user: warning: [2024-03-10T02:19:51.253782849Z]: [talos] service[dashboard](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:19:51.329756849Z]: [talos] phase mountSystem (9/11): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:51.393327849Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:51.400961849Z]: [talos] task mountStatePartition (1/1): mount skipped
+ceph-thin4: user: warning: [2024-03-10T02:19:51.534589849Z]: [talos] service[dashboard](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:19:51.534693849Z]: [talos] task mountStatePartition (1/1): done, 141.242285ms
+ceph-thin4: user: warning: [2024-03-10T02:19:51.694962849Z]: [talos] phase mountSystem (9/11): done, 441.058895ms
+ceph-thin4: user: warning: [2024-03-10T02:19:51.694976849Z]: [talos] phase config (10/11): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:19:51.695020849Z]: [talos] task loadConfig (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:19:51.695231849Z]: [talos] downloading config {"component": "controller-runtime", "controller": "config.AcquireController", "platform": "metal"}
+ceph-thin4: user: warning: [2024-03-10T02:19:52.032191849Z]: [talos] waiting for network to be ready
+ceph-thin4: user: warning: [2024-03-10T02:19:52.090477849Z]: [talos] service[dashboard](Running): Process Process(["/sbin/dashboard"]) started with PID 1624
+ceph-thin4: user: warning: [2024-03-10T02:19:52.207121849Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on [::1]:53: read udp [::1]:53382->[::1]:53: read: connection refused"}
+ceph-thin4: user: warning: [2024-03-10T02:19:53.459362849Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin4: kern:    info: [2024-03-10T02:19:54.220406849Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: kern:    info: [2024-03-10T02:19:54.312242849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
+ceph-thin4: user: warning: [2024-03-10T02:19:54.710258849Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-10T02:19:55.962142849Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-10T02:19:57.211993849Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-10T02:19:58.461574849Z]: [talos] failed looking up "pool.ntp.org", ignored {"component": "controller-runtime", "controller": "time.SyncController", "error": "lookup pool.ntp.org on 8.8.8.8:53: dial udp 8.8.8.8:53: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-10T02:19:59.512189849Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87"]}
+ceph-thin4: user: warning: [2024-03-10T02:19:59.675813849Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin4", "domainname": "dezendorf.net"}
+ceph-thin4: user: warning: [2024-03-10T02:19:59.868205849Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin4", "domainname": "dezendorf.net"}
+ceph-thin4: user: warning: [2024-03-10T02:20:00.057308849Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.24/23", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T02:20:00.236189849Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin4: user: warning: [2024-03-10T02:20:00.236212849Z]: [talos] fetching machine config from: "http://192.168.1.87:1880/wk.yaml"
+ceph-thin4: user: warning: [2024-03-10T02:20:00.236225849Z]: [talos] adjusting time (jump) by 18.438248409s via 23.141.40.123, state TIME_OK, status STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin4: user: warning: [2024-03-10T02:20:00.236475849Z]: [talos] synchronized RTC with system clock {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin4: user: warning: [2024-03-10T02:20:00.931899849Z]: [talos] machine config loaded successfully {"component": "controller-runtime", "controller": "config.AcquireController", "sources": ["metal"]}
+ceph-thin4: user: warning: [2024-03-10T02:20:01.102124849Z]: [talos] enabling JSON logging {"component": "controller-runtime"}
+ceph-thin4: user: warning: [2024-03-10T02:20:01.204134849Z]: [talos] task loadConfig (1/1): done, 9.236958169s
+ceph-thin4: user: warning: [2024-03-10T02:20:01.273196849Z]: [talos] setting resolvers {"component": "controller-runtime", "controller": "network.ResolverSpecController", "resolvers": ["192.168.1.87", "192.168.1.9"]}
+ceph-thin4: user: warning: [2024-03-10T02:20:01.451936849Z]: [talos] phase config (10/11): done, 9.578248225s
+ceph-thin4: user: warning: [2024-03-10T02:20:01.451973849Z]: [talos] phase unmountSystem (11/11): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:01.452132849Z]: [talos] task unmountStatePartition (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:01.656089849Z]: [talos] task unmountStatePartition (1/1): unmount skipped
+ceph-thin4: user: warning: [2024-03-10T02:20:01.733233849Z]: [talos] task unmountStatePartition (1/1): done, 281.131772ms
+ceph-thin4: user: warning: [2024-03-10T02:20:01.813514849Z]: [talos] phase unmountSystem (11/11): done, 361.530175ms
+ceph-thin4: user: warning: [2024-03-10T02:20:01.888599849Z]: [talos] initialize sequence: done: 21.504532872s
+ceph-thin4: user: warning: [2024-03-10T02:20:01.956560849Z]: [talos] install sequence: 0 phase(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:02.011771849Z]: [talos] install sequence: done: 55.19922ms
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073413849Z]: [talos] boot sequence: 18 phase(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073427849Z]: [talos] phase saveStateEncryptionConfig (1/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073461849Z]: [talos] task SaveStateEncryptionConfig (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073491849Z]: [talos] task SaveStateEncryptionConfig (1/1): done, 30.231\xc2\xb5s
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073513849Z]: [talos] phase saveStateEncryptionConfig (1/18): done, 85.143\xc2\xb5s
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073525849Z]: [talos] phase mountState (2/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073548849Z]: [talos] task mountStatePartition (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:02.073605849Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin4: user: warning: [2024-03-10T02:20:02.687602849Z]: [talos] formatting the partition "/dev/sdd5" as "xfs" with label "STATE"
+ceph-thin4: user: warning: [2024-03-10T02:20:03.688503849Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be registered, api certificates
+ceph-thin4: kern:  notice: [2024-03-10T02:20:06.223940849Z]: XFS (sdd5): Mounting V5 Filesystem
+ceph-thin4: kern:    info: [2024-03-10T02:20:06.790776849Z]: XFS (sdd5): Ending clean mount
+ceph-thin4: user: warning: [2024-03-10T02:20:06.851930849Z]: [talos] task mountStatePartition (1/1): done, 4.778354358s
+ceph-thin4: user: warning: [2024-03-10T02:20:06.930295849Z]: [talos] phase mountState (2/18): done, 4.856757173s
+ceph-thin4: user: warning: [2024-03-10T02:20:07.001380849Z]: [talos] phase saveConfig (3/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:07.001442849Z]: [talos] task saveConfig (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:07.122475849Z]: [talos] node identity established {"component": "controller-runtime", "controller": "cluster.NodeIdentityController", "node_id": "zjAeFTYzDAMJ46ZpndhdqRFwlnrnCUwJNAbf7KeVJROA"}
+ceph-thin4: user: warning: [2024-03-10T02:20:07.323885849Z]: [talos] task saveConfig (1/1): done, 322.427228ms
+ceph-thin4: user: warning: [2024-03-10T02:20:07.392869849Z]: [talos] phase saveConfig (3/18): done, 391.501374ms
+ceph-thin4: user: warning: [2024-03-10T02:20:07.392887849Z]: [talos] phase memorySizeCheck (4/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:07.392914849Z]: [talos] task memorySizeCheck (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:07.393137849Z]: [talos] memory size is OK
+ceph-thin4: user: warning: [2024-03-10T02:20:07.639304849Z]: [talos] memory size is 10896 MiB
+ceph-thin4: user: warning: [2024-03-10T02:20:07.690491849Z]: [talos] task memorySizeCheck (1/1): done, 297.573481ms
+ceph-thin4: user: warning: [2024-03-10T02:20:07.690533849Z]: [talos] phase memorySizeCheck (4/18): done, 297.648463ms
+ceph-thin4: user: warning: [2024-03-10T02:20:07.690551849Z]: [talos] phase diskSizeCheck (5/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:07.906447849Z]: [talos] task diskSizeCheck (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:07.968142849Z]: [talos] disk size is OK
+ceph-thin4: user: warning: [2024-03-10T02:20:08.009986849Z]: [talos] disk size is 118236 MiB
+ceph-thin4: user: warning: [2024-03-10T02:20:08.010032849Z]: [talos] task diskSizeCheck (1/1): done, 103.581019ms
+ceph-thin4: user: warning: [2024-03-10T02:20:08.010066849Z]: [talos] phase diskSizeCheck (5/18): done, 319.516723ms
+ceph-thin4: user: warning: [2024-03-10T02:20:08.010088849Z]: [talos] phase env (6/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:08.010125849Z]: [talos] task setUserEnvVars (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:08.323972849Z]: [talos] task setUserEnvVars (1/1): done, 313.830024ms
+ceph-thin4: user: warning: [2024-03-10T02:20:08.323995849Z]: [talos] phase env (6/18): done, 313.916388ms
+ceph-thin4: user: warning: [2024-03-10T02:20:08.324009849Z]: [talos] phase containerd (7/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:08.324063849Z]: [talos] task startContainerd (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:08.586834849Z]: [talos] service[containerd](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:20:08.586858849Z]: [talos] service[containerd](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:20:08.587731849Z]: [talos] service[containerd](Running): Process Process(["/bin/containerd" "--address" "/system/run/containerd/containerd.sock" "--state" "/system/run/containerd" "--root" "/system/var/lib/containerd"]) started with PID 1651
+ceph-thin4: user: warning: [2024-03-10T02:20:08.996407849Z]: [talos] service[apid](Waiting): Waiting for service "containerd" to be "up", api certificates
+ceph-thin4: user: warning: [2024-03-10T02:20:11.820951849Z]: [talos] service[containerd](Running): Health check failed: rpc error: code = DeadlineExceeded desc = context deadline exceeded
+ceph-thin4: user: warning: [2024-03-10T02:20:14.590452849Z]: [talos] service[containerd](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-10T02:20:14.672044849Z]: [talos] task startContainerd (1/1): done, 6.347972516s
+ceph-thin4: user: warning: [2024-03-10T02:20:14.746139849Z]: [talos] phase containerd (7/18): done, 6.422116399s
+ceph-thin4: user: warning: [2024-03-10T02:20:14.817135849Z]: [talos] service[apid](Waiting): Waiting for api certificates
+ceph-thin4: user: warning: [2024-03-10T02:20:14.897379849Z]: [talos] phase dbus (8/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:14.897447849Z]: [talos] task startDBus (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:14.898851849Z]: [talos] task startDBus (1/1): done, 1.397178ms
+ceph-thin4: user: warning: [2024-03-10T02:20:15.077267849Z]: [talos] phase dbus (8/18): done, 260.085507ms
+ceph-thin4: user: warning: [2024-03-10T02:20:15.142003849Z]: [talos] phase ephemeral (9/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:15.203915849Z]: [talos] task mountEphemeralPartition (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:15.290798849Z]: [talos] formatting the partition "/dev/sdd6" as "xfs" with label "EPHEMERAL"
+ceph-thin4: kern:  notice: [2024-03-10T02:20:29.750811849Z]: XFS (sdd6): Mounting V5 Filesystem
+ceph-thin4: kern:    info: [2024-03-10T02:20:31.241321849Z]: XFS (sdd6): Ending clean mount
+ceph-thin4: user: warning: [2024-03-10T02:20:31.373207849Z]: [talos] task mountEphemeralPartition (1/1): done, 16.169302519s
+ceph-thin4: user: warning: [2024-03-10T02:20:31.456805849Z]: [talos] phase ephemeral (9/18): done, 16.31479734s
+ceph-thin4: user: warning: [2024-03-10T02:20:31.456826849Z]: [talos] phase var (10/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:31.456859849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "error": "error writing kubelet PKI: open /etc/kubernetes/bootstrap-kubeconfig: read-only file system"}
+ceph-thin4: user: warning: [2024-03-10T02:20:31.456894849Z]: [talos] task setupVarDirectory (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:31.479642849Z]: [talos] task setupVarDirectory (1/1): done, 22.761571ms
+ceph-thin4: user: warning: [2024-03-10T02:20:31.961314849Z]: [talos] phase var (10/18): done, 504.483532ms
+ceph-thin4: user: warning: [2024-03-10T02:20:31.961332849Z]: [talos] phase overlay (11/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:31.961387849Z]: [talos] task mountOverlayFilesystems (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:32.158497849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "error": "error writing kubelet PKI: open /etc/kubernetes/bootstrap-kubeconfig: read-only file system"}
+ceph-thin4: user: warning: [2024-03-10T02:20:32.396038849Z]: [talos] task mountOverlayFilesystems (1/1): done, 199.849544ms
+ceph-thin4: user: warning: [2024-03-10T02:20:32.478456849Z]: [talos] phase overlay (11/18): done, 517.122795ms
+ceph-thin4: user: warning: [2024-03-10T02:20:32.547427849Z]: [talos] phase legacyCleanup (12/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:32.547522849Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:32.691908849Z]: [talos] task cleanupLegacyStaticPodFiles (1/1): done, 144.334263ms
+ceph-thin4: user: warning: [2024-03-10T02:20:32.778433849Z]: [talos] phase legacyCleanup (12/18): done, 231.021229ms
+ceph-thin4: user: warning: [2024-03-10T02:20:32.853521849Z]: [talos] phase udevSetup (13/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:32.916136849Z]: [talos] task writeUdevRules (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:32.916336849Z]: [talos] task writeUdevRules (1/1): done, 206.24\xc2\xb5s
+ceph-thin4: user: warning: [2024-03-10T02:20:33.048526849Z]: [talos] adjusting time (slew) by 10.361649ms via 23.141.40.123, state TIME_OK, status STA_PLL | STA_NANO {"component": "controller-runtime", "controller": "time.SyncController"}
+ceph-thin4: user: warning: [2024-03-10T02:20:33.048594849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin4: user: warning: [2024-03-10T02:20:33.362686849Z]: [talos] phase udevSetup (13/18): done, 195.012186ms
+ceph-thin4: user: warning: [2024-03-10T02:20:33.433629849Z]: [talos] phase userDisks (14/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:33.496284849Z]: [talos] task mountUserDisks (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:33.558822849Z]: [talos] task mountUserDisks (1/1): done, 62.540001ms
+ceph-thin4: user: warning: [2024-03-10T02:20:33.558847849Z]: [talos] phase userDisks (14/18): done, 125.224393ms
+ceph-thin4: user: warning: [2024-03-10T02:20:33.558861849Z]: [talos] phase userSetup (15/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:33.558886849Z]: [talos] task writeUserFiles (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:33.558905849Z]: [talos] task writeUserFiles (1/1): done, 20.76\xc2\xb5s
+ceph-thin4: user: warning: [2024-03-10T02:20:33.559042849Z]: [talos] phase userSetup (15/18): done, 97.589\xc2\xb5s
+ceph-thin4: user: warning: [2024-03-10T02:20:33.559096849Z]: [talos] phase lvm (16/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:33.559173849Z]: [talos] task activateLogicalVolumes (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:34.362994849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be registered
+ceph-thin4: user: warning: [2024-03-10T02:20:34.469705849Z]: [talos] task activateLogicalVolumes (1/1): done, 911.033408ms
+ceph-thin4: user: warning: [2024-03-10T02:20:34.551023849Z]: [talos] phase lvm (16/18): done, 992.508271ms
+ceph-thin4: user: warning: [2024-03-10T02:20:34.551042849Z]: [talos] phase extendPCRStartAll (17/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:34.551088849Z]: [talos] task extendPCRStartAll (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:34.555097849Z]: [talos] TPM device is not available, skipping PCR extension
+ceph-thin4: user: warning: [2024-03-10T02:20:34.831364849Z]: [talos] task extendPCRStartAll (1/1): done, 280.450069ms
+ceph-thin4: user: warning: [2024-03-10T02:20:34.831401849Z]: [talos] phase extendPCRStartAll (17/18): done, 280.536307ms
+ceph-thin4: user: warning: [2024-03-10T02:20:34.986421849Z]: [talos] phase startEverything (18/18): 1 tasks(s)
+ceph-thin4: user: warning: [2024-03-10T02:20:35.055185849Z]: [talos] task startAllServices (1/1): starting
+ceph-thin4: user: warning: [2024-03-10T02:20:35.055234849Z]: [talos] task startAllServices (1/1): waiting for 7 services
+ceph-thin4: user: warning: [2024-03-10T02:20:35.199068849Z]: [talos] service[cri](Waiting): Waiting for network
+ceph-thin4: user: warning: [2024-03-10T02:20:35.268988849Z]: [talos] service[cri](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:20:35.338924849Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "containerd" to be "up", service "cri" to be "up", service "dashboard" to be "up", service "kubelet" to be "up", service "machined" to be "up", service "udevd" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:20:35.608060849Z]: [talos] service[cri](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:20:35.684121849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:20:35.776004849Z]: [talos] service[cri](Running): Process Process(["/bin/containerd" "--address" "/run/containerd/containerd.sock" "--config" "/etc/cri/containerd.toml"]) started with PID 1691
+ceph-thin4: user: warning: [2024-03-10T02:20:37.202922849Z]: [talos] service[cri](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-10T02:20:37.277030849Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:20:50.263917849Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "kubelet" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:21:01.198743849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin4: user: warning: [2024-03-10T02:21:05.261949849Z]: [talos] task startAllServices (1/1): service "apid" to be "up", service "kubelet" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:21:14.321695849Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:21:15.787036849Z]: [talos] service[kubelet](Running): Started task kubelet (PID 1737) for container kubelet
+ceph-thin4: user: warning: [2024-03-10T02:21:16.549268849Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-10T02:21:20.260815849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:21:35.260088849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:21:50.261207849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:22:01.989347849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin4: user: warning: [2024-03-10T02:22:05.261150849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:22:20.260552849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:22:35.261616849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:22:50.260795849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:23:02.882373849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin4: user: warning: [2024-03-10T02:23:05.261260849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:23:20.261437849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:23:35.261495849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:23:50.261722849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:24:04.070174849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 2 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: connection refused\x5c"\x5cn\x5cttimeout"}
+ceph-thin4: user: warning: [2024-03-10T02:24:05.263248849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:24:20.263277849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:24:35.264686849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:24:50.264655849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:25:05.266037849Z]: [talos] task startAllServices (1/1): service "apid" to be "up"
+ceph-thin4: user: warning: [2024-03-10T02:25:05.992584849Z]: [talos] service[apid](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-10T02:25:06.064290849Z]: [talos] service[apid](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-10T02:25:07.035017849Z]: [talos] service[apid](Running): Started task apid (PID 1838) for container apid
+ceph-thin4: user: warning: [2024-03-10T02:25:07.152753849Z]: [talos] service[apid](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-10T02:25:07.227864849Z]: [talos] task startAllServices (1/1): done, 4m32.176825104s
+ceph-thin4: user: warning: [2024-03-10T02:25:07.305984849Z]: [talos] phase startEverything (18/18): done, 4m32.323734306s
+ceph-thin4: user: warning: [2024-03-10T02:25:07.386100849Z]: [talos] boot sequence: done: 5m5.317720695s
+ceph-thin4: user: warning: [2024-03-10T02:27:21.067585849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin4\x5c" not found"}
+ceph-thin4: user: warning: [2024-03-10T02:27:21.759774849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin4\x5c" not found"}
+ceph-thin4: user: warning: [2024-03-10T02:27:23.108593849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin4\x5c" not found"}
+ceph-thin4: user: warning: [2024-03-10T02:27:24.793633849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"ceph-thin4\x5c" not found"}
+ceph-thin4: user: warning: [2024-03-10T02:28:07.092294849Z]: [talos] machine is running and ready {"component": "controller-runtime", "controller": "runtime.MachineStatusController"}
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.333395849Z]: cni0: port 1(veth99ed6312) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.402189849Z]: cni0: port 1(veth99ed6312) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.402358849Z]: device veth99ed6312 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.534645849Z]: cni0: port 1(veth99ed6312) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.603326849Z]: cni0: port 1(veth99ed6312) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.674206849Z]: cni0: port 1(veth99ed6312) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.748118849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.823228849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth99ed6312: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.906588849Z]: cni0: port 1(veth99ed6312) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T02:29:50.975254849Z]: cni0: port 1(veth99ed6312) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.526332849Z]: cni0: port 2(veth6221ca58) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.595075849Z]: cni0: port 2(veth6221ca58) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.664134849Z]: device veth6221ca58 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.761475849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.836523849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth6221ca58: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.836579849Z]: cni0: port 2(veth6221ca58) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T02:29:57.988543849Z]: cni0: port 2(veth6221ca58) entered forwarding state
+ceph-thin4: user: warning: [2024-03-10T03:13:55.859880849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T04:34:31.071095849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T05:55:06.286167849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T06:18:25.227181849Z]: [talos] ntp query error with server "23.141.40.123" {"component": "controller-runtime", "controller": "time.SyncController", "error": "kiss of death received"}
+ceph-thin4: user: warning: [2024-03-10T07:15:41.493331849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T08:36:16.701855849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T09:56:51.911743849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T11:17:27.114392849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T12:33:58.375910849Z]: [talos] ntp query error with server "66.85.78.80" {"component": "controller-runtime", "controller": "time.SyncController", "error": "read udp 192.168.0.24:51006->66.85.78.80:123: i/o timeout"}
+ceph-thin4: user: warning: [2024-03-10T12:38:02.491601849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T13:58:37.697023849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-10T15:14:50.936679849Z]: cni0: port 3(vethe585397b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:14:51.005521849Z]: cni0: port 3(vethe585397b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:14:51.074709849Z]: device vethe585397b entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:14:51.153180849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:14:51.228853849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe585397b: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:14:51.312397849Z]: cni0: port 3(vethe585397b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:14:51.312405849Z]: cni0: port 3(vethe585397b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:15:02.393782849Z]: cni0: port 3(vethe585397b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:15:02.464005849Z]: device vethe585397b left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:15:02.524636849Z]: cni0: port 3(vethe585397b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.252201849Z]: cni0: port 3(vethbaee63cc) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.321142849Z]: cni0: port 3(vethbaee63cc) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.390255849Z]: device vethbaee63cc entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.463754849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.539173849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethbaee63cc: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.622878849Z]: cni0: port 3(vethbaee63cc) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:16:25.691739849Z]: cni0: port 3(vethbaee63cc) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:16:28.738240849Z]: cni0: port 3(vethbaee63cc) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:28.807967849Z]: device vethbaee63cc left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:16:28.868618849Z]: cni0: port 3(vethbaee63cc) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.071856849Z]: cni0: port 3(vethf78b1a57) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.140884849Z]: cni0: port 3(vethf78b1a57) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.210004849Z]: device vethf78b1a57 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.282558849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.357809849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf78b1a57: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.441517849Z]: cni0: port 3(vethf78b1a57) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:16:30.510358849Z]: cni0: port 3(vethf78b1a57) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:16:33.770954849Z]: cni0: port 3(vethf78b1a57) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:33.840794849Z]: device vethf78b1a57 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:16:33.901387849Z]: cni0: port 3(vethf78b1a57) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.058794849Z]: cni0: port 3(veth177b1b2f) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.127692849Z]: cni0: port 3(veth177b1b2f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.196811849Z]: device veth177b1b2f entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.273103849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.348344849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth177b1b2f: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.348397849Z]: cni0: port 3(veth177b1b2f) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:16:35.348404849Z]: cni0: port 3(veth177b1b2f) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:16:44.835320849Z]: cni0: port 3(veth177b1b2f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:16:44.905006849Z]: device veth177b1b2f left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:16:44.965559849Z]: cni0: port 3(veth177b1b2f) entered disabled state
+ceph-thin4: user: warning: [2024-03-10T15:19:12.898357849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.294833849Z]: cni0: port 3(vethb2770075) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.363766849Z]: cni0: port 3(vethb2770075) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.432861849Z]: device vethb2770075 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.507489849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.582759849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb2770075: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.666799849Z]: cni0: port 3(vethb2770075) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:24:21.735671849Z]: cni0: port 3(vethb2770075) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:24:24.634600849Z]: cni0: port 3(vethb2770075) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:24:24.704333849Z]: device vethb2770075 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:24:24.764858849Z]: cni0: port 3(vethb2770075) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.392317849Z]: cni0: port 3(veth46d33842) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.461264849Z]: cni0: port 3(veth46d33842) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.530597849Z]: device veth46d33842 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.603164849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.678531849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth46d33842: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.762113849Z]: cni0: port 3(veth46d33842) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:25:37.830961849Z]: cni0: port 3(veth46d33842) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:25:40.945288849Z]: cni0: port 3(veth46d33842) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:41.015374849Z]: device veth46d33842 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:25:41.075930849Z]: cni0: port 3(veth46d33842) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.199565849Z]: cni0: port 3(vethccf06e6b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.268539849Z]: cni0: port 3(vethccf06e6b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.337679849Z]: device vethccf06e6b entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.410981849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.486223849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethccf06e6b: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.486277849Z]: cni0: port 3(vethccf06e6b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:25:42.486283849Z]: cni0: port 3(vethccf06e6b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:25:45.995194849Z]: cni0: port 3(vethccf06e6b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:46.064788849Z]: device vethccf06e6b left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:25:46.125423849Z]: cni0: port 3(vethccf06e6b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.398259849Z]: cni0: port 3(veth066d8118) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.467112849Z]: cni0: port 3(veth066d8118) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.536163849Z]: device veth066d8118 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.622504849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.697723849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth066d8118: link becomes ready
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.781199849Z]: cni0: port 3(veth066d8118) entered blocking state
+ceph-thin4: kern:    info: [2024-03-10T15:25:47.781207849Z]: cni0: port 3(veth066d8118) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-10T15:25:56.038056849Z]: cni0: port 3(veth066d8118) entered disabled state
+ceph-thin4: kern:    info: [2024-03-10T15:25:56.107840849Z]: device veth066d8118 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-10T15:25:56.168482849Z]: cni0: port 3(veth066d8118) entered disabled state
+ceph-thin4: user: warning: [2024-03-10T16:39:48.196454849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T18:00:23.407157849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T19:20:58.633185849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T20:41:33.918657849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T22:02:09.126702849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-10T23:22:44.413028849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T00:43:19.720155849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T02:03:54.942645849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T03:24:30.151605849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T04:45:05.362374849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T06:05:40.571621849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T07:26:15.863660849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T08:46:51.207427849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T10:07:26.415021849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T11:28:01.633556849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T12:48:36.844795849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T14:09:12.048104849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T15:29:47.251243849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T16:50:22.467098849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T18:10:57.744269849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T19:31:32.953095849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T20:52:08.277816849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T22:12:43.490327849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-11T23:33:18.709790849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T00:53:53.916715849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T02:14:29.123633849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T03:35:04.338387849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T04:55:39.546238849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T06:16:14.877053849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T07:36:50.090020849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T08:57:25.288498849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T10:18:00.522269849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T11:38:35.739567849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T12:59:11.012448849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T14:19:46.213983849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T15:40:21.428251849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T17:00:56.638920849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T18:21:31.855789849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T19:42:07.066580849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T21:02:42.265359849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T22:23:17.469289849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-12T23:43:52.669316849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T01:04:27.886250849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T02:25:03.096641849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T03:45:38.428090849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T05:06:13.634251849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T06:26:48.974470849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T07:47:24.175828849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T09:07:59.378484849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T10:28:34.702478849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T11:49:09.908074849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T12:56:41.021046849Z]: [talos] error watching discovery service state {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = closing transport due to: connection error: desc = \x5c"error reading from server: read tcp 192.168.0.24:43640->172.174.35.21:443: read: connection timed out\x5c", received prior goaway: code: NO_ERROR"}
+ceph-thin4: user: warning: [2024-03-13T12:56:51.785497849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:01.785904849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:03.552033849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:05.825993849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:07.902033849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:10.630310849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:15.616964849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:26.983686849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:34021->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:57:37.762032849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:34021->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:58:06.937195849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:58:48.270767849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:51381->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T12:59:51.955015849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:59372->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:00:40.616491849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:54114->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:01:26.777785849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:54114->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:02:18.876515849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:44022->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:03:46.058494849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:49820->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:04:47.092963849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:49820->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:06:04.176675849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:35119->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:07:29.704306849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:37422->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:08:49.586274849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:37422->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:09:45.115871849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T13:10:14.585501849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:60012->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:10:55.932661849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:60012->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:11:51.444789849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:34377->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:13:19.044327849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:34377->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:13:53.804789849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:56037->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:14:44.804782849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:56037->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:15:25.845435849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:56037->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:16:17.216696849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:33848->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:17:06.122152849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:33848->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:17:46.534268849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:33848->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:18:45.215860849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:60559->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:20:12.732296849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:55914->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:20:43.311050849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:55914->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:21:42.975285849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:55914->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:22:18.159244849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:55914->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:23:26.026024849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:45273->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:24:46.475962849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:45273->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:26:02.198285849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:56193->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:26:43.146062849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:56193->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:27:18.300676849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:56193->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:27:53.646767849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:48462->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:29:19.022319849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:48462->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:30:12.058359849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:44952->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:31:00.514236849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:44952->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:31:44.764584849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:44952->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:33:09.989249849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:59551->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:34:30.849849849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:59551->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:35:09.708684849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:37640->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:35:42.429135849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:37640->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:37:00.338125849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:50790->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:37:47.002619849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:50790->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:38:38.528535849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:50790->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:39:44.514448849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:40276->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:41:00.193525849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:40276->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:42:13.185267849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:39870->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:43:19.922235849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:39870->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:44:35.861534849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:51388->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:45:50.468192849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:51388->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:46:54.454980849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:57093->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:47:55.125841849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:57093->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:49:14.049546849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:34698->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:50:21.348800849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:43570->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:50:58.893622849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:43570->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:52:17.725659849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:43570->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:53:36.720487849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:40335->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:54:26.877499849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:40335->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:55:06.114338849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:40335->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:55:57.114085849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:49250->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:56:55.844536849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:49250->192.168.1.9:53: read: connection refused\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:58:05.169893849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:41861->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T13:59:31.378180849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = Unavailable desc = connection error: desc = \x5c"transport: Error while dialing: dial tcp: lookup discovery.talos.dev on 192.168.1.9:53: read udp 192.168.0.24:41861->192.168.1.9:53: i/o timeout\x5c"", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-13T14:30:20.332692849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T15:50:55.552458849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T17:11:30.765504849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T18:32:05.967754849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T19:52:41.264273849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T21:13:16.464096849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T22:33:51.672514849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-13T23:54:26.883817849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T01:15:02.102113849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T02:35:37.307494849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T03:56:12.613305849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T05:16:47.820662849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T06:37:23.020650849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T07:57:58.223632849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T09:18:33.430271849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T10:39:08.632283849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T11:59:43.838896849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T13:20:19.159345849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T14:40:54.449520849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T16:01:29.656169849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T17:22:04.871386849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T18:42:40.085149849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T20:03:15.290629849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T21:23:50.493048849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-14T22:44:25.692272849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T00:05:00.897213849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T01:25:36.106811849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T02:46:11.316441849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T04:06:46.622853849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T05:27:21.849659849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T06:47:57.213376849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T08:08:32.423175849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T09:29:07.627628849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T10:49:42.837577849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T12:10:18.115489849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T13:30:53.327682849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T14:51:28.530450849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T16:12:03.733699849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T17:32:38.952842849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T18:53:14.178090849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T20:13:49.394150849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T21:34:24.614693849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-15T22:54:59.827204849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T00:15:35.041798849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T01:36:10.249588849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T02:56:45.475737849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T04:17:20.692095849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T05:37:55.908237849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T06:58:31.128320849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T08:19:06.426695849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T09:39:41.663317849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T11:00:16.885085849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T12:20:52.239102849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T13:41:27.467367849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T15:02:02.686103849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T16:22:37.897472849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T17:43:13.113596849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T19:03:48.334987849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T20:24:23.659421849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T21:44:58.877549849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-16T23:05:34.098386849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T00:26:09.309798849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T01:46:44.529489849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T03:07:19.736976849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T04:27:54.965838849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T05:48:30.193798849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T07:09:05.413356849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T08:29:40.624455849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T09:50:15.836286849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T11:10:51.135144849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T12:31:26.342997849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T13:52:01.563007849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T15:12:36.789847849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T16:33:12.015523849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T17:53:47.222824849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T19:14:22.431641849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T20:34:57.644120849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T21:55:32.854801849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-17T23:16:08.069282849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T00:36:43.284079849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T01:57:18.499933849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T03:17:53.715747849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T04:38:28.936815849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T05:59:04.151755849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T07:19:39.454837849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T08:40:14.672119849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T10:00:49.879064849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T11:21:25.166591849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T12:42:00.388636849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T14:02:35.595949849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T15:23:10.804262849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T16:43:46.024042849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T18:04:21.384258849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T19:24:56.592152849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T20:45:31.816291849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T22:06:07.024905849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-18T23:26:42.248243849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T00:47:17.456448849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T02:07:52.677465849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T03:28:27.976717849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T04:49:03.182055849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T06:09:38.396850849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T07:30:13.622512849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T08:50:48.830229849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T10:11:24.051401849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T11:31:59.376017849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T12:52:34.584712849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T14:13:09.799364849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T15:33:45.009544849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T16:54:20.213691849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T18:14:55.562707849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T19:35:30.857828849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T20:56:06.060651849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T22:16:41.278773849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-19T23:37:16.495333849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T00:57:51.708352849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T02:18:26.901330849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T03:39:02.130375849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T04:59:37.345834849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T06:20:12.559957849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T07:40:47.771677849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T09:01:22.975948849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T10:21:58.183451849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T11:42:33.397489849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T13:03:08.613720849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T14:23:43.837903849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T15:44:19.139186849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T17:04:54.352490849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T18:25:29.550342849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T19:46:04.762059849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T21:06:39.959964849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T22:27:15.182285849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-20T23:47:50.388811849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T01:08:25.600541849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T02:29:00.816826849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T03:49:36.026187849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T05:10:11.249773849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T06:30:46.456096849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T07:33:24.920877849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "Get \x5c"https://192.168.0.11:6443/api/v1/nodes?allowWatchBookmarks=true&fieldSelector=metadata.name%3Dceph-thin4&resourceVersion=2837314&timeout=7m3s&timeoutSeconds=423&watch=true\x5c": http2: client connection lost"}
+ceph-thin4: user: warning: [2024-03-21T07:33:32.207184849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin4&resourceVersion=2837314\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin4: user: warning: [2024-03-21T07:33:38.511023849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin4&resourceVersion=2837314\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin4: user: warning: [2024-03-21T07:33:44.718781849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin4&resourceVersion=2837314\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin4: user: warning: [2024-03-21T07:33:57.006853849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin4&resourceVersion=2837314\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin4: user: warning: [2024-03-21T07:34:12.366256849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dceph-thin4&resourceVersion=2837314\x5c": dial tcp 192.168.0.11:6443: connect: no route to host"}
+ceph-thin4: kern:    info: [2024-03-21T07:39:21.406255849Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-21T07:39:21.475428849Z]: [talos] removed address 192.168.0.24/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin4: user: warning: [2024-03-21T07:39:21.643321849Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin4: user: warning: [2024-03-21T07:39:21.872463849Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-a4p-993", "domainname": ""}
+ceph-thin4: user: warning: [2024-03-21T07:39:21.872500849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "network.RouteSpecController", "error": "1 error occurred:\x5cn\x5ct* error adding route: netlink receive: network is unreachable, message {Family:2 DstLength:0 SrcLength:0 Tos:0 Table:0 Protocol:3 Scope:0 Type:1 Flags:0 Attributes:{Dst:<nil> Src:192.168.0.24 Gateway:192.168.1.1 OutIface:8 Priority:1024 Table:254 Mark:0 Pref:<nil> Expires:<nil> Metrics:<nil> Multipath:[]}}\x5cn\x5cn"}
+ceph-thin4: user: warning: [2024-03-21T07:39:21.872573849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-a4p-993?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:22.863986849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:23.214857849Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 1737, container kubelet)
+ceph-thin4: user: warning: [2024-03-21T07:39:23.368457849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes/talos-a4p-993?timeout=30s\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:23.753270849Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin4: user: warning: [2024-03-21T07:39:23.840248849Z]: [talos] kubelet client certificate does not match expected nodename, removing {"component": "controller-runtime", "controller": "k8s.KubeletServiceController", "expected": "system:node:talos-a4p-993", "actual": "system:node:ceph-thin4"}
+ceph-thin4: user: warning: [2024-03-21T07:39:24.105322849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin4: user: warning: [2024-03-21T07:39:24.219407849Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-21T07:39:24.344208849Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-21T07:39:24.643661849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:25.133257849Z]: [talos] service[kubelet](Running): Started task kubelet (PID 236257) for container kubelet
+ceph-thin4: user: warning: [2024-03-21T07:39:26.604363849Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-21T07:39:26.894515849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:30.676270849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:41.070017849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:39:51.498773849Z]: [talos] failed refreshing discovery service data {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "error updating local affiliate data: rpc error: code = DeadlineExceeded desc = context deadline exceeded"}
+ceph-thin4: user: warning: [2024-03-21T07:39:58.623454849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:40:02.062577849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-21T07:40:13.271016849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-21T07:40:21.492360849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "secrets.APIController", "error": "failed to sign API server CSR: 4 error(s) occurred:\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.12:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.13:50001: connect: network is unreachable\x5c"\x5cn\x5ctrpc error: code = Unavailable desc = last connection error: connection error: desc = \x5c"transport: Error while dialing: dial tcp 192.168.0.11:50001: connect: network is unreachable\x5c"\x5cn\x5cttimeout"}
+ceph-thin4: user: warning: [2024-03-21T07:40:24.107433849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-21T07:40:36.785844849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: kern:    info: [2024-03-21T07:40:42.112979849Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-21T07:40:44.629705849Z]: [talos] node watch error {"component": "controller-runtime", "controller": "k8s.NodeStatusController", "error": "failed to list *v1.Node: Get \x5c"https://192.168.0.11:6443/api/v1/nodes?fieldSelector=metadata.name%3Dtalos-a4p-993&limit=500&resourceVersion=0\x5c": dial tcp 192.168.0.11:6443: connect: network is unreachable"}
+ceph-thin4: user: warning: [2024-03-21T07:40:47.242314849Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin4", "domainname": "dezendorf.net"}
+ceph-thin4: user: warning: [2024-03-21T07:40:47.435821849Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.24/23", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T07:40:47.616210849Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin4: user: warning: [2024-03-21T07:40:47.870612849Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 236257, container kubelet)
+ceph-thin4: user: warning: [2024-03-21T07:40:48.230816849Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin4: user: warning: [2024-03-21T07:40:48.318420849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin4: user: warning: [2024-03-21T07:40:48.432350849Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-21T07:40:48.561853849Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-21T07:40:49.000226849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-21T07:40:49.256227849Z]: [talos] service[kubelet](Running): Started task kubelet (PID 236737) for container kubelet
+ceph-thin4: kern:    info: [2024-03-21T07:40:49.468601849Z]: r8169 0000:01:00.0 enp1s0: Link is Down
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-21T07:40:49.537455849Z]: [talos] no suitable node IP found, please make sure .machine.kubelet.nodeIP filters and pod/service subnets are set up correctly {"component": "controller-runtime", "controller": "k8s.NodeIPController"}
+ceph-thin4: user: warning: [2024-03-21T07:40:49.766692849Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "talos-a4p-993", "domainname": ""}
+ceph-thin4: user: warning: [2024-03-21T07:40:49.766723849Z]: [talos] removed address 192.168.0.24/23 from "enp1s0" {"component": "controller-runtime", "controller": "network.AddressSpecController"}
+ceph-thin4: user: warning: [2024-03-21T07:40:49.833371849Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 236737, container kubelet)
+ceph-thin4: user: warning: [2024-03-21T07:40:50.433629849Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin4: user: warning: [2024-03-21T07:40:50.521475849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin4: user: warning: [2024-03-21T07:40:50.635484849Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-21T07:40:50.759445849Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-21T07:40:51.165554849Z]: [talos] service[kubelet](Running): Started task kubelet (PID 236839) for container kubelet
+ceph-thin4: user: warning: [2024-03-21T07:40:52.987265849Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin4: kern:    info: [2024-03-21T07:40:53.811652849Z]: r8169 0000:01:00.0 enp1s0: Link is Up - 1Gbps/Full - flow control rx/tx
+ SUBSYSTEM=pci
+ DEVICE=+pci:0000:01:00.0
+ceph-thin4: user: warning: [2024-03-21T07:40:58.941851849Z]: [talos] setting hostname {"component": "controller-runtime", "controller": "network.HostnameSpecController", "hostname": "ceph-thin4", "domainname": "dezendorf.net"}
+ceph-thin4: user: warning: [2024-03-21T07:40:59.132606849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "network.RouteSpecController", "error": "1 error occurred:\x5cn\x5ct* error adding route: netlink receive: network is unreachable, message {Family:2 DstLength:0 SrcLength:0 Tos:0 Table:0 Protocol:3 Scope:0 Type:1 Flags:0 Attributes:{Dst:<nil> Src:192.168.0.24 Gateway:192.168.1.1 OutIface:8 Priority:1024 Table:254 Mark:0 Pref:<nil> Expires:<nil> Metrics:<nil> Multipath:[]}}\x5cn\x5cn"}
+ceph-thin4: user: warning: [2024-03-21T07:40:59.621275849Z]: [talos] assigned address {"component": "controller-runtime", "controller": "network.AddressSpecController", "address": "192.168.0.24/23", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T07:40:59.801918849Z]: [talos] service[kubelet](Stopping): Sending SIGTERM to task kubelet (PID 236839, container kubelet)
+ceph-thin4: user: warning: [2024-03-21T07:41:00.037467849Z]: [talos] created route {"component": "controller-runtime", "controller": "network.RouteSpecController", "destination": "default", "gateway": "192.168.1.1", "table": "main", "link": "enp1s0", "priority": 1024, "family": "inet4"}
+ceph-thin4: user: warning: [2024-03-21T07:41:00.364889849Z]: [talos] service[kubelet](Finished): Service finished successfully
+ceph-thin4: user: warning: [2024-03-21T07:41:00.452370849Z]: [talos] service[kubelet](Waiting): Waiting for service "cri" to be "up", time sync, network
+ceph-thin4: user: warning: [2024-03-21T07:41:00.566169849Z]: [talos] service[kubelet](Preparing): Running pre state
+ceph-thin4: user: warning: [2024-03-21T07:41:00.700802849Z]: [talos] service[kubelet](Preparing): Creating service runner
+ceph-thin4: user: warning: [2024-03-21T07:41:01.416663849Z]: [talos] hello failed {"component": "controller-runtime", "controller": "cluster.DiscoveryServiceController", "error": "rpc error: code = DeadlineExceeded desc = context deadline exceeded", "endpoint": "discovery.talos.dev:443"}
+ceph-thin4: user: warning: [2024-03-21T07:41:01.680864849Z]: [talos] service[kubelet](Running): Started task kubelet (PID 236994) for container kubelet
+ceph-thin4: user: warning: [2024-03-21T07:41:02.182927849Z]: [talos] controller failed {"component": "controller-runtime", "controller": "k8s.NodeApplyController", "error": "1 error(s) occurred:\x5cn\x5cterror getting node: nodes \x5c"talos-a4p-993\x5c" not found"}
+ceph-thin4: user: warning: [2024-03-21T07:41:03.271873849Z]: [talos] service[kubelet](Running): Health check successful
+ceph-thin4: user: warning: [2024-03-21T08:34:55.976950849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T09:55:31.177479849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T11:16:06.381777849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T12:36:41.583376849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T13:57:16.790984849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T15:17:51.993441849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T16:38:27.199737849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T17:59:02.402997849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T19:19:37.604979849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T20:40:12.803950849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T22:00:48.001451849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-21T23:21:23.210724849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T00:41:58.417057849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T02:02:33.704397849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T03:23:08.996890849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T04:43:44.206049849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T06:04:19.406454849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T07:24:54.678681849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T08:45:29.910907849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T10:06:05.221570849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T11:26:40.429684849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T12:47:15.646522849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T14:07:50.856577849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T15:28:26.075873849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T16:49:01.281176849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-22T17:54:54.922247849Z]: cni0: port 3(veth9724710d) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:54:54.993276849Z]: cni0: port 3(veth9724710d) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:54:55.064582849Z]: device veth9724710d entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:54:55.140489849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:54:55.217907849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9724710d: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:54:55.303658849Z]: cni0: port 3(veth9724710d) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:54:55.374613849Z]: cni0: port 3(veth9724710d) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:54:58.328133849Z]: cni0: port 3(veth9724710d) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:54:58.400019849Z]: device veth9724710d left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:54:58.462683849Z]: cni0: port 3(veth9724710d) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.379680849Z]: cni0: port 3(veth52ca05dc) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.450672849Z]: cni0: port 3(veth52ca05dc) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.521917849Z]: device veth52ca05dc entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.600009849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.677433849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth52ca05dc: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.763111849Z]: cni0: port 3(veth52ca05dc) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:16.834051849Z]: cni0: port 3(veth52ca05dc) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:56:20.629520849Z]: cni0: port 3(veth52ca05dc) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:20.701326849Z]: device veth52ca05dc left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:56:20.764031849Z]: cni0: port 3(veth52ca05dc) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:21.705358849Z]: cni0: port 3(veth592fc244) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:21.776450849Z]: cni0: port 3(veth592fc244) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:21.847764849Z]: device veth592fc244 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:56:21.913615849Z]: cni0: port 3(veth592fc244) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:21.984566849Z]: cni0: port 3(veth592fc244) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:56:22.057695849Z]: cni0: port 3(veth592fc244) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:22.059440849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:56:22.206165849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth592fc244: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:56:22.291776849Z]: cni0: port 3(veth592fc244) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:22.362727849Z]: cni0: port 3(veth592fc244) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:56:25.968709849Z]: cni0: port 3(veth592fc244) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:26.040448849Z]: device veth592fc244 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:56:26.103159849Z]: cni0: port 3(veth592fc244) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.183592849Z]: cni0: port 3(veth3b2c2d0b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.254540849Z]: cni0: port 3(veth3b2c2d0b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.325772849Z]: device veth3b2c2d0b entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.391788849Z]: cni0: port 3(veth3b2c2d0b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.462790849Z]: cni0: port 3(veth3b2c2d0b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.537839849Z]: cni0: port 3(veth3b2c2d0b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.618511849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.695962849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3b2c2d0b: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.696020849Z]: cni0: port 3(veth3b2c2d0b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:56:27.852482849Z]: cni0: port 3(veth3b2c2d0b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:56:36.784821849Z]: cni0: port 3(veth3b2c2d0b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:56:36.856627849Z]: device veth3b2c2d0b left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:56:36.919297849Z]: cni0: port 3(veth3b2c2d0b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:57:43.552817849Z]: cni0: port 3(vethf7251127) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:57:43.623738849Z]: cni0: port 3(vethf7251127) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:57:43.694919849Z]: device vethf7251127 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:57:43.773188849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:57:43.850883849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf7251127: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:57:43.936647849Z]: cni0: port 3(vethf7251127) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:57:44.007576849Z]: cni0: port 3(vethf7251127) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:57:47.049992849Z]: cni0: port 3(vethf7251127) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:57:47.121846849Z]: device vethf7251127 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:57:47.184524849Z]: cni0: port 3(vethf7251127) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.006212849Z]: cni0: port 3(veth9a198ae5) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.077209849Z]: cni0: port 3(veth9a198ae5) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.148459849Z]: device veth9a198ae5 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.228102849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.305516849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth9a198ae5: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.391218849Z]: cni0: port 3(veth9a198ae5) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:59:10.391225849Z]: cni0: port 3(veth9a198ae5) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:59:14.419358849Z]: cni0: port 3(veth9a198ae5) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:14.491396849Z]: device veth9a198ae5 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:59:14.554082849Z]: cni0: port 3(veth9a198ae5) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:15.783673849Z]: cni0: port 3(veth947d9b26) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:59:15.854652849Z]: cni0: port 3(veth947d9b26) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:15.925962849Z]: device veth947d9b26 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:59:16.005883849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:59:16.083182849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth947d9b26: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:59:16.083239849Z]: cni0: port 3(veth947d9b26) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:59:16.239605849Z]: cni0: port 3(veth947d9b26) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:59:19.443652849Z]: cni0: port 3(veth947d9b26) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:19.515460849Z]: device veth947d9b26 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:59:19.578186849Z]: cni0: port 3(veth947d9b26) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:20.846882849Z]: cni0: port 3(veth030e63ac) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:59:20.917911849Z]: cni0: port 3(veth030e63ac) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:20.989112849Z]: device veth030e63ac entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:59:21.065876849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:59:21.143305849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth030e63ac: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T17:59:21.143362849Z]: cni0: port 3(veth030e63ac) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T17:59:21.299898849Z]: cni0: port 3(veth030e63ac) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T17:59:31.512108849Z]: cni0: port 3(veth030e63ac) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T17:59:31.583889849Z]: device veth030e63ac left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T17:59:31.646599849Z]: cni0: port 3(veth030e63ac) entered disabled state
+ceph-thin4: user: warning: [2024-03-22T18:09:36.614918849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-22T18:47:02.622371849Z]: cni0: port 3(veth55a0ac52) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:47:02.693384849Z]: cni0: port 3(veth55a0ac52) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:47:02.764560849Z]: device veth55a0ac52 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:47:02.840283849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:47:02.917642849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth55a0ac52: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:47:03.003406849Z]: cni0: port 3(veth55a0ac52) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:47:03.003414849Z]: cni0: port 3(veth55a0ac52) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T18:47:06.052154849Z]: cni0: port 3(veth55a0ac52) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:47:06.123965849Z]: device veth55a0ac52 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:47:06.186625849Z]: cni0: port 3(veth55a0ac52) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.100601849Z]: cni0: port 3(vethc223b7f0) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.171554849Z]: cni0: port 3(vethc223b7f0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.171764849Z]: device vethc223b7f0 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.323219849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.400546849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc223b7f0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.486304849Z]: cni0: port 3(vethc223b7f0) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:40.557173849Z]: cni0: port 3(vethc223b7f0) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T18:48:43.451339849Z]: cni0: port 3(vethc223b7f0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:43.523157849Z]: device vethc223b7f0 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:48:43.585759849Z]: cni0: port 3(vethc223b7f0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:44.572356849Z]: cni0: port 3(vethd99bb94b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:44.643268849Z]: cni0: port 3(vethd99bb94b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:44.643473849Z]: device vethd99bb94b entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:48:44.780032849Z]: cni0: port 3(vethd99bb94b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:44.850942849Z]: cni0: port 3(vethd99bb94b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T18:48:44.927332849Z]: cni0: port 3(vethd99bb94b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:45.001992849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:48:45.079232849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethd99bb94b: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:48:45.164946849Z]: cni0: port 3(vethd99bb94b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:45.235896849Z]: cni0: port 3(vethd99bb94b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T18:48:48.495770849Z]: cni0: port 3(vethd99bb94b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:48.567456849Z]: device vethd99bb94b left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:48:48.630080849Z]: cni0: port 3(vethd99bb94b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:49.641959849Z]: cni0: port 3(vetha2f479a7) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:49.712936849Z]: cni0: port 3(vetha2f479a7) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:49.784188849Z]: device vetha2f479a7 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:48:49.850110849Z]: cni0: port 3(vetha2f479a7) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:49.921041849Z]: cni0: port 3(vetha2f479a7) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T18:48:49.994232849Z]: cni0: port 3(vetha2f479a7) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:50.066163849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:48:50.143385849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetha2f479a7: link becomes ready
+ceph-thin4: kern:    info: [2024-03-22T18:48:50.228868849Z]: cni0: port 3(vetha2f479a7) entered blocking state
+ceph-thin4: kern:    info: [2024-03-22T18:48:50.299768849Z]: cni0: port 3(vetha2f479a7) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-22T18:48:58.568359849Z]: cni0: port 3(vetha2f479a7) entered disabled state
+ceph-thin4: kern:    info: [2024-03-22T18:48:58.640354849Z]: device vetha2f479a7 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-22T18:48:58.703019849Z]: cni0: port 3(vetha2f479a7) entered disabled state
+ceph-thin4: user: warning: [2024-03-22T19:30:11.769639849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T20:50:46.961977849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T22:11:22.150643849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-22T23:31:57.428091849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T00:52:32.613381849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T02:13:07.873797849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T03:33:43.064186849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T04:54:18.258653849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T06:14:53.445075849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T07:35:28.627648849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T08:56:03.813503849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T10:16:39.008331849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T11:37:14.194374849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T12:57:49.456806849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T14:18:24.644252849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-23T15:30:04.954870849Z]: cni0: port 3(veth4c11b60b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:30:05.025782849Z]: cni0: port 3(veth4c11b60b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:30:05.096965849Z]: device veth4c11b60b entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:30:05.174878849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:30:05.252505849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth4c11b60b: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:30:05.338207849Z]: cni0: port 3(veth4c11b60b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:30:05.409133849Z]: cni0: port 3(veth4c11b60b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T15:30:08.377257849Z]: cni0: port 3(veth4c11b60b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:30:08.448943849Z]: device veth4c11b60b left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:30:08.511579849Z]: cni0: port 3(veth4c11b60b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:31:51.663823849Z]: cni0: port 3(veth8e3f64e9) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:31:51.734697849Z]: cni0: port 3(veth8e3f64e9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:31:51.734887849Z]: device veth8e3f64e9 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:31:51.884256849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:31:51.961595849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth8e3f64e9: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:31:51.961651849Z]: cni0: port 3(veth8e3f64e9) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:31:52.118018849Z]: cni0: port 3(veth8e3f64e9) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T15:31:54.777084849Z]: cni0: port 3(veth8e3f64e9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:31:54.848857849Z]: device veth8e3f64e9 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:31:54.911531849Z]: cni0: port 3(veth8e3f64e9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.209146849Z]: cni0: port 3(veth5cae2b0c) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.280062849Z]: cni0: port 3(veth5cae2b0c) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.351235849Z]: device veth5cae2b0c entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.432128849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.509892849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth5cae2b0c: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.595742849Z]: cni0: port 3(veth5cae2b0c) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:31:56.666623849Z]: cni0: port 3(veth5cae2b0c) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T15:31:59.828685849Z]: cni0: port 3(veth5cae2b0c) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:31:59.900280849Z]: device veth5cae2b0c left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:31:59.962930849Z]: cni0: port 3(veth5cae2b0c) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.317312849Z]: cni0: port 3(vethd2746791) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.388297849Z]: cni0: port 3(vethd2746791) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.459410849Z]: device vethd2746791 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.534654849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.612063849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethd2746791: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.697677849Z]: cni0: port 3(vethd2746791) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T15:32:01.768610849Z]: cni0: port 3(vethd2746791) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T15:32:09.905643849Z]: cni0: port 3(vethd2746791) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T15:32:09.977361849Z]: device vethd2746791 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T15:32:10.039932849Z]: cni0: port 3(vethd2746791) entered disabled state
+ceph-thin4: user: warning: [2024-03-23T15:38:59.838011849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T16:59:35.009505849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T18:20:10.178178849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T19:40:45.360301849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T21:01:20.550753849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-23T22:21:55.725546849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.514932849Z]: cni0: port 3(vethbed1fa43) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.585745849Z]: cni0: port 3(vethbed1fa43) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.656822849Z]: device vethbed1fa43 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.736395849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.813657849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethbed1fa43: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.899124849Z]: cni0: port 3(vethbed1fa43) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:57:41.899131849Z]: cni0: port 3(vethbed1fa43) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T22:57:47.315953849Z]: cni0: port 3(vethbed1fa43) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:57:47.387751849Z]: device vethbed1fa43 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:57:47.450233849Z]: cni0: port 3(vethbed1fa43) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.483227849Z]: cni0: port 3(vethc9d0aebd) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.554064849Z]: cni0: port 3(vethc9d0aebd) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.625251849Z]: device vethc9d0aebd entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.705425849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.782610849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc9d0aebd: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.868137849Z]: cni0: port 3(vethc9d0aebd) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:59:28.938953849Z]: cni0: port 3(vethc9d0aebd) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T22:59:32.731526849Z]: cni0: port 3(vethc9d0aebd) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:32.803316849Z]: device vethc9d0aebd left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:59:32.865894849Z]: cni0: port 3(vethc9d0aebd) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.224292849Z]: cni0: port 3(vethceb9693e) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.295172849Z]: cni0: port 3(vethceb9693e) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.295379849Z]: device vethceb9693e entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.452751849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.530261849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethceb9693e: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.615864849Z]: cni0: port 3(vethceb9693e) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:59:34.686630849Z]: cni0: port 3(vethceb9693e) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T22:59:38.756807849Z]: cni0: port 3(vethceb9693e) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:38.828971849Z]: device vethceb9693e left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:59:38.891573849Z]: cni0: port 3(vethceb9693e) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.080312849Z]: cni0: port 3(vethf2a980c5) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.151196849Z]: cni0: port 3(vethf2a980c5) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.222229849Z]: device vethf2a980c5 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.300701849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.377920849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethf2a980c5: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.463496849Z]: cni0: port 3(vethf2a980c5) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T22:59:40.534340849Z]: cni0: port 3(vethf2a980c5) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T22:59:48.815194849Z]: cni0: port 3(vethf2a980c5) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T22:59:48.886990849Z]: device vethf2a980c5 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T22:59:48.949516849Z]: cni0: port 3(vethf2a980c5) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.451569849Z]: cni0: port 3(vethad8acfb9) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.522394849Z]: cni0: port 3(vethad8acfb9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.593442849Z]: device vethad8acfb9 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.684187849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.761371849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethad8acfb9: link becomes ready
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.761448849Z]: cni0: port 3(vethad8acfb9) entered blocking state
+ceph-thin4: kern:    info: [2024-03-23T23:00:27.761457849Z]: cni0: port 3(vethad8acfb9) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-23T23:04:08.642552849Z]: cni0: port 3(vethad8acfb9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-23T23:04:08.714226849Z]: device vethad8acfb9 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-23T23:04:08.776786849Z]: cni0: port 3(vethad8acfb9) entered disabled state
+ceph-thin4: user: warning: [2024-03-23T23:42:30.896461849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T01:03:06.077430849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.214135849Z]: cni0: port 3(vethb1858fde) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.285209849Z]: cni0: port 3(vethb1858fde) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.356437849Z]: device vethb1858fde entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.434214849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.511667849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethb1858fde: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.597616849Z]: cni0: port 3(vethb1858fde) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:23:58.668701849Z]: cni0: port 3(vethb1858fde) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:24:02.057644849Z]: cni0: port 3(vethb1858fde) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:24:02.129913849Z]: device vethb1858fde left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:24:02.192727849Z]: cni0: port 3(vethb1858fde) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:37.847838849Z]: cni0: port 3(vethe54ff500) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:25:37.918984849Z]: cni0: port 3(vethe54ff500) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:37.990378849Z]: device vethe54ff500 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:25:38.072117849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:25:38.149643849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe54ff500: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:25:38.149703849Z]: cni0: port 3(vethe54ff500) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:25:38.306488849Z]: cni0: port 3(vethe54ff500) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:25:42.436924849Z]: cni0: port 3(vethe54ff500) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:42.508932849Z]: device vethe54ff500 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:25:42.571501849Z]: cni0: port 3(vethe54ff500) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.077254849Z]: cni0: port 3(vethfdcb656f) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.148441849Z]: cni0: port 3(vethfdcb656f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.219833849Z]: device vethfdcb656f entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.295789849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.373373849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethfdcb656f: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.373433849Z]: cni0: port 3(vethfdcb656f) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:25:44.530287849Z]: cni0: port 3(vethfdcb656f) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:25:48.469349849Z]: cni0: port 3(vethfdcb656f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:48.541680849Z]: device vethfdcb656f left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:25:48.604466849Z]: cni0: port 3(vethfdcb656f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:49.851528849Z]: cni0: port 3(veth7309aac0) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:25:49.922586849Z]: cni0: port 3(veth7309aac0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:49.993974849Z]: device veth7309aac0 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:25:50.074195849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:25:50.151698849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7309aac0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:25:50.237483849Z]: cni0: port 3(veth7309aac0) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:25:50.308462849Z]: cni0: port 3(veth7309aac0) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:25:58.544133849Z]: cni0: port 3(veth7309aac0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:25:58.616509849Z]: device veth7309aac0 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:25:58.679280849Z]: cni0: port 3(veth7309aac0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:30:26.946669849Z]: cni0: port 3(vethcb047984) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:30:27.017905849Z]: cni0: port 3(vethcb047984) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:30:27.018144849Z]: device vethcb047984 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:30:27.168478849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:30:27.246286849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethcb047984: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:30:27.332269849Z]: cni0: port 3(vethcb047984) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:30:27.403367849Z]: cni0: port 3(vethcb047984) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:30:42.762842849Z]: cni0: port 3(vethcb047984) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:30:42.834791849Z]: device vethcb047984 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:30:42.897581849Z]: cni0: port 3(vethcb047984) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:32:59.842699849Z]: cni0: port 3(veth8347e384) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:32:59.913829849Z]: cni0: port 3(veth8347e384) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:32:59.985143849Z]: device veth8347e384 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:33:00.064292849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:00.142023849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth8347e384: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:00.227945849Z]: cni0: port 3(veth8347e384) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:00.299087849Z]: cni0: port 3(veth8347e384) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.233900849Z]: cni0: port 4(veth99768962) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.305026849Z]: cni0: port 4(veth99768962) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.376419849Z]: device veth99768962 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.461628849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.541151849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth99768962: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.628771849Z]: cni0: port 4(veth99768962) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:04.699963849Z]: cni0: port 4(veth99768962) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:33:11.626533849Z]: cni0: port 5(veth24de35d0) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:11.697684849Z]: cni0: port 5(veth24de35d0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:33:11.768956849Z]: device veth24de35d0 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:33:12.388302849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:12.465885849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth24de35d0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:12.551713849Z]: cni0: port 5(veth24de35d0) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:12.622823849Z]: cni0: port 5(veth24de35d0) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.171246849Z]: cni0: port 6(veth7e96f9ac) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.242353849Z]: cni0: port 6(veth7e96f9ac) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.314067849Z]: device veth7e96f9ac entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.404153849Z]: cni0: port 7(vethaf88e992) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.475390849Z]: cni0: port 7(vethaf88e992) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.475619849Z]: device vethaf88e992 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.612687849Z]: cni0: port 7(vethaf88e992) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.612697849Z]: cni0: port 7(vethaf88e992) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.757160849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethaf88e992: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.844520849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:16.922277849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7e96f9ac: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:33:17.008205849Z]: cni0: port 6(veth7e96f9ac) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:33:17.079415849Z]: cni0: port 6(veth7e96f9ac) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:34:23.893326849Z]: cni0: port 5(veth24de35d0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:23.965280849Z]: device veth24de35d0 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.028148849Z]: cni0: port 5(veth24de35d0) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.138412849Z]: cni0: port 7(vethaf88e992) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.222821849Z]: device vethaf88e992 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.285673849Z]: cni0: port 7(vethaf88e992) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.382987849Z]: cni0: port 4(veth99768962) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.455577849Z]: device veth99768962 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:34:24.518555849Z]: cni0: port 4(veth99768962) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:25.868090849Z]: cni0: port 6(veth7e96f9ac) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:25.940243849Z]: device veth7e96f9ac left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:34:26.003018849Z]: cni0: port 6(veth7e96f9ac) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:35.952241849Z]: cni0: port 4(veth92ea8774) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:34:36.023438849Z]: cni0: port 4(veth92ea8774) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:36.094802849Z]: device veth92ea8774 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:34:36.181215849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:34:36.270333849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth92ea8774: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T01:34:36.370292849Z]: cni0: port 4(veth92ea8774) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T01:34:36.441487849Z]: cni0: port 4(veth92ea8774) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T01:34:54.041079849Z]: cni0: port 4(veth92ea8774) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T01:34:54.118868849Z]: device veth92ea8774 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T01:34:54.181777849Z]: cni0: port 4(veth92ea8774) entered disabled state
+ceph-thin4: user: warning: [2024-03-24T02:23:41.260737849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T03:44:16.440005849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T05:04:51.619003849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T06:25:26.798289849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T07:46:01.990271849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T09:06:37.178633849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T10:27:12.447167849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T11:47:47.698090849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T13:08:22.865531849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T14:28:58.043987849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-24T15:35:14.316254849Z]: cni0: port 3(veth8347e384) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:35:14.388171849Z]: device veth8347e384 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:35:14.450695849Z]: cni0: port 3(veth8347e384) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.167935849Z]: cni0: port 3(vethe6379248) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.238865849Z]: cni0: port 3(vethe6379248) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.309956849Z]: device vethe6379248 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.389422849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.466586849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethe6379248: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.466639849Z]: cni0: port 3(vethe6379248) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:36:26.466645849Z]: cni0: port 3(vethe6379248) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T15:36:29.755258849Z]: cni0: port 3(vethe6379248) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:36:29.827045849Z]: device vethe6379248 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:36:29.889584849Z]: cni0: port 3(vethe6379248) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:02.737598849Z]: cni0: port 3(veth3c9e828f) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:02.808412849Z]: cni0: port 3(veth3c9e828f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:02.879500849Z]: device veth3c9e828f entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:38:02.957856849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:38:03.035107849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth3c9e828f: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:38:03.120598849Z]: cni0: port 3(veth3c9e828f) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:03.120611849Z]: cni0: port 3(veth3c9e828f) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T15:38:07.159014849Z]: cni0: port 3(veth3c9e828f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:07.230606849Z]: device veth3c9e828f left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:38:07.293105849Z]: cni0: port 3(veth3c9e828f) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.325447849Z]: cni0: port 3(veth69510f8b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.396257849Z]: cni0: port 3(veth69510f8b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.467361849Z]: device veth69510f8b entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.533192849Z]: cni0: port 3(veth69510f8b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.533202849Z]: cni0: port 3(veth69510f8b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.604384849Z]: cni0: port 3(veth69510f8b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.759966849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.837161849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth69510f8b: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.922737849Z]: cni0: port 3(veth69510f8b) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:08.922744849Z]: cni0: port 3(veth69510f8b) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T15:38:12.173730849Z]: cni0: port 3(veth69510f8b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:12.245696849Z]: device veth69510f8b left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:38:12.308317849Z]: cni0: port 3(veth69510f8b) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:13.709132849Z]: cni0: port 3(veth0ed0120e) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:13.779991849Z]: cni0: port 3(veth0ed0120e) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:13.851094849Z]: device veth0ed0120e entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:38:13.927829849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:38:14.005084849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth0ed0120e: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T15:38:14.090557849Z]: cni0: port 3(veth0ed0120e) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T15:38:14.161329849Z]: cni0: port 3(veth0ed0120e) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T15:38:23.227374849Z]: cni0: port 3(veth0ed0120e) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T15:38:23.299007849Z]: device veth0ed0120e left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T15:38:23.361553849Z]: cni0: port 3(veth0ed0120e) entered disabled state
+ceph-thin4: user: warning: [2024-03-24T15:49:33.227889849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T17:10:08.414198849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T18:30:43.604956849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T19:51:18.794716849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.286909849Z]: cni0: port 3(veth945e39fa) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.358048849Z]: cni0: port 3(veth945e39fa) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.429422849Z]: device veth945e39fa entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.507422849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.584898849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth945e39fa: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.670673849Z]: cni0: port 3(veth945e39fa) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:54:32.670681849Z]: cni0: port 3(veth945e39fa) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T20:54:35.611824849Z]: cni0: port 3(veth945e39fa) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:54:35.683747849Z]: device veth945e39fa left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:54:35.746545849Z]: cni0: port 3(veth945e39fa) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.480144849Z]: cni0: port 3(vethc79a6dee) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.551192849Z]: cni0: port 3(vethc79a6dee) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.551372849Z]: device vethc79a6dee entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.700812849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.778179849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc79a6dee: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.778243849Z]: cni0: port 3(vethc79a6dee) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:06.778248849Z]: cni0: port 3(vethc79a6dee) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T20:56:10.973085849Z]: cni0: port 3(vethc79a6dee) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:11.044840849Z]: device vethc79a6dee left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:56:11.107566849Z]: cni0: port 3(vethc79a6dee) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.144749849Z]: cni0: port 3(veth825ed0c8) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.215785849Z]: cni0: port 3(veth825ed0c8) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.286989849Z]: device veth825ed0c8 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.353026849Z]: cni0: port 3(veth825ed0c8) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.424079849Z]: cni0: port 3(veth825ed0c8) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.499575849Z]: cni0: port 3(veth825ed0c8) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.591867849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.669339849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth825ed0c8: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.755063849Z]: cni0: port 3(veth825ed0c8) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:12.826057849Z]: cni0: port 3(veth825ed0c8) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T20:56:15.992836849Z]: cni0: port 3(veth825ed0c8) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:16.064789849Z]: device veth825ed0c8 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:56:16.127542849Z]: cni0: port 3(veth825ed0c8) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:17.720835849Z]: cni0: port 3(vetheb2e9ccf) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:17.791938849Z]: cni0: port 3(vetheb2e9ccf) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:17.863174849Z]: device vetheb2e9ccf entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:56:17.944784849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:56:18.022184849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vetheb2e9ccf: link becomes ready
+ceph-thin4: kern:    info: [2024-03-24T20:56:18.022243849Z]: cni0: port 3(vetheb2e9ccf) entered blocking state
+ceph-thin4: kern:    info: [2024-03-24T20:56:18.178866849Z]: cni0: port 3(vetheb2e9ccf) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-24T20:56:27.074829849Z]: cni0: port 3(vetheb2e9ccf) entered disabled state
+ceph-thin4: kern:    info: [2024-03-24T20:56:27.146779849Z]: device vetheb2e9ccf left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-24T20:56:27.209555849Z]: cni0: port 3(vetheb2e9ccf) entered disabled state
+ceph-thin4: user: warning: [2024-03-24T21:11:54.079423849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T22:32:29.260958849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-24T23:53:04.443997849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T01:13:39.624056849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T02:34:14.817716849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T03:54:50.001678849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T05:15:25.183907849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T06:36:00.362842849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T07:56:35.552918849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T09:17:10.733628849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T10:37:45.911030849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T11:58:21.091111849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T13:18:56.298062849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T14:39:31.476230849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T16:00:06.663110849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T17:20:41.859424849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T18:41:17.054377849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T20:01:52.240095849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T21:22:27.423577849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-25T22:43:02.601338849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T00:03:37.852951849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T01:24:13.035896849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T02:44:48.311799849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T04:05:23.572310849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T05:25:58.761109849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T06:46:33.952396849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T08:07:09.141435849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T09:27:44.322468849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T10:48:19.519182849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T12:08:54.699400849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.458858849Z]: cni0: port 3(veth7ff24119) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.529832849Z]: cni0: port 3(veth7ff24119) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.601120849Z]: device veth7ff24119 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.677045849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.754397849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): veth7ff24119: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.754460849Z]: cni0: port 3(veth7ff24119) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:10:17.754467849Z]: cni0: port 3(veth7ff24119) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-26T12:10:20.619181849Z]: cni0: port 3(veth7ff24119) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:10:20.690990849Z]: device veth7ff24119 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:10:20.753621849Z]: cni0: port 3(veth7ff24119) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:11:52.939088849Z]: cni0: port 3(vethd94388a3) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:11:53.010154849Z]: cni0: port 3(vethd94388a3) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:11:53.010472849Z]: device vethd94388a3 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:11:53.159552849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:11:53.237048849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethd94388a3: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:11:53.322704849Z]: cni0: port 3(vethd94388a3) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:11:53.322711849Z]: cni0: port 3(vethd94388a3) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-26T12:11:56.990842849Z]: cni0: port 3(vethd94388a3) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:11:57.062932849Z]: device vethd94388a3 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:11:57.125603849Z]: cni0: port 3(vethd94388a3) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:11:58.129821849Z]: cni0: port 3(vethc8b08dd9) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:11:58.200807849Z]: cni0: port 3(vethc8b08dd9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:11:58.272019849Z]: device vethc8b08dd9 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:11:58.337940849Z]: cni0: port 3(vethc8b08dd9) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:11:58.337965849Z]: cni0: port 3(vethc8b08dd9) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-26T12:11:58.409938849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethc8b08dd9: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:12:02.015158849Z]: cni0: port 3(vethc8b08dd9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:12:02.087026849Z]: device vethc8b08dd9 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:12:02.149809849Z]: cni0: port 3(vethc8b08dd9) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.311517849Z]: cni0: port 3(vethd9ff1e93) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.382420849Z]: cni0: port 3(vethd9ff1e93) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.382627849Z]: device vethd9ff1e93 entered promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.533675849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.611044849Z]: IPv6: ADDRCONF(NETDEV_CHANGE): vethd9ff1e93: link becomes ready
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.611107849Z]: cni0: port 3(vethd9ff1e93) entered blocking state
+ceph-thin4: kern:    info: [2024-03-26T12:12:03.767652849Z]: cni0: port 3(vethd9ff1e93) entered forwarding state
+ceph-thin4: kern:    info: [2024-03-26T12:12:13.084142849Z]: cni0: port 3(vethd9ff1e93) entered disabled state
+ceph-thin4: kern:    info: [2024-03-26T12:12:13.156162849Z]: device vethd9ff1e93 left promiscuous mode
+ceph-thin4: kern:    info: [2024-03-26T12:12:13.218810849Z]: cni0: port 3(vethd9ff1e93) entered disabled state
+ceph-thin4: user: warning: [2024-03-26T13:29:29.887620849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T14:50:05.178754849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T16:10:40.362051849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T17:31:15.546960849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T18:51:50.733591849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T20:12:25.915588849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T21:33:01.170930849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-26T22:53:36.429577849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T00:14:11.690593849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T01:34:46.871019849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T02:55:22.058613849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T04:15:57.252631849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T05:36:32.510225849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T06:57:07.687940849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T08:17:42.873890849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T09:38:18.044646849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T10:58:53.221200849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T12:19:28.404240849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T13:40:03.646715849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}
+ceph-thin4: user: warning: [2024-03-27T15:00:38.819830849Z]: [talos] request/renew failed {"component": "controller-runtime", "controller": "network.OperatorSpecController", "operator": "dhcp4", "error": "got an error while processing the request: no matching response packet received", "link": "enp1s0"}

+ 34 - 30
dezendorf/homelab/talos/nodeconfig/1 → dezendorf/homelab/talos/nodeconfig/ceph-x86.yaml

@@ -10,9 +10,11 @@ machine:
         crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUJQakNCOGFBREFnRUNBaEFCdE5hMWNDcXBMUTl5RHh4Vm1hVmJNQVVHQXl0bGNEQVFNUTR3REFZRFZRUUsKRXdWMFlXeHZjekFlRncweU16QTVNRE14TmpNMk5UVmFGdzB6TXpBNE16RXhOak0yTlRWYU1CQXhEakFNQmdOVgpCQW9UQlhSaGJHOXpNQ293QlFZREsyVndBeUVBQW5qWmpDRmRpdTIvNUJNSlI2QWRWTWhwUEQ5MzgxTnYrWnA5Cm1mRndFTENqWVRCZk1BNEdBMVVkRHdFQi93UUVBd0lDaERBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUkKS3dZQkJRVUhBd0l3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFkQmdOVkhRNEVGZ1FVMFU0OVEzK2lZY3k1TTBUSwphWnVBUjIwUlRNVXdCUVlESzJWd0EwRUF6TEtTdG1FQ1BHNzZpYUp5Z3Nmdzc1Z0tqVEVmODFCS0NOVFBBWkJzCnM2alRySktlRVA0SHpzOFIvZStyTGc4ZSszNDZWSXhoY1FMQWVKV21qc2VQRGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
         key: ""
     # Extra certificate subject alternative names for the machine's certificate.
-    certSANs: []
+    certSANs:
     #   # Uncomment this to enable SANs.
-    #   - 10.0.0.10
+        - talos.dezendorf.net
+        - talos-master-01.dezendorf.net
+    #   10.0.0.10
     #   - 172.16.0.10
     #   - 192.168.0.10
 
@@ -28,9 +30,9 @@ machine:
         #     - 169.254.2.53
 
         # # The `extraArgs` field is used to provide additional flags to the kubelet.
-        # extraArgs:
-        #     key: value
-
+        extraArgs:
+            rotate-server-certificates: true
+        
         # # The `extraMounts` field is used to add additional mounts to the kubelet container.
         # extraMounts:
         #     - destination: /var/lib/example
@@ -55,8 +57,8 @@ machine:
     # Provides machine specific network configuration options.
     network:
     # # `interfaces` is used to define the network interface configuration.
-    # interfaces:
-    #     - interface: enp0s1 # The interface name.
+    #  interfaces:
+        #      - interface: eth0 #np0s1 # The interface name.
     #       # Assigns static IP addresses to the interface.
     #       addresses:
     #         - 192.168.2.0/24
@@ -65,7 +67,7 @@ machine:
     #         - network: 0.0.0.0/0 # The route's network (destination).
     #           gateway: 192.168.2.1 # The route's gateway (if empty, creates link scope route).
     #           metric: 1024 # The optional metric for the route.
-    #       mtu: 1500 # The interface's MTU.
+    #        mtu: 9000 #1500 # The interface's MTU.
     #       
     #       # # Picks a network device using the selector.
 
@@ -147,6 +149,7 @@ machine:
     # # Used to statically set the nameservers for the machine.
       nameservers:
           - 192.168.1.87
+          - 192.168.1.9
 
     # # Allows for extra entries to be added to the `/etc/hosts` file
     # extraHostEntries:
@@ -162,16 +165,15 @@ machine:
 
     # Used to provide instructions for installations.
     install:
-        disk: /dev/mmcblk0 # The disk used for installations.
+        disk: /dev/sda # The disk used for installations.
         image: ghcr.io/siderolabs/installer:v1.5.1 # Allows for supplying the image used to perform the installation.
-        wipe: false # false # Indicates if the installation disk should be wiped at installation time.
+        wipe: false # Indicates if the installation disk should be wiped at installation time.
         
         # # Look up disk using disk attributes like model, size, serial and others.
         # diskSelector:
-        #     size: '<= 1TB' # Disk size.
+        #     size: 4GB # Disk size.
         #     model: WDC* # Disk model `/sys/block/<dev>/device/model`.
         #     busPath: /pci0000:00/0000:00:17.0/ata1/host0/target0:0:0/0:0:0:0 # Disk bus path.
-        #     busPath: '*usb3*'
 
         # # Allows for supplying extra kernel args via the bootloader.
         # extraKernelArgs:
@@ -337,20 +339,17 @@ machine:
     #         #     - no_write_workqueue
 
     # # Configures the udev system.
-    udev:
-        # List of udev rules to apply to the udev system
-        rules:
-            - SUBSYSTEM=="sound", KERNEL=="renderD*", GROUP="audio", MODE="0660"
-
-              #SUBSYSTEM=="sound", GROUP="audio", \
-              #OPTIONS+="static_node=snd/seq", OPTIONS+="static_node=snd/timer"
+    # udev:
+    #     # List of udev rules to apply to the udev system
+    #     rules:
+    #         - SUBSYSTEM=="drm", KERNEL=="renderD*", GROUP="44", MODE="0660"
 
     # # Configures the logging system.
-    # logging:
-    #     # Logging destination.
-    #     destinations:
-    #         - endpoint: tcp://1.2.3.4:12345 # Where to send logs. Supported protocols are "tcp" and "udp".
-    #           format: json_lines # Logs format.
+    logging:
+        # Logging destination.
+        destinations:
+            - endpoint: tcp://1.2.3.4:12345 # Where to send logs. Supported protocols are "tcp" and "udp".
+              format: json_lines # Logs format.
 
     # # Configures the kernel.
     # kernel:
@@ -368,14 +367,18 @@ machine:
     # # Configures the node labels for the machine.
 
     # # node labels example.
-
+    nodeLabels:
+        ceph-osd-node: false
+        ceph-mon-node: true
+        ceph-mgr-node: true
+        ceph-rgw-node: true
 # Provides cluster specific configuration options.
 cluster:
     id: DnLy-yXXaIqQRaELsr5VZj-rnVj7jUxyyv69GkmgDIQ= # Globally unique identifier for this cluster (base64 encoded random 32 bytes).
     secret: ssgf5bbwHcen8w5i48nlDIdsUcTf9O3AoO3EQDTbpmo= # Shared secret of cluster (base64 encoded random 32 bytes).
     # Provides control plane specific configuration options.
     controlPlane:
-        endpoint: https://talos-master.dezendorf.net:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
+        endpoint: https://192.168.0.10:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
     # Provides cluster specific network configuration options.
     network:
         dnsDomain: cluster.local # The domain used by Kubernetes DNS.
@@ -478,13 +481,14 @@ cluster:
     #         feature-gates: ServerSideApply=true
 
     # # Kube-proxy server-specific configuration options
-    # proxy:
+    proxy:
     #     disabled: false # Disable kube-proxy deployment on cluster bootstrap.
     #     image: registry.k8s.io/kube-proxy:v1.28.0 # The container image used in the kube-proxy manifest.
-    #     mode: ipvs # proxy mode of kube-proxy.
+        mode: ipvs # proxy mode of kube-proxy.
     #     # Extra arguments to supply to kube-proxy.
-    #     extraArgs:
-    #         proxy-mode: iptables
+        extraArgs:
+            proxy-mode: iptables
+            ipvs-strict-arp: true
 
     # # Scheduler server specific configuration options.
     # scheduler:

+ 12 - 8
dezendorf/homelab/talos/nodeconfig/controlplane.yaml

@@ -58,7 +58,7 @@ machine:
         - interface: eno1
           dhcp: true
           vip:
-              ip: 192.168.0.10
+            ip: 192.168.0.10
     # # `interfaces` is used to define the network interface configuration.
     #  interfaces:
     #     - interface: enp0s1 # The interface name.
@@ -171,7 +171,11 @@ machine:
 
     # Used to provide instructions for installations.
     install:
-        disk: /dev/sda # The disk used for installations.
+        diskSelector:
+            size: '<= 300GB' #/dev/sda # The disk used for installations.
+              #busPath: '*usb*'
+
+        #disk: /dev/sda # The disk used for installations.
         image: ghcr.io/siderolabs/installer:v1.5.1 # Allows for supplying the image used to perform the installation.
         wipe: true # Indicates if the installation disk should be wiped at installation time.
         
@@ -381,7 +385,7 @@ cluster:
     secret: ssgf5bbwHcen8w5i48nlDIdsUcTf9O3AoO3EQDTbpmo= # Shared secret of cluster (base64 encoded random 32 bytes).
     # Provides control plane specific configuration options.
     controlPlane:
-        endpoint: https://talos-master-01.dezendorf.net:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
+        endpoint: https://talos-master-vm-01.dezendorf.net:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
     clusterName: talos-cluster # Configures the cluster's name.
     # Provides cluster specific network configuration options.
     network:
@@ -394,8 +398,8 @@ cluster:
             - 10.96.0.0/12
         
         # # The CNI used.
-        # cni:
-        #     name: none # Name of CNI to use.
+        cni:
+           name: flannel #none # Name of CNI to use.
         #     # URLs containing manifests to apply for the CNI.
         #     urls:
         #         - https://docs.projectcalico.org/archive/v3.20/manifests/canal.yaml
@@ -417,9 +421,9 @@ cluster:
         image: registry.k8s.io/kube-apiserver:v1.28.0 # The container image used in the API server manifest.
         # Extra certificate subject alternative names for the API server's certificate.
         certSANs:
-            - talos-master-01.dezendorf.net
-            - talos-master-02.dezendorf.net
-            - talos-master-03.dezendorf.net
+            - talos-master-vm-01.dezendorf.net
+            - talos-master-vm-02.dezendorf.net
+            - talos-master-vm-03.dezendorf.net
             - talos-master.dezendorf.net
         disablePodSecurityPolicy: true # Disable PodSecurityPolicy in the API server and default manifests.
         # Configure the API server admission plugins.

+ 5 - 3
dezendorf/homelab/talos/nodeconfig/pi.yaml

@@ -174,6 +174,8 @@ machine:
         #     busPath: '*usb3*'
 
         # # Allows for supplying extra kernel args via the bootloader.
+        extraKernelArgs:
+            - usb-storage.quirks=174c:55aa:u
         # extraKernelArgs:
         #     - talos.platform=metal
         #     - reboot=k
@@ -375,7 +377,7 @@ cluster:
     secret: ssgf5bbwHcen8w5i48nlDIdsUcTf9O3AoO3EQDTbpmo= # Shared secret of cluster (base64 encoded random 32 bytes).
     # Provides control plane specific configuration options.
     controlPlane:
-        endpoint: https://talos-master.dezendorf.net:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
+        endpoint: https://talos-master-vm-01.dezendorf.net:6443 # Endpoint is the canonical controlplane endpoint, which can be an IP address or a DNS hostname.
     # Provides cluster specific network configuration options.
     network:
         dnsDomain: cluster.local # The domain used by Kubernetes DNS.
@@ -387,8 +389,8 @@ cluster:
             - 10.96.0.0/12
         
         # # The CNI used.
-        # cni:
-        #     name: custom # Name of CNI to use.
+        cni:
+          name: flannel #custom # Name of CNI to use.
         #     # URLs containing manifests to apply for the CNI.
         #     urls:
         #         - https://docs.projectcalico.org/archive/v3.20/manifests/canal.yaml

+ 1 - 1
dezendorf/homelab/talos/nodeconfig/worker.yaml

@@ -13,7 +13,7 @@ machine:
     certSANs:
     #   # Uncomment this to enable SANs.
         - talos.dezendorf.net
-        - talos-master-01.dezendorf.net
+        - talos-master-vm-01.dezendorf.net
     #   10.0.0.10
     #   - 172.16.0.10
     #   - 192.168.0.10

+ 33 - 0
dezendorf/homelab/talos/prod/cache-tier.yaml

@@ -0,0 +1,33 @@
+---
+apiVersion: ceph.rook.io/v1
+kind: CephBlockPool
+metadata:
+  name: intelpool
+  namespace: rook-ceph # namespace:cluster
+spec:
+  # The failure domain will spread the replicas of the data across different failure zones
+  failureDomain: host
+  # For a pool based on raw copies, specify the number of copies. A size of 1 indicates no redundancy.
+  replicated:
+    size: 3
+    requireSafeReplicaSize: true
+    hybridStorage:
+      primaryDeviceClass: intelssd
+
+---
+apiVersion: ceph.rook.io/v1
+kind: CephFilesystem
+metadata:
+  name: ceph-cachetier
+  namespace: rook-ceph
+spec:
+  metadataPool:
+    replicated:
+      size: 3
+  dataPools:
+   - name: cache-default
+     replicated:
+       size: 3
+  metadataServer:
+    activeCount: 1
+    activeStandby: true

+ 1 - 1
dezendorf/homelab/talos/prod/ceph-fs.yaml

@@ -7,7 +7,7 @@ metadata:
 spec:
   metadataPool:
     replicated:
-      size: 5
+      size: 3
   dataPools:
    - name: erasureCoded
      erasureCoded:

+ 36 - 5
dezendorf/homelab/talos/prod/cluster.yaml

@@ -69,6 +69,7 @@ apiVersion: apps/v1
 kind: Deployment
 metadata:
   name: rook-ceph-tools
+  namespace: rook-ceph # namespace:cluster
   labels:
     app: rook-ceph-tools
 spec:
@@ -143,7 +144,6 @@ spec:
               # create the keyring file
               cat <<EOF > ${KEYRING_FILE}
               [${ROOK_CEPH_USERNAME}]
-              key = ${ROOK_CEPH_SECRET}
               key = ${ceph_secret}
               EOF
 
@@ -154,6 +154,13 @@ spec:
               watch_endpoints
           imagePullPolicy: IfNotPresent
           tty: true
+          securityContext:
+            capabilities:
+              drop:
+              - ALL
+            runAsGroup: 2016
+            runAsNonRoot: true
+            runAsUser: 2016
           env:
             - name: ROOK_CEPH_USERNAME
               valueFrom:
@@ -186,8 +193,8 @@ spec:
           configMap:
             name: rook-ceph-mon-endpoints
             items:
-                - key: data
-                  path: mon-endpoints
+            - key: data
+              path: mon-endpoints
         - name: ceph-config
           emptyDir: {}
       tolerations:
@@ -208,6 +215,7 @@ apiVersion: ceph.rook.io/v1
 kind: CephBlockPool
 metadata:
   name: ceph-blockpool
+  namespace: rook-ceph # namespace:cluster
 spec:
   failureDomain: host
   replicated:
@@ -218,6 +226,7 @@ apiVersion: ceph.rook.io/v1
 kind: CephCluster
 metadata:
   name: rook-ceph
+  namespace: rook-ceph # namespace:cluster
 spec:
   monitoring:
     enabled: false
@@ -405,9 +414,9 @@ spec:
     osd:
       limits:
         cpu: 2000m
-        memory: 2048Mi
+        memory: 3072Mi
       requests:
-        cpu: 1000m
+        cpu: 750m
         memory: 2048Mi
     prepareosd:
       requests:
@@ -424,6 +433,7 @@ apiVersion: ceph.rook.io/v1
 kind: CephFilesystem
 metadata:
   name: ceph-filesystem
+  namespace: rook-ceph # namespace:cluster
 spec:
   dataPools:
   - failureDomain: host
@@ -445,11 +455,32 @@ spec:
         cpu: 1000m
         memory: 4Gi
 ---
+# Source: rook-ceph-cluster/templates/cephfilesystem.yaml
+apiVersion: ceph.rook.io/v1
+kind: CephFilesystemSubVolumeGroup
+metadata:
+  name: ceph-filesystem-csi    # lets keep the svg crd name same as `filesystem name + csi` for the default csi svg
+  namespace: rook-ceph # namespace:cluster
+spec:
+  # The name of the subvolume group. If not set, the default is the name of the subvolumeGroup CR.
+  name: csi
+  # filesystemName is the metadata name of the CephFilesystem CR where the subvolume group will be created
+  filesystemName: ceph-filesystem
+  # reference https://docs.ceph.com/en/latest/cephfs/fs-volumes/#pinning-subvolumes-and-subvolume-groups
+  # only one out of (export, distributed, random) can be set at a time
+  # by default pinning is set with value: distributed=1
+  # for disabling default values set (distributed=0)
+  pinning:
+    distributed: 1            # distributed=<0, 1> (disabled=0)
+    # export:                 # export=<0-256> (disabled=-1)
+    # random:                 # random=[0.0, 1.0](disabled=0.0)
+---
 # Source: rook-ceph-cluster/templates/cephobjectstore.yaml
 apiVersion: ceph.rook.io/v1
 kind: CephObjectStore
 metadata:
   name: ceph-objectstore
+  namespace: rook-ceph # namespace:cluster
 spec:
   dataPool:
     erasureCoded:

+ 11 - 8
dezendorf/homelab/talos/prod/label-nodes.sh

@@ -4,10 +4,12 @@
 NODES=$(kubectl get node --show-labels -o wide | grep "arch=arm64" | awk '{ print $1 }')
 
 for i in ${NODES} ; do
-  kubectl label node $i osd=osd
-  kubectl label node $i op=op
+  #kubectl label node $i osd=osd
+  #kubectl label node $i op=op
   kubectl label node $i tools=tools
-  kubectl label node $i all=all
+  #kubectl label node $i all=all
+  kubectl label node $i mon=mon
+  kubectl label node $i mgr=mgr
 done
 
 
@@ -15,11 +17,12 @@ done
 NODES=$(kubectl get node --show-labels -o wide | grep "arch=amd64" | awk '{ print $1 }')
 
 for i in ${NODES} ; do
-  kubectl label node $i mon=mon
-  kubectl label node $i mgr=mgr
-  kubectl label node $i op=op
-  kubectl label node $i tools=tools
-  kubectl label node $i nfs-node=nfs-node
+  kubectl label node $i osd=osd
+  #kubectl label node $i mon=mon
+  #kubectl label node $i mgr=mgr
+  #kubectl label node $i op=op
+  #kubectl label node $i tools=tools
+  #kubectl label node $i nfs-node=nfs-node
   kubectl label node $i all=all
 done
 

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 132 - 84
dezendorf/homelab/talos/prod/operator.yaml


+ 1 - 0
dezendorf/homelab/talos/prod/pas

@@ -0,0 +1 @@
+I2tb1mdf

+ 4 - 0
dezendorf/homelab/talos/prod/setup.sh

@@ -11,3 +11,7 @@ kubectl label ns default pod-security.kubernetes.io/enforce=privileged
 
 kubectl create -n ${NS} -f operator.yaml -f cluster.yaml
 
+sleep 15
+
+kubectl create serviceaccount -n rook-ceph rook-ceph-default
+

+ 26 - 0
dezendorf/homelab/talos/prometheus-operator/1

@@ -0,0 +1,26 @@
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: rook-mgr-metrics
+  namespace: rook-ceph
+spec:
+  externalTrafficPolicy: Cluster
+  internalTrafficPolicy: Cluster
+  ipFamilies:
+  - IPv4
+  ipFamilyPolicy: SingleStack
+  ports:
+  - name: web
+    nodePort: 9283
+    port: 9283
+    protocol: TCP
+    targetPort: web
+  selector:
+    app: rook-ceph-mgr
+    mgr_role: active
+    rook_cluster: rook-ceph
+  sessionAffinity: None
+  type: NodePort
+status:
+  loadBalancer: {}

+ 26 - 0
dezendorf/homelab/talos/prometheus-operator/prometheus-svc.yaml

@@ -0,0 +1,26 @@
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: rook-mgr-metrics
+  namespace: rook-ceph
+spec:
+  externalTrafficPolicy: Cluster
+  internalTrafficPolicy: Cluster
+  ipFamilies:
+  - IPv4
+  ipFamilyPolicy: SingleStack
+  ports:
+  - name: web
+    nodePort: 9283
+    port: 9283
+    protocol: TCP
+    targetPort: web
+  selector:
+    app: rook-ceph-mgr
+    mgr_role: active
+    rook_cluster: rook-ceph
+  sessionAffinity: None
+  type: NodePort
+status:
+  loadBalancer: {}

+ 99 - 0
dezendorf/homelab/talos/prometheus-operator/radarr.yaml

@@ -0,0 +1,99 @@
+---
+kind: Deployment
+apiVersion: apps/v1
+metadata:
+  name: radarr
+  labels:
+    app: radarr
+spec:
+  replicas: 1
+  selector:
+    matchLabels:
+      app: radarr
+  template:
+    metadata:
+      labels:
+        app: radarr
+    spec:
+      containers:
+      - name: radarr
+        image: lscr.io/linuxserver/radarr:latest
+        imagePullPolicy: Always
+        env:
+        - name: PUID
+          value: "1000"
+        - name: PGID
+          value: "1000"
+        - name: NAME_SERVERS
+          value: "8.8.8.8"
+        ports:
+        - name: web
+          containerPort: 80
+        volumeMounts:
+        - name: radarr-data-volume
+          mountPath: "/config"
+        - name: media-volume
+          mountPath: "/downloads/transmission"
+          subPath: "downloads/transmission"
+        - name: tesseract-nfs
+          mountPath: "/movies"
+        #- name: media-volume
+        #  mountPath: "/movies"
+        #  subPath: "library/movies"
+      volumes:
+      - name: radarr-data-volume
+        persistentVolumeClaim:
+          claimName: radarr-data-pvc
+      - name: media-volume
+        persistentVolumeClaim:
+          claimName: media-pvc
+      - name: tesseract-nfs
+        nfs:
+          server: 192.168.1.87
+          path: /tank/movies
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: radarr
+spec:
+  type: ClusterIP
+  ports:
+    - name: web
+      port: 7878
+  selector:
+    app: radarr
+---
+apiVersion: traefik.containo.us/v1alpha1
+kind: IngressRoute
+metadata:
+  name: radarr-ingress-route
+  namespace: default
+spec:
+  entryPoints:
+    - web
+  routes:
+  - match: Host(`radarr.dezendorf.net`)
+    kind: Rule
+    middlewares:
+    - name: redirecthttps
+    services:
+    - name: radarr
+      port: 7878
+---
+apiVersion: traefik.containo.us/v1alpha1
+kind: IngressRoute
+metadata:
+  name: radarr-websecure-route
+  namespace: default
+spec:
+  entryPoints:
+    - websecure
+  routes:
+  - match: Host(`radarr.dezendorf.net`)
+    kind: Rule
+    services:
+    - name: radarr
+      port: 7878
+  tls:
+    certResolver: myresolver

+ 1 - 0
dezendorf/homelab/talos/prometheus-operator/setup.sh

@@ -0,0 +1 @@
+kubectl apply -f https://raw.githubusercontent.com/coreos/prometheus-operator/v0.40.0/bundle.yaml

+ 12 - 0
dezendorf/homelab/talos/traefik/setup.sh

@@ -0,0 +1,12 @@
+helm repo add traefik https://traefik.github.io/charts
+helm repo update
+helm template traefik traefik/traefik > traefik.yaml
+
+curl https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml > traefik-crd.yaml
+
+curl https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml > traefik-rbac.yaml
+
+
+kubectl apply -f traefik-crd.yaml
+kubectl apply -f traefik-rbac.yaml
+kubectl apply -f traefik.yaml

+ 4528 - 0
dezendorf/homelab/talos/traefik/traefik-crd.yaml

@@ -0,0 +1,4528 @@
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: ingressroutes.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: IngressRoute
+    listKind: IngressRouteList
+    plural: ingressroutes
+    singular: ingressroute
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: IngressRoute is the CRD implementation of a Traefik HTTP Router.
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: IngressRouteSpec defines the desired state of IngressRoute.
+            properties:
+              entryPoints:
+                description: 'EntryPoints defines the list of entry point names to
+                  bind to. Entry points have to be configured in the static configuration.
+                  More info: https://doc.traefik.io/traefik/v2.10/routing/entrypoints/
+                  Default: all.'
+                items:
+                  type: string
+                type: array
+              routes:
+                description: Routes defines the list of routes.
+                items:
+                  description: Route holds the HTTP route configuration.
+                  properties:
+                    kind:
+                      description: Kind defines the kind of the route. Rule is the
+                        only supported kind.
+                      enum:
+                      - Rule
+                      type: string
+                    match:
+                      description: 'Match defines the router''s rule. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#rule'
+                      type: string
+                    middlewares:
+                      description: 'Middlewares defines the list of references to
+                        Middleware resources. More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-middleware'
+                      items:
+                        description: MiddlewareRef is a reference to a Middleware
+                          resource.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Middleware
+                              resource.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Middleware resource.
+                            type: string
+                        required:
+                        - name
+                        type: object
+                      type: array
+                    priority:
+                      description: 'Priority defines the router''s priority. More
+                        info: https://doc.traefik.io/traefik/v2.10/routing/routers/#priority'
+                      type: integer
+                    services:
+                      description: Services defines the list of Service. It can contain
+                        any combination of TraefikService and/or reference to a Kubernetes
+                        Service.
+                      items:
+                        description: Service defines an upstream HTTP service to proxy
+                          traffic to.
+                        properties:
+                          kind:
+                            description: Kind defines the kind of the Service.
+                            enum:
+                            - Service
+                            - TraefikService
+                            type: string
+                          name:
+                            description: Name defines the name of the referenced Kubernetes
+                              Service or TraefikService. The differentiation between
+                              the two is specified in the Kind field.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Kubernetes Service or TraefikService.
+                            type: string
+                          nativeLB:
+                            description: NativeLB controls, when creating the load-balancer,
+                              whether the LB's children are directly the pods IPs
+                              or if the only child is the Kubernetes Service clusterIP.
+                              The Kubernetes Service itself does load-balance to the
+                              pods. By default, NativeLB is false.
+                            type: boolean
+                          passHostHeader:
+                            description: PassHostHeader defines whether the client
+                              Host header is forwarded to the upstream Kubernetes
+                              Service. By default, passHostHeader is true.
+                            type: boolean
+                          port:
+                            anyOf:
+                            - type: integer
+                            - type: string
+                            description: Port defines the port of a Kubernetes Service.
+                              This can be a reference to a named port.
+                            x-kubernetes-int-or-string: true
+                          responseForwarding:
+                            description: ResponseForwarding defines how Traefik forwards
+                              the response from the upstream Kubernetes Service to
+                              the client.
+                            properties:
+                              flushInterval:
+                                description: 'FlushInterval defines the interval,
+                                  in milliseconds, in between flushes to the client
+                                  while copying the response body. A negative value
+                                  means to flush immediately after each write to the
+                                  client. This configuration is ignored when ReverseProxy
+                                  recognizes a response as a streaming response; for
+                                  such responses, writes are flushed to the client
+                                  immediately. Default: 100ms'
+                                type: string
+                            type: object
+                          scheme:
+                            description: Scheme defines the scheme to use for the
+                              request to the upstream Kubernetes Service. It defaults
+                              to https when Kubernetes Service port is 443, http otherwise.
+                            type: string
+                          serversTransport:
+                            description: ServersTransport defines the name of ServersTransport
+                              resource to use. It allows to configure the transport
+                              between Traefik and your servers. Can only be used on
+                              a Kubernetes Service.
+                            type: string
+                          sticky:
+                            description: 'Sticky defines the sticky sessions configuration.
+                              More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                            properties:
+                              cookie:
+                                description: Cookie defines the sticky cookie configuration.
+                                properties:
+                                  httpOnly:
+                                    description: HTTPOnly defines whether the cookie
+                                      can be accessed by client-side APIs, such as
+                                      JavaScript.
+                                    type: boolean
+                                  name:
+                                    description: Name defines the Cookie name.
+                                    type: string
+                                  sameSite:
+                                    description: 'SameSite defines the same site policy.
+                                      More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                    type: string
+                                  secure:
+                                    description: Secure defines whether the cookie
+                                      can only be transmitted over an encrypted connection
+                                      (i.e. HTTPS).
+                                    type: boolean
+                                type: object
+                            type: object
+                          strategy:
+                            description: Strategy defines the load balancing strategy
+                              between the servers. RoundRobin is the only supported
+                              value at the moment.
+                            type: string
+                          weight:
+                            description: Weight defines the weight and should only
+                              be specified when Name references a TraefikService object
+                              (and to be precise, one that embeds a Weighted Round
+                              Robin).
+                            type: integer
+                        required:
+                        - name
+                        type: object
+                      type: array
+                  required:
+                  - kind
+                  - match
+                  type: object
+                type: array
+              tls:
+                description: 'TLS defines the TLS configuration. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#tls'
+                properties:
+                  certResolver:
+                    description: 'CertResolver defines the name of the certificate
+                      resolver to use. Cert resolvers have to be configured in the
+                      static configuration. More info: https://doc.traefik.io/traefik/v2.10/https/acme/#certificate-resolvers'
+                    type: string
+                  domains:
+                    description: 'Domains defines the list of domains that will be
+                      used to issue certificates. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#domains'
+                    items:
+                      description: Domain holds a domain name with SANs.
+                      properties:
+                        main:
+                          description: Main defines the main domain name.
+                          type: string
+                        sans:
+                          description: SANs defines the subject alternative domain
+                            names.
+                          items:
+                            type: string
+                          type: array
+                      type: object
+                    type: array
+                  options:
+                    description: 'Options defines the reference to a TLSOption, that
+                      specifies the parameters of the TLS connection. If not defined,
+                      the `default` TLSOption is used. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options'
+                    properties:
+                      name:
+                        description: 'Name defines the name of the referenced TLSOption.
+                          More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsoption'
+                        type: string
+                      namespace:
+                        description: 'Namespace defines the namespace of the referenced
+                          TLSOption. More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsoption'
+                        type: string
+                    required:
+                    - name
+                    type: object
+                  secretName:
+                    description: SecretName is the name of the referenced Kubernetes
+                      Secret to specify the certificate details.
+                    type: string
+                  store:
+                    description: Store defines the reference to the TLSStore, that
+                      will be used to store certificates. Please note that only `default`
+                      TLSStore can be used.
+                    properties:
+                      name:
+                        description: 'Name defines the name of the referenced TLSStore.
+                          More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsstore'
+                        type: string
+                      namespace:
+                        description: 'Namespace defines the namespace of the referenced
+                          TLSStore. More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsstore'
+                        type: string
+                    required:
+                    - name
+                    type: object
+                type: object
+            required:
+            - routes
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: ingressroutetcps.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: IngressRouteTCP
+    listKind: IngressRouteTCPList
+    plural: ingressroutetcps
+    singular: ingressroutetcp
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: IngressRouteTCP is the CRD implementation of a Traefik TCP Router.
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: IngressRouteTCPSpec defines the desired state of IngressRouteTCP.
+            properties:
+              entryPoints:
+                description: 'EntryPoints defines the list of entry point names to
+                  bind to. Entry points have to be configured in the static configuration.
+                  More info: https://doc.traefik.io/traefik/v2.10/routing/entrypoints/
+                  Default: all.'
+                items:
+                  type: string
+                type: array
+              routes:
+                description: Routes defines the list of routes.
+                items:
+                  description: RouteTCP holds the TCP route configuration.
+                  properties:
+                    match:
+                      description: 'Match defines the router''s rule. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#rule_1'
+                      type: string
+                    middlewares:
+                      description: Middlewares defines the list of references to MiddlewareTCP
+                        resources.
+                      items:
+                        description: ObjectReference is a generic reference to a Traefik
+                          resource.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Traefik
+                              resource.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Traefik resource.
+                            type: string
+                        required:
+                        - name
+                        type: object
+                      type: array
+                    priority:
+                      description: 'Priority defines the router''s priority. More
+                        info: https://doc.traefik.io/traefik/v2.10/routing/routers/#priority_1'
+                      type: integer
+                    services:
+                      description: Services defines the list of TCP services.
+                      items:
+                        description: ServiceTCP defines an upstream TCP service to
+                          proxy traffic to.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Kubernetes
+                              Service.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Kubernetes Service.
+                            type: string
+                          nativeLB:
+                            description: NativeLB controls, when creating the load-balancer,
+                              whether the LB's children are directly the pods IPs
+                              or if the only child is the Kubernetes Service clusterIP.
+                              The Kubernetes Service itself does load-balance to the
+                              pods. By default, NativeLB is false.
+                            type: boolean
+                          port:
+                            anyOf:
+                            - type: integer
+                            - type: string
+                            description: Port defines the port of a Kubernetes Service.
+                              This can be a reference to a named port.
+                            x-kubernetes-int-or-string: true
+                          proxyProtocol:
+                            description: 'ProxyProtocol defines the PROXY protocol
+                              configuration. More info: https://doc.traefik.io/traefik/v2.10/routing/services/#proxy-protocol'
+                            properties:
+                              version:
+                                description: Version defines the PROXY Protocol version
+                                  to use.
+                                type: integer
+                            type: object
+                          terminationDelay:
+                            description: TerminationDelay defines the deadline that
+                              the proxy sets, after one of its connected peers indicates
+                              it has closed the writing capability of its connection,
+                              to close the reading capability as well, hence fully
+                              terminating the connection. It is a duration in milliseconds,
+                              defaulting to 100. A negative value means an infinite
+                              deadline (i.e. the reading capability is never closed).
+                            type: integer
+                          weight:
+                            description: Weight defines the weight used when balancing
+                              requests between multiple Kubernetes Service.
+                            type: integer
+                        required:
+                        - name
+                        - port
+                        type: object
+                      type: array
+                  required:
+                  - match
+                  type: object
+                type: array
+              tls:
+                description: 'TLS defines the TLS configuration on a layer 4 / TCP
+                  Route. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#tls_1'
+                properties:
+                  certResolver:
+                    description: 'CertResolver defines the name of the certificate
+                      resolver to use. Cert resolvers have to be configured in the
+                      static configuration. More info: https://doc.traefik.io/traefik/v2.10/https/acme/#certificate-resolvers'
+                    type: string
+                  domains:
+                    description: 'Domains defines the list of domains that will be
+                      used to issue certificates. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#domains'
+                    items:
+                      description: Domain holds a domain name with SANs.
+                      properties:
+                        main:
+                          description: Main defines the main domain name.
+                          type: string
+                        sans:
+                          description: SANs defines the subject alternative domain
+                            names.
+                          items:
+                            type: string
+                          type: array
+                      type: object
+                    type: array
+                  options:
+                    description: 'Options defines the reference to a TLSOption, that
+                      specifies the parameters of the TLS connection. If not defined,
+                      the `default` TLSOption is used. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options'
+                    properties:
+                      name:
+                        description: Name defines the name of the referenced Traefik
+                          resource.
+                        type: string
+                      namespace:
+                        description: Namespace defines the namespace of the referenced
+                          Traefik resource.
+                        type: string
+                    required:
+                    - name
+                    type: object
+                  passthrough:
+                    description: Passthrough defines whether a TLS router will terminate
+                      the TLS connection.
+                    type: boolean
+                  secretName:
+                    description: SecretName is the name of the referenced Kubernetes
+                      Secret to specify the certificate details.
+                    type: string
+                  store:
+                    description: Store defines the reference to the TLSStore, that
+                      will be used to store certificates. Please note that only `default`
+                      TLSStore can be used.
+                    properties:
+                      name:
+                        description: Name defines the name of the referenced Traefik
+                          resource.
+                        type: string
+                      namespace:
+                        description: Namespace defines the namespace of the referenced
+                          Traefik resource.
+                        type: string
+                    required:
+                    - name
+                    type: object
+                type: object
+            required:
+            - routes
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: ingressrouteudps.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: IngressRouteUDP
+    listKind: IngressRouteUDPList
+    plural: ingressrouteudps
+    singular: ingressrouteudp
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: IngressRouteUDP is a CRD implementation of a Traefik UDP Router.
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: IngressRouteUDPSpec defines the desired state of a IngressRouteUDP.
+            properties:
+              entryPoints:
+                description: 'EntryPoints defines the list of entry point names to
+                  bind to. Entry points have to be configured in the static configuration.
+                  More info: https://doc.traefik.io/traefik/v2.10/routing/entrypoints/
+                  Default: all.'
+                items:
+                  type: string
+                type: array
+              routes:
+                description: Routes defines the list of routes.
+                items:
+                  description: RouteUDP holds the UDP route configuration.
+                  properties:
+                    services:
+                      description: Services defines the list of UDP services.
+                      items:
+                        description: ServiceUDP defines an upstream UDP service to
+                          proxy traffic to.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Kubernetes
+                              Service.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Kubernetes Service.
+                            type: string
+                          nativeLB:
+                            description: NativeLB controls, when creating the load-balancer,
+                              whether the LB's children are directly the pods IPs
+                              or if the only child is the Kubernetes Service clusterIP.
+                              The Kubernetes Service itself does load-balance to the
+                              pods. By default, NativeLB is false.
+                            type: boolean
+                          port:
+                            anyOf:
+                            - type: integer
+                            - type: string
+                            description: Port defines the port of a Kubernetes Service.
+                              This can be a reference to a named port.
+                            x-kubernetes-int-or-string: true
+                          weight:
+                            description: Weight defines the weight used when balancing
+                              requests between multiple Kubernetes Service.
+                            type: integer
+                        required:
+                        - name
+                        - port
+                        type: object
+                      type: array
+                  type: object
+                type: array
+            required:
+            - routes
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: middlewares.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: Middleware
+    listKind: MiddlewareList
+    plural: middlewares
+    singular: middleware
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'Middleware is the CRD implementation of a Traefik Middleware.
+          More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/overview/'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: MiddlewareSpec defines the desired state of a Middleware.
+            properties:
+              addPrefix:
+                description: 'AddPrefix holds the add prefix middleware configuration.
+                  This middleware updates the path of a request before forwarding
+                  it. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/addprefix/'
+                properties:
+                  prefix:
+                    description: Prefix is the string to add before the current path
+                      in the requested URL. It should include a leading slash (/).
+                    type: string
+                type: object
+              basicAuth:
+                description: 'BasicAuth holds the basic auth middleware configuration.
+                  This middleware restricts access to your services to known users.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/basicauth/'
+                properties:
+                  headerField:
+                    description: 'HeaderField defines a header field to store the
+                      authenticated user. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/basicauth/#headerfield'
+                    type: string
+                  realm:
+                    description: 'Realm allows the protected resources on a server
+                      to be partitioned into a set of protection spaces, each with
+                      its own authentication scheme. Default: traefik.'
+                    type: string
+                  removeHeader:
+                    description: 'RemoveHeader sets the removeHeader option to true
+                      to remove the authorization header before forwarding the request
+                      to your service. Default: false.'
+                    type: boolean
+                  secret:
+                    description: Secret is the name of the referenced Kubernetes Secret
+                      containing user credentials.
+                    type: string
+                type: object
+              buffering:
+                description: 'Buffering holds the buffering middleware configuration.
+                  This middleware retries or limits the size of requests that can
+                  be forwarded to backends. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/buffering/#maxrequestbodybytes'
+                properties:
+                  maxRequestBodyBytes:
+                    description: 'MaxRequestBodyBytes defines the maximum allowed
+                      body size for the request (in bytes). If the request exceeds
+                      the allowed size, it is not forwarded to the service, and the
+                      client gets a 413 (Request Entity Too Large) response. Default:
+                      0 (no maximum).'
+                    format: int64
+                    type: integer
+                  maxResponseBodyBytes:
+                    description: 'MaxResponseBodyBytes defines the maximum allowed
+                      response size from the service (in bytes). If the response exceeds
+                      the allowed size, it is not forwarded to the client. The client
+                      gets a 500 (Internal Server Error) response instead. Default:
+                      0 (no maximum).'
+                    format: int64
+                    type: integer
+                  memRequestBodyBytes:
+                    description: 'MemRequestBodyBytes defines the threshold (in bytes)
+                      from which the request will be buffered on disk instead of in
+                      memory. Default: 1048576 (1Mi).'
+                    format: int64
+                    type: integer
+                  memResponseBodyBytes:
+                    description: 'MemResponseBodyBytes defines the threshold (in bytes)
+                      from which the response will be buffered on disk instead of
+                      in memory. Default: 1048576 (1Mi).'
+                    format: int64
+                    type: integer
+                  retryExpression:
+                    description: 'RetryExpression defines the retry conditions. It
+                      is a logical combination of functions with operators AND (&&)
+                      and OR (||). More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/buffering/#retryexpression'
+                    type: string
+                type: object
+              chain:
+                description: 'Chain holds the configuration of the chain middleware.
+                  This middleware enables to define reusable combinations of other
+                  pieces of middleware. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/chain/'
+                properties:
+                  middlewares:
+                    description: Middlewares is the list of MiddlewareRef which composes
+                      the chain.
+                    items:
+                      description: MiddlewareRef is a reference to a Middleware resource.
+                      properties:
+                        name:
+                          description: Name defines the name of the referenced Middleware
+                            resource.
+                          type: string
+                        namespace:
+                          description: Namespace defines the namespace of the referenced
+                            Middleware resource.
+                          type: string
+                      required:
+                      - name
+                      type: object
+                    type: array
+                type: object
+              circuitBreaker:
+                description: CircuitBreaker holds the circuit breaker configuration.
+                properties:
+                  checkPeriod:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: CheckPeriod is the interval between successive checks
+                      of the circuit breaker condition (when in standby state).
+                    x-kubernetes-int-or-string: true
+                  expression:
+                    description: Expression is the condition that triggers the tripped
+                      state.
+                    type: string
+                  fallbackDuration:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: FallbackDuration is the duration for which the circuit
+                      breaker will wait before trying to recover (from a tripped state).
+                    x-kubernetes-int-or-string: true
+                  recoveryDuration:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: RecoveryDuration is the duration for which the circuit
+                      breaker will try to recover (as soon as it is in recovering
+                      state).
+                    x-kubernetes-int-or-string: true
+                type: object
+              compress:
+                description: 'Compress holds the compress middleware configuration.
+                  This middleware compresses responses before sending them to the
+                  client, using gzip compression. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/compress/'
+                properties:
+                  excludedContentTypes:
+                    description: ExcludedContentTypes defines the list of content
+                      types to compare the Content-Type header of the incoming requests
+                      and responses before compressing.
+                    items:
+                      type: string
+                    type: array
+                  minResponseBodyBytes:
+                    description: 'MinResponseBodyBytes defines the minimum amount
+                      of bytes a response body must have to be compressed. Default:
+                      1024.'
+                    type: integer
+                type: object
+              contentType:
+                description: ContentType holds the content-type middleware configuration.
+                  This middleware exists to enable the correct behavior until at least
+                  the default one can be changed in a future version.
+                properties:
+                  autoDetect:
+                    description: AutoDetect specifies whether to let the `Content-Type`
+                      header, if it has not been set by the backend, be automatically
+                      set to a value derived from the contents of the response. As
+                      a proxy, the default behavior should be to leave the header
+                      alone, regardless of what the backend did with it. However,
+                      the historic default was to always auto-detect and set the header
+                      if it was nil, and it is going to be kept that way in order
+                      to support users currently relying on it.
+                    type: boolean
+                type: object
+              digestAuth:
+                description: 'DigestAuth holds the digest auth middleware configuration.
+                  This middleware restricts access to your services to known users.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/digestauth/'
+                properties:
+                  headerField:
+                    description: 'HeaderField defines a header field to store the
+                      authenticated user. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/basicauth/#headerfield'
+                    type: string
+                  realm:
+                    description: 'Realm allows the protected resources on a server
+                      to be partitioned into a set of protection spaces, each with
+                      its own authentication scheme. Default: traefik.'
+                    type: string
+                  removeHeader:
+                    description: RemoveHeader defines whether to remove the authorization
+                      header before forwarding the request to the backend.
+                    type: boolean
+                  secret:
+                    description: Secret is the name of the referenced Kubernetes Secret
+                      containing user credentials.
+                    type: string
+                type: object
+              errors:
+                description: 'ErrorPage holds the custom error middleware configuration.
+                  This middleware returns a custom page in lieu of the default, according
+                  to configured ranges of HTTP Status codes. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/errorpages/'
+                properties:
+                  query:
+                    description: Query defines the URL for the error page (hosted
+                      by service). The {status} variable can be used in order to insert
+                      the status code in the URL.
+                    type: string
+                  service:
+                    description: 'Service defines the reference to a Kubernetes Service
+                      that will serve the error page. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/errorpages/#service'
+                    properties:
+                      kind:
+                        description: Kind defines the kind of the Service.
+                        enum:
+                        - Service
+                        - TraefikService
+                        type: string
+                      name:
+                        description: Name defines the name of the referenced Kubernetes
+                          Service or TraefikService. The differentiation between the
+                          two is specified in the Kind field.
+                        type: string
+                      namespace:
+                        description: Namespace defines the namespace of the referenced
+                          Kubernetes Service or TraefikService.
+                        type: string
+                      nativeLB:
+                        description: NativeLB controls, when creating the load-balancer,
+                          whether the LB's children are directly the pods IPs or if
+                          the only child is the Kubernetes Service clusterIP. The
+                          Kubernetes Service itself does load-balance to the pods.
+                          By default, NativeLB is false.
+                        type: boolean
+                      passHostHeader:
+                        description: PassHostHeader defines whether the client Host
+                          header is forwarded to the upstream Kubernetes Service.
+                          By default, passHostHeader is true.
+                        type: boolean
+                      port:
+                        anyOf:
+                        - type: integer
+                        - type: string
+                        description: Port defines the port of a Kubernetes Service.
+                          This can be a reference to a named port.
+                        x-kubernetes-int-or-string: true
+                      responseForwarding:
+                        description: ResponseForwarding defines how Traefik forwards
+                          the response from the upstream Kubernetes Service to the
+                          client.
+                        properties:
+                          flushInterval:
+                            description: 'FlushInterval defines the interval, in milliseconds,
+                              in between flushes to the client while copying the response
+                              body. A negative value means to flush immediately after
+                              each write to the client. This configuration is ignored
+                              when ReverseProxy recognizes a response as a streaming
+                              response; for such responses, writes are flushed to
+                              the client immediately. Default: 100ms'
+                            type: string
+                        type: object
+                      scheme:
+                        description: Scheme defines the scheme to use for the request
+                          to the upstream Kubernetes Service. It defaults to https
+                          when Kubernetes Service port is 443, http otherwise.
+                        type: string
+                      serversTransport:
+                        description: ServersTransport defines the name of ServersTransport
+                          resource to use. It allows to configure the transport between
+                          Traefik and your servers. Can only be used on a Kubernetes
+                          Service.
+                        type: string
+                      sticky:
+                        description: 'Sticky defines the sticky sessions configuration.
+                          More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                        properties:
+                          cookie:
+                            description: Cookie defines the sticky cookie configuration.
+                            properties:
+                              httpOnly:
+                                description: HTTPOnly defines whether the cookie can
+                                  be accessed by client-side APIs, such as JavaScript.
+                                type: boolean
+                              name:
+                                description: Name defines the Cookie name.
+                                type: string
+                              sameSite:
+                                description: 'SameSite defines the same site policy.
+                                  More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                type: string
+                              secure:
+                                description: Secure defines whether the cookie can
+                                  only be transmitted over an encrypted connection
+                                  (i.e. HTTPS).
+                                type: boolean
+                            type: object
+                        type: object
+                      strategy:
+                        description: Strategy defines the load balancing strategy
+                          between the servers. RoundRobin is the only supported value
+                          at the moment.
+                        type: string
+                      weight:
+                        description: Weight defines the weight and should only be
+                          specified when Name references a TraefikService object (and
+                          to be precise, one that embeds a Weighted Round Robin).
+                        type: integer
+                    required:
+                    - name
+                    type: object
+                  status:
+                    description: Status defines which status or range of statuses
+                      should result in an error page. It can be either a status code
+                      as a number (500), as multiple comma-separated numbers (500,502),
+                      as ranges by separating two codes with a dash (500-599), or
+                      a combination of the two (404,418,500-599).
+                    items:
+                      type: string
+                    type: array
+                type: object
+              forwardAuth:
+                description: 'ForwardAuth holds the forward auth middleware configuration.
+                  This middleware delegates the request authentication to a Service.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/forwardauth/'
+                properties:
+                  address:
+                    description: Address defines the authentication server address.
+                    type: string
+                  authRequestHeaders:
+                    description: AuthRequestHeaders defines the list of the headers
+                      to copy from the request to the authentication server. If not
+                      set or empty then all request headers are passed.
+                    items:
+                      type: string
+                    type: array
+                  authResponseHeaders:
+                    description: AuthResponseHeaders defines the list of headers to
+                      copy from the authentication server response and set on forwarded
+                      request, replacing any existing conflicting headers.
+                    items:
+                      type: string
+                    type: array
+                  authResponseHeadersRegex:
+                    description: 'AuthResponseHeadersRegex defines the regex to match
+                      headers to copy from the authentication server response and
+                      set on forwarded request, after stripping all headers that match
+                      the regex. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/forwardauth/#authresponseheadersregex'
+                    type: string
+                  tls:
+                    description: TLS defines the configuration used to secure the
+                      connection to the authentication server.
+                    properties:
+                      caOptional:
+                        type: boolean
+                      caSecret:
+                        description: CASecret is the name of the referenced Kubernetes
+                          Secret containing the CA to validate the server certificate.
+                          The CA certificate is extracted from key `tls.ca` or `ca.crt`.
+                        type: string
+                      certSecret:
+                        description: CertSecret is the name of the referenced Kubernetes
+                          Secret containing the client certificate. The client certificate
+                          is extracted from the keys `tls.crt` and `tls.key`.
+                        type: string
+                      insecureSkipVerify:
+                        description: InsecureSkipVerify defines whether the server
+                          certificates should be validated.
+                        type: boolean
+                    type: object
+                  trustForwardHeader:
+                    description: 'TrustForwardHeader defines whether to trust (ie:
+                      forward) all X-Forwarded-* headers.'
+                    type: boolean
+                type: object
+              headers:
+                description: 'Headers holds the headers middleware configuration.
+                  This middleware manages the requests and responses headers. More
+                  info: https://doc.traefik.io/traefik/v2.10/middlewares/http/headers/#customrequestheaders'
+                properties:
+                  accessControlAllowCredentials:
+                    description: AccessControlAllowCredentials defines whether the
+                      request can include user credentials.
+                    type: boolean
+                  accessControlAllowHeaders:
+                    description: AccessControlAllowHeaders defines the Access-Control-Request-Headers
+                      values sent in preflight response.
+                    items:
+                      type: string
+                    type: array
+                  accessControlAllowMethods:
+                    description: AccessControlAllowMethods defines the Access-Control-Request-Method
+                      values sent in preflight response.
+                    items:
+                      type: string
+                    type: array
+                  accessControlAllowOriginList:
+                    description: AccessControlAllowOriginList is a list of allowable
+                      origins. Can also be a wildcard origin "*".
+                    items:
+                      type: string
+                    type: array
+                  accessControlAllowOriginListRegex:
+                    description: AccessControlAllowOriginListRegex is a list of allowable
+                      origins written following the Regular Expression syntax (https://golang.org/pkg/regexp/).
+                    items:
+                      type: string
+                    type: array
+                  accessControlExposeHeaders:
+                    description: AccessControlExposeHeaders defines the Access-Control-Expose-Headers
+                      values sent in preflight response.
+                    items:
+                      type: string
+                    type: array
+                  accessControlMaxAge:
+                    description: AccessControlMaxAge defines the time that a preflight
+                      request may be cached.
+                    format: int64
+                    type: integer
+                  addVaryHeader:
+                    description: AddVaryHeader defines whether the Vary header is
+                      automatically added/updated when the AccessControlAllowOriginList
+                      is set.
+                    type: boolean
+                  allowedHosts:
+                    description: AllowedHosts defines the fully qualified list of
+                      allowed domain names.
+                    items:
+                      type: string
+                    type: array
+                  browserXssFilter:
+                    description: BrowserXSSFilter defines whether to add the X-XSS-Protection
+                      header with the value 1; mode=block.
+                    type: boolean
+                  contentSecurityPolicy:
+                    description: ContentSecurityPolicy defines the Content-Security-Policy
+                      header value.
+                    type: string
+                  contentTypeNosniff:
+                    description: ContentTypeNosniff defines whether to add the X-Content-Type-Options
+                      header with the nosniff value.
+                    type: boolean
+                  customBrowserXSSValue:
+                    description: CustomBrowserXSSValue defines the X-XSS-Protection
+                      header value. This overrides the BrowserXssFilter option.
+                    type: string
+                  customFrameOptionsValue:
+                    description: CustomFrameOptionsValue defines the X-Frame-Options
+                      header value. This overrides the FrameDeny option.
+                    type: string
+                  customRequestHeaders:
+                    additionalProperties:
+                      type: string
+                    description: CustomRequestHeaders defines the header names and
+                      values to apply to the request.
+                    type: object
+                  customResponseHeaders:
+                    additionalProperties:
+                      type: string
+                    description: CustomResponseHeaders defines the header names and
+                      values to apply to the response.
+                    type: object
+                  featurePolicy:
+                    description: 'Deprecated: use PermissionsPolicy instead.'
+                    type: string
+                  forceSTSHeader:
+                    description: ForceSTSHeader defines whether to add the STS header
+                      even when the connection is HTTP.
+                    type: boolean
+                  frameDeny:
+                    description: FrameDeny defines whether to add the X-Frame-Options
+                      header with the DENY value.
+                    type: boolean
+                  hostsProxyHeaders:
+                    description: HostsProxyHeaders defines the header keys that may
+                      hold a proxied hostname value for the request.
+                    items:
+                      type: string
+                    type: array
+                  isDevelopment:
+                    description: IsDevelopment defines whether to mitigate the unwanted
+                      effects of the AllowedHosts, SSL, and STS options when developing.
+                      Usually testing takes place using HTTP, not HTTPS, and on localhost,
+                      not your production domain. If you would like your development
+                      environment to mimic production with complete Host blocking,
+                      SSL redirects, and STS headers, leave this as false.
+                    type: boolean
+                  permissionsPolicy:
+                    description: PermissionsPolicy defines the Permissions-Policy
+                      header value. This allows sites to control browser features.
+                    type: string
+                  publicKey:
+                    description: PublicKey is the public key that implements HPKP
+                      to prevent MITM attacks with forged certificates.
+                    type: string
+                  referrerPolicy:
+                    description: ReferrerPolicy defines the Referrer-Policy header
+                      value. This allows sites to control whether browsers forward
+                      the Referer header to other sites.
+                    type: string
+                  sslForceHost:
+                    description: 'Deprecated: use RedirectRegex instead.'
+                    type: boolean
+                  sslHost:
+                    description: 'Deprecated: use RedirectRegex instead.'
+                    type: string
+                  sslProxyHeaders:
+                    additionalProperties:
+                      type: string
+                    description: 'SSLProxyHeaders defines the header keys with associated
+                      values that would indicate a valid HTTPS request. It can be
+                      useful when using other proxies (example: "X-Forwarded-Proto":
+                      "https").'
+                    type: object
+                  sslRedirect:
+                    description: 'Deprecated: use EntryPoint redirection or RedirectScheme
+                      instead.'
+                    type: boolean
+                  sslTemporaryRedirect:
+                    description: 'Deprecated: use EntryPoint redirection or RedirectScheme
+                      instead.'
+                    type: boolean
+                  stsIncludeSubdomains:
+                    description: STSIncludeSubdomains defines whether the includeSubDomains
+                      directive is appended to the Strict-Transport-Security header.
+                    type: boolean
+                  stsPreload:
+                    description: STSPreload defines whether the preload flag is appended
+                      to the Strict-Transport-Security header.
+                    type: boolean
+                  stsSeconds:
+                    description: STSSeconds defines the max-age of the Strict-Transport-Security
+                      header. If set to 0, the header is not set.
+                    format: int64
+                    type: integer
+                type: object
+              inFlightReq:
+                description: 'InFlightReq holds the in-flight request middleware configuration.
+                  This middleware limits the number of requests being processed and
+                  served concurrently. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/inflightreq/'
+                properties:
+                  amount:
+                    description: Amount defines the maximum amount of allowed simultaneous
+                      in-flight request. The middleware responds with HTTP 429 Too
+                      Many Requests if there are already amount requests in progress
+                      (based on the same sourceCriterion strategy).
+                    format: int64
+                    type: integer
+                  sourceCriterion:
+                    description: 'SourceCriterion defines what criterion is used to
+                      group requests as originating from a common source. If several
+                      strategies are defined at the same time, an error will be raised.
+                      If none are set, the default is to use the requestHost. More
+                      info: https://doc.traefik.io/traefik/v2.10/middlewares/http/inflightreq/#sourcecriterion'
+                    properties:
+                      ipStrategy:
+                        description: 'IPStrategy holds the IP strategy configuration
+                          used by Traefik to determine the client IP. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/#ipstrategy'
+                        properties:
+                          depth:
+                            description: Depth tells Traefik to use the X-Forwarded-For
+                              header and take the IP located at the depth position
+                              (starting from the right).
+                            type: integer
+                          excludedIPs:
+                            description: ExcludedIPs configures Traefik to scan the
+                              X-Forwarded-For header and select the first IP not in
+                              the list.
+                            items:
+                              type: string
+                            type: array
+                        type: object
+                      requestHeaderName:
+                        description: RequestHeaderName defines the name of the header
+                          used to group incoming requests.
+                        type: string
+                      requestHost:
+                        description: RequestHost defines whether to consider the request
+                          Host as the source.
+                        type: boolean
+                    type: object
+                type: object
+              ipWhiteList:
+                description: 'IPWhiteList holds the IP whitelist middleware configuration.
+                  This middleware accepts / refuses requests based on the client IP.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/'
+                properties:
+                  ipStrategy:
+                    description: 'IPStrategy holds the IP strategy configuration used
+                      by Traefik to determine the client IP. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/#ipstrategy'
+                    properties:
+                      depth:
+                        description: Depth tells Traefik to use the X-Forwarded-For
+                          header and take the IP located at the depth position (starting
+                          from the right).
+                        type: integer
+                      excludedIPs:
+                        description: ExcludedIPs configures Traefik to scan the X-Forwarded-For
+                          header and select the first IP not in the list.
+                        items:
+                          type: string
+                        type: array
+                    type: object
+                  sourceRange:
+                    description: SourceRange defines the set of allowed IPs (or ranges
+                      of allowed IPs by using CIDR notation).
+                    items:
+                      type: string
+                    type: array
+                type: object
+              passTLSClientCert:
+                description: 'PassTLSClientCert holds the pass TLS client cert middleware
+                  configuration. This middleware adds the selected data from the passed
+                  client TLS certificate to a header. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/passtlsclientcert/'
+                properties:
+                  info:
+                    description: Info selects the specific client certificate details
+                      you want to add to the X-Forwarded-Tls-Client-Cert-Info header.
+                    properties:
+                      issuer:
+                        description: Issuer defines the client certificate issuer
+                          details to add to the X-Forwarded-Tls-Client-Cert-Info header.
+                        properties:
+                          commonName:
+                            description: CommonName defines whether to add the organizationalUnit
+                              information into the issuer.
+                            type: boolean
+                          country:
+                            description: Country defines whether to add the country
+                              information into the issuer.
+                            type: boolean
+                          domainComponent:
+                            description: DomainComponent defines whether to add the
+                              domainComponent information into the issuer.
+                            type: boolean
+                          locality:
+                            description: Locality defines whether to add the locality
+                              information into the issuer.
+                            type: boolean
+                          organization:
+                            description: Organization defines whether to add the organization
+                              information into the issuer.
+                            type: boolean
+                          province:
+                            description: Province defines whether to add the province
+                              information into the issuer.
+                            type: boolean
+                          serialNumber:
+                            description: SerialNumber defines whether to add the serialNumber
+                              information into the issuer.
+                            type: boolean
+                        type: object
+                      notAfter:
+                        description: NotAfter defines whether to add the Not After
+                          information from the Validity part.
+                        type: boolean
+                      notBefore:
+                        description: NotBefore defines whether to add the Not Before
+                          information from the Validity part.
+                        type: boolean
+                      sans:
+                        description: Sans defines whether to add the Subject Alternative
+                          Name information from the Subject Alternative Name part.
+                        type: boolean
+                      serialNumber:
+                        description: SerialNumber defines whether to add the client
+                          serialNumber information.
+                        type: boolean
+                      subject:
+                        description: Subject defines the client certificate subject
+                          details to add to the X-Forwarded-Tls-Client-Cert-Info header.
+                        properties:
+                          commonName:
+                            description: CommonName defines whether to add the organizationalUnit
+                              information into the subject.
+                            type: boolean
+                          country:
+                            description: Country defines whether to add the country
+                              information into the subject.
+                            type: boolean
+                          domainComponent:
+                            description: DomainComponent defines whether to add the
+                              domainComponent information into the subject.
+                            type: boolean
+                          locality:
+                            description: Locality defines whether to add the locality
+                              information into the subject.
+                            type: boolean
+                          organization:
+                            description: Organization defines whether to add the organization
+                              information into the subject.
+                            type: boolean
+                          organizationalUnit:
+                            description: OrganizationalUnit defines whether to add
+                              the organizationalUnit information into the subject.
+                            type: boolean
+                          province:
+                            description: Province defines whether to add the province
+                              information into the subject.
+                            type: boolean
+                          serialNumber:
+                            description: SerialNumber defines whether to add the serialNumber
+                              information into the subject.
+                            type: boolean
+                        type: object
+                    type: object
+                  pem:
+                    description: PEM sets the X-Forwarded-Tls-Client-Cert header with
+                      the certificate.
+                    type: boolean
+                type: object
+              plugin:
+                additionalProperties:
+                  x-kubernetes-preserve-unknown-fields: true
+                description: 'Plugin defines the middleware plugin configuration.
+                  More info: https://doc.traefik.io/traefik/plugins/'
+                type: object
+              rateLimit:
+                description: 'RateLimit holds the rate limit configuration. This middleware
+                  ensures that services will receive a fair amount of requests, and
+                  allows one to define what fair is. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ratelimit/'
+                properties:
+                  average:
+                    description: Average is the maximum rate, by default in requests/s,
+                      allowed for the given source. It defaults to 0, which means
+                      no rate limiting. The rate is actually defined by dividing Average
+                      by Period. So for a rate below 1req/s, one needs to define a
+                      Period larger than a second.
+                    format: int64
+                    type: integer
+                  burst:
+                    description: Burst is the maximum number of requests allowed to
+                      arrive in the same arbitrarily small period of time. It defaults
+                      to 1.
+                    format: int64
+                    type: integer
+                  period:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: 'Period, in combination with Average, defines the
+                      actual maximum rate, such as: r = Average / Period. It defaults
+                      to a second.'
+                    x-kubernetes-int-or-string: true
+                  sourceCriterion:
+                    description: SourceCriterion defines what criterion is used to
+                      group requests as originating from a common source. If several
+                      strategies are defined at the same time, an error will be raised.
+                      If none are set, the default is to use the request's remote
+                      address field (as an ipStrategy).
+                    properties:
+                      ipStrategy:
+                        description: 'IPStrategy holds the IP strategy configuration
+                          used by Traefik to determine the client IP. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/#ipstrategy'
+                        properties:
+                          depth:
+                            description: Depth tells Traefik to use the X-Forwarded-For
+                              header and take the IP located at the depth position
+                              (starting from the right).
+                            type: integer
+                          excludedIPs:
+                            description: ExcludedIPs configures Traefik to scan the
+                              X-Forwarded-For header and select the first IP not in
+                              the list.
+                            items:
+                              type: string
+                            type: array
+                        type: object
+                      requestHeaderName:
+                        description: RequestHeaderName defines the name of the header
+                          used to group incoming requests.
+                        type: string
+                      requestHost:
+                        description: RequestHost defines whether to consider the request
+                          Host as the source.
+                        type: boolean
+                    type: object
+                type: object
+              redirectRegex:
+                description: 'RedirectRegex holds the redirect regex middleware configuration.
+                  This middleware redirects a request using regex matching and replacement.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/redirectregex/#regex'
+                properties:
+                  permanent:
+                    description: Permanent defines whether the redirection is permanent
+                      (301).
+                    type: boolean
+                  regex:
+                    description: Regex defines the regex used to match and capture
+                      elements from the request URL.
+                    type: string
+                  replacement:
+                    description: Replacement defines how to modify the URL to have
+                      the new target URL.
+                    type: string
+                type: object
+              redirectScheme:
+                description: 'RedirectScheme holds the redirect scheme middleware
+                  configuration. This middleware redirects requests from a scheme/port
+                  to another. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/redirectscheme/'
+                properties:
+                  permanent:
+                    description: Permanent defines whether the redirection is permanent
+                      (301).
+                    type: boolean
+                  port:
+                    description: Port defines the port of the new URL.
+                    type: string
+                  scheme:
+                    description: Scheme defines the scheme of the new URL.
+                    type: string
+                type: object
+              replacePath:
+                description: 'ReplacePath holds the replace path middleware configuration.
+                  This middleware replaces the path of the request URL and store the
+                  original path in an X-Replaced-Path header. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/replacepath/'
+                properties:
+                  path:
+                    description: Path defines the path to use as replacement in the
+                      request URL.
+                    type: string
+                type: object
+              replacePathRegex:
+                description: 'ReplacePathRegex holds the replace path regex middleware
+                  configuration. This middleware replaces the path of a URL using
+                  regex matching and replacement. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/replacepathregex/'
+                properties:
+                  regex:
+                    description: Regex defines the regular expression used to match
+                      and capture the path from the request URL.
+                    type: string
+                  replacement:
+                    description: Replacement defines the replacement path format,
+                      which can include captured variables.
+                    type: string
+                type: object
+              retry:
+                description: 'Retry holds the retry middleware configuration. This
+                  middleware reissues requests a given number of times to a backend
+                  server if that server does not reply. As soon as the server answers,
+                  the middleware stops retrying, regardless of the response status.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/retry/'
+                properties:
+                  attempts:
+                    description: Attempts defines how many times the request should
+                      be retried.
+                    type: integer
+                  initialInterval:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: InitialInterval defines the first wait time in the
+                      exponential backoff series. The maximum interval is calculated
+                      as twice the initialInterval. If unspecified, requests will
+                      be retried immediately. The value of initialInterval should
+                      be provided in seconds or as a valid duration format, see https://pkg.go.dev/time#ParseDuration.
+                    x-kubernetes-int-or-string: true
+                type: object
+              stripPrefix:
+                description: 'StripPrefix holds the strip prefix middleware configuration.
+                  This middleware removes the specified prefixes from the URL path.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/stripprefix/'
+                properties:
+                  forceSlash:
+                    description: 'ForceSlash ensures that the resulting stripped path
+                      is not the empty string, by replacing it with / when necessary.
+                      Default: true.'
+                    type: boolean
+                  prefixes:
+                    description: Prefixes defines the prefixes to strip from the request
+                      URL.
+                    items:
+                      type: string
+                    type: array
+                type: object
+              stripPrefixRegex:
+                description: 'StripPrefixRegex holds the strip prefix regex middleware
+                  configuration. This middleware removes the matching prefixes from
+                  the URL path. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/stripprefixregex/'
+                properties:
+                  regex:
+                    description: Regex defines the regular expression to match the
+                      path prefix from the request URL.
+                    items:
+                      type: string
+                    type: array
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: middlewaretcps.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: MiddlewareTCP
+    listKind: MiddlewareTCPList
+    plural: middlewaretcps
+    singular: middlewaretcp
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'MiddlewareTCP is the CRD implementation of a Traefik TCP middleware.
+          More info: https://doc.traefik.io/traefik/v2.10/middlewares/overview/'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: MiddlewareTCPSpec defines the desired state of a MiddlewareTCP.
+            properties:
+              inFlightConn:
+                description: InFlightConn defines the InFlightConn middleware configuration.
+                properties:
+                  amount:
+                    description: Amount defines the maximum amount of allowed simultaneous
+                      connections. The middleware closes the connection if there are
+                      already amount connections opened.
+                    format: int64
+                    type: integer
+                type: object
+              ipWhiteList:
+                description: IPWhiteList defines the IPWhiteList middleware configuration.
+                properties:
+                  sourceRange:
+                    description: SourceRange defines the allowed IPs (or ranges of
+                      allowed IPs by using CIDR notation).
+                    items:
+                      type: string
+                    type: array
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: serverstransports.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: ServersTransport
+    listKind: ServersTransportList
+    plural: serverstransports
+    singular: serverstransport
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'ServersTransport is the CRD implementation of a ServersTransport.
+          If no serversTransport is specified, the default@internal will be used.
+          The default@internal serversTransport is created from the static configuration.
+          More info: https://doc.traefik.io/traefik/v2.10/routing/services/#serverstransport_1'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: ServersTransportSpec defines the desired state of a ServersTransport.
+            properties:
+              certificatesSecrets:
+                description: CertificatesSecrets defines a list of secret storing
+                  client certificates for mTLS.
+                items:
+                  type: string
+                type: array
+              disableHTTP2:
+                description: DisableHTTP2 disables HTTP/2 for connections with backend
+                  servers.
+                type: boolean
+              forwardingTimeouts:
+                description: ForwardingTimeouts defines the timeouts for requests
+                  forwarded to the backend servers.
+                properties:
+                  dialTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: DialTimeout is the amount of time to wait until a
+                      connection to a backend server can be established.
+                    x-kubernetes-int-or-string: true
+                  idleConnTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: IdleConnTimeout is the maximum period for which an
+                      idle HTTP keep-alive connection will remain open before closing
+                      itself.
+                    x-kubernetes-int-or-string: true
+                  pingTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: PingTimeout is the timeout after which the HTTP/2
+                      connection will be closed if a response to ping is not received.
+                    x-kubernetes-int-or-string: true
+                  readIdleTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: ReadIdleTimeout is the timeout after which a health
+                      check using ping frame will be carried out if no frame is received
+                      on the HTTP/2 connection.
+                    x-kubernetes-int-or-string: true
+                  responseHeaderTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: ResponseHeaderTimeout is the amount of time to wait
+                      for a server's response headers after fully writing the request
+                      (including its body, if any).
+                    x-kubernetes-int-or-string: true
+                type: object
+              insecureSkipVerify:
+                description: InsecureSkipVerify disables SSL certificate verification.
+                type: boolean
+              maxIdleConnsPerHost:
+                description: MaxIdleConnsPerHost controls the maximum idle (keep-alive)
+                  to keep per-host.
+                type: integer
+              peerCertURI:
+                description: PeerCertURI defines the peer cert URI used to match against
+                  SAN URI during the peer certificate verification.
+                type: string
+              rootCAsSecrets:
+                description: RootCAsSecrets defines a list of CA secret used to validate
+                  self-signed certificate.
+                items:
+                  type: string
+                type: array
+              serverName:
+                description: ServerName defines the server name used to contact the
+                  server.
+                type: string
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: tlsoptions.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: TLSOption
+    listKind: TLSOptionList
+    plural: tlsoptions
+    singular: tlsoption
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'TLSOption is the CRD implementation of a Traefik TLS Option,
+          allowing to configure some parameters of the TLS connection. More info:
+          https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: TLSOptionSpec defines the desired state of a TLSOption.
+            properties:
+              alpnProtocols:
+                description: 'ALPNProtocols defines the list of supported application
+                  level protocols for the TLS handshake, in order of preference. More
+                  info: https://doc.traefik.io/traefik/v2.10/https/tls/#alpn-protocols'
+                items:
+                  type: string
+                type: array
+              cipherSuites:
+                description: 'CipherSuites defines the list of supported cipher suites
+                  for TLS versions up to TLS 1.2. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#cipher-suites'
+                items:
+                  type: string
+                type: array
+              clientAuth:
+                description: ClientAuth defines the server's policy for TLS Client
+                  Authentication.
+                properties:
+                  clientAuthType:
+                    description: ClientAuthType defines the client authentication
+                      type to apply.
+                    enum:
+                    - NoClientCert
+                    - RequestClientCert
+                    - RequireAnyClientCert
+                    - VerifyClientCertIfGiven
+                    - RequireAndVerifyClientCert
+                    type: string
+                  secretNames:
+                    description: SecretNames defines the names of the referenced Kubernetes
+                      Secret storing certificate details.
+                    items:
+                      type: string
+                    type: array
+                type: object
+              curvePreferences:
+                description: 'CurvePreferences defines the preferred elliptic curves
+                  in a specific order. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#curve-preferences'
+                items:
+                  type: string
+                type: array
+              maxVersion:
+                description: 'MaxVersion defines the maximum TLS version that Traefik
+                  will accept. Possible values: VersionTLS10, VersionTLS11, VersionTLS12,
+                  VersionTLS13. Default: None.'
+                type: string
+              minVersion:
+                description: 'MinVersion defines the minimum TLS version that Traefik
+                  will accept. Possible values: VersionTLS10, VersionTLS11, VersionTLS12,
+                  VersionTLS13. Default: VersionTLS10.'
+                type: string
+              preferServerCipherSuites:
+                description: 'PreferServerCipherSuites defines whether the server
+                  chooses a cipher suite among his own instead of among the client''s.
+                  It is enabled automatically when minVersion or maxVersion is set.
+                  Deprecated: https://github.com/golang/go/issues/45430'
+                type: boolean
+              sniStrict:
+                description: SniStrict defines whether Traefik allows connections
+                  from clients connections that do not specify a server_name extension.
+                type: boolean
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: tlsstores.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: TLSStore
+    listKind: TLSStoreList
+    plural: tlsstores
+    singular: tlsstore
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'TLSStore is the CRD implementation of a Traefik TLS Store. For
+          the time being, only the TLSStore named default is supported. This means
+          that you cannot have two stores that are named default in different Kubernetes
+          namespaces. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#certificates-stores'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: TLSStoreSpec defines the desired state of a TLSStore.
+            properties:
+              certificates:
+                description: Certificates is a list of secret names, each secret holding
+                  a key/certificate pair to add to the store.
+                items:
+                  description: Certificate holds a secret name for the TLSStore resource.
+                  properties:
+                    secretName:
+                      description: SecretName is the name of the referenced Kubernetes
+                        Secret to specify the certificate details.
+                      type: string
+                  required:
+                  - secretName
+                  type: object
+                type: array
+              defaultCertificate:
+                description: DefaultCertificate defines the default certificate configuration.
+                properties:
+                  secretName:
+                    description: SecretName is the name of the referenced Kubernetes
+                      Secret to specify the certificate details.
+                    type: string
+                required:
+                - secretName
+                type: object
+              defaultGeneratedCert:
+                description: DefaultGeneratedCert defines the default generated certificate
+                  configuration.
+                properties:
+                  domain:
+                    description: Domain is the domain definition for the DefaultCertificate.
+                    properties:
+                      main:
+                        description: Main defines the main domain name.
+                        type: string
+                      sans:
+                        description: SANs defines the subject alternative domain names.
+                        items:
+                          type: string
+                        type: array
+                    type: object
+                  resolver:
+                    description: Resolver is the name of the resolver that will be
+                      used to issue the DefaultCertificate.
+                    type: string
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: traefikservices.traefik.io
+spec:
+  group: traefik.io
+  names:
+    kind: TraefikService
+    listKind: TraefikServiceList
+    plural: traefikservices
+    singular: traefikservice
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'TraefikService is the CRD implementation of a Traefik Service.
+          TraefikService object allows to: - Apply weight to Services on load-balancing
+          - Mirror traffic on services More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-traefikservice'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: TraefikServiceSpec defines the desired state of a TraefikService.
+            properties:
+              mirroring:
+                description: Mirroring defines the Mirroring service configuration.
+                properties:
+                  kind:
+                    description: Kind defines the kind of the Service.
+                    enum:
+                    - Service
+                    - TraefikService
+                    type: string
+                  maxBodySize:
+                    description: MaxBodySize defines the maximum size allowed for
+                      the body of the request. If the body is larger, the request
+                      is not mirrored. Default value is -1, which means unlimited
+                      size.
+                    format: int64
+                    type: integer
+                  mirrors:
+                    description: Mirrors defines the list of mirrors where Traefik
+                      will duplicate the traffic.
+                    items:
+                      description: MirrorService holds the mirror configuration.
+                      properties:
+                        kind:
+                          description: Kind defines the kind of the Service.
+                          enum:
+                          - Service
+                          - TraefikService
+                          type: string
+                        name:
+                          description: Name defines the name of the referenced Kubernetes
+                            Service or TraefikService. The differentiation between
+                            the two is specified in the Kind field.
+                          type: string
+                        namespace:
+                          description: Namespace defines the namespace of the referenced
+                            Kubernetes Service or TraefikService.
+                          type: string
+                        nativeLB:
+                          description: NativeLB controls, when creating the load-balancer,
+                            whether the LB's children are directly the pods IPs or
+                            if the only child is the Kubernetes Service clusterIP.
+                            The Kubernetes Service itself does load-balance to the
+                            pods. By default, NativeLB is false.
+                          type: boolean
+                        passHostHeader:
+                          description: PassHostHeader defines whether the client Host
+                            header is forwarded to the upstream Kubernetes Service.
+                            By default, passHostHeader is true.
+                          type: boolean
+                        percent:
+                          description: 'Percent defines the part of the traffic to
+                            mirror. Supported values: 0 to 100.'
+                          type: integer
+                        port:
+                          anyOf:
+                          - type: integer
+                          - type: string
+                          description: Port defines the port of a Kubernetes Service.
+                            This can be a reference to a named port.
+                          x-kubernetes-int-or-string: true
+                        responseForwarding:
+                          description: ResponseForwarding defines how Traefik forwards
+                            the response from the upstream Kubernetes Service to the
+                            client.
+                          properties:
+                            flushInterval:
+                              description: 'FlushInterval defines the interval, in
+                                milliseconds, in between flushes to the client while
+                                copying the response body. A negative value means
+                                to flush immediately after each write to the client.
+                                This configuration is ignored when ReverseProxy recognizes
+                                a response as a streaming response; for such responses,
+                                writes are flushed to the client immediately. Default:
+                                100ms'
+                              type: string
+                          type: object
+                        scheme:
+                          description: Scheme defines the scheme to use for the request
+                            to the upstream Kubernetes Service. It defaults to https
+                            when Kubernetes Service port is 443, http otherwise.
+                          type: string
+                        serversTransport:
+                          description: ServersTransport defines the name of ServersTransport
+                            resource to use. It allows to configure the transport
+                            between Traefik and your servers. Can only be used on
+                            a Kubernetes Service.
+                          type: string
+                        sticky:
+                          description: 'Sticky defines the sticky sessions configuration.
+                            More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                          properties:
+                            cookie:
+                              description: Cookie defines the sticky cookie configuration.
+                              properties:
+                                httpOnly:
+                                  description: HTTPOnly defines whether the cookie
+                                    can be accessed by client-side APIs, such as JavaScript.
+                                  type: boolean
+                                name:
+                                  description: Name defines the Cookie name.
+                                  type: string
+                                sameSite:
+                                  description: 'SameSite defines the same site policy.
+                                    More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                  type: string
+                                secure:
+                                  description: Secure defines whether the cookie can
+                                    only be transmitted over an encrypted connection
+                                    (i.e. HTTPS).
+                                  type: boolean
+                              type: object
+                          type: object
+                        strategy:
+                          description: Strategy defines the load balancing strategy
+                            between the servers. RoundRobin is the only supported
+                            value at the moment.
+                          type: string
+                        weight:
+                          description: Weight defines the weight and should only be
+                            specified when Name references a TraefikService object
+                            (and to be precise, one that embeds a Weighted Round Robin).
+                          type: integer
+                      required:
+                      - name
+                      type: object
+                    type: array
+                  name:
+                    description: Name defines the name of the referenced Kubernetes
+                      Service or TraefikService. The differentiation between the two
+                      is specified in the Kind field.
+                    type: string
+                  namespace:
+                    description: Namespace defines the namespace of the referenced
+                      Kubernetes Service or TraefikService.
+                    type: string
+                  nativeLB:
+                    description: NativeLB controls, when creating the load-balancer,
+                      whether the LB's children are directly the pods IPs or if the
+                      only child is the Kubernetes Service clusterIP. The Kubernetes
+                      Service itself does load-balance to the pods. By default, NativeLB
+                      is false.
+                    type: boolean
+                  passHostHeader:
+                    description: PassHostHeader defines whether the client Host header
+                      is forwarded to the upstream Kubernetes Service. By default,
+                      passHostHeader is true.
+                    type: boolean
+                  port:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: Port defines the port of a Kubernetes Service. This
+                      can be a reference to a named port.
+                    x-kubernetes-int-or-string: true
+                  responseForwarding:
+                    description: ResponseForwarding defines how Traefik forwards the
+                      response from the upstream Kubernetes Service to the client.
+                    properties:
+                      flushInterval:
+                        description: 'FlushInterval defines the interval, in milliseconds,
+                          in between flushes to the client while copying the response
+                          body. A negative value means to flush immediately after
+                          each write to the client. This configuration is ignored
+                          when ReverseProxy recognizes a response as a streaming response;
+                          for such responses, writes are flushed to the client immediately.
+                          Default: 100ms'
+                        type: string
+                    type: object
+                  scheme:
+                    description: Scheme defines the scheme to use for the request
+                      to the upstream Kubernetes Service. It defaults to https when
+                      Kubernetes Service port is 443, http otherwise.
+                    type: string
+                  serversTransport:
+                    description: ServersTransport defines the name of ServersTransport
+                      resource to use. It allows to configure the transport between
+                      Traefik and your servers. Can only be used on a Kubernetes Service.
+                    type: string
+                  sticky:
+                    description: 'Sticky defines the sticky sessions configuration.
+                      More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                    properties:
+                      cookie:
+                        description: Cookie defines the sticky cookie configuration.
+                        properties:
+                          httpOnly:
+                            description: HTTPOnly defines whether the cookie can be
+                              accessed by client-side APIs, such as JavaScript.
+                            type: boolean
+                          name:
+                            description: Name defines the Cookie name.
+                            type: string
+                          sameSite:
+                            description: 'SameSite defines the same site policy. More
+                              info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                            type: string
+                          secure:
+                            description: Secure defines whether the cookie can only
+                              be transmitted over an encrypted connection (i.e. HTTPS).
+                            type: boolean
+                        type: object
+                    type: object
+                  strategy:
+                    description: Strategy defines the load balancing strategy between
+                      the servers. RoundRobin is the only supported value at the moment.
+                    type: string
+                  weight:
+                    description: Weight defines the weight and should only be specified
+                      when Name references a TraefikService object (and to be precise,
+                      one that embeds a Weighted Round Robin).
+                    type: integer
+                required:
+                - name
+                type: object
+              weighted:
+                description: Weighted defines the Weighted Round Robin configuration.
+                properties:
+                  services:
+                    description: Services defines the list of Kubernetes Service and/or
+                      TraefikService to load-balance, with weight.
+                    items:
+                      description: Service defines an upstream HTTP service to proxy
+                        traffic to.
+                      properties:
+                        kind:
+                          description: Kind defines the kind of the Service.
+                          enum:
+                          - Service
+                          - TraefikService
+                          type: string
+                        name:
+                          description: Name defines the name of the referenced Kubernetes
+                            Service or TraefikService. The differentiation between
+                            the two is specified in the Kind field.
+                          type: string
+                        namespace:
+                          description: Namespace defines the namespace of the referenced
+                            Kubernetes Service or TraefikService.
+                          type: string
+                        nativeLB:
+                          description: NativeLB controls, when creating the load-balancer,
+                            whether the LB's children are directly the pods IPs or
+                            if the only child is the Kubernetes Service clusterIP.
+                            The Kubernetes Service itself does load-balance to the
+                            pods. By default, NativeLB is false.
+                          type: boolean
+                        passHostHeader:
+                          description: PassHostHeader defines whether the client Host
+                            header is forwarded to the upstream Kubernetes Service.
+                            By default, passHostHeader is true.
+                          type: boolean
+                        port:
+                          anyOf:
+                          - type: integer
+                          - type: string
+                          description: Port defines the port of a Kubernetes Service.
+                            This can be a reference to a named port.
+                          x-kubernetes-int-or-string: true
+                        responseForwarding:
+                          description: ResponseForwarding defines how Traefik forwards
+                            the response from the upstream Kubernetes Service to the
+                            client.
+                          properties:
+                            flushInterval:
+                              description: 'FlushInterval defines the interval, in
+                                milliseconds, in between flushes to the client while
+                                copying the response body. A negative value means
+                                to flush immediately after each write to the client.
+                                This configuration is ignored when ReverseProxy recognizes
+                                a response as a streaming response; for such responses,
+                                writes are flushed to the client immediately. Default:
+                                100ms'
+                              type: string
+                          type: object
+                        scheme:
+                          description: Scheme defines the scheme to use for the request
+                            to the upstream Kubernetes Service. It defaults to https
+                            when Kubernetes Service port is 443, http otherwise.
+                          type: string
+                        serversTransport:
+                          description: ServersTransport defines the name of ServersTransport
+                            resource to use. It allows to configure the transport
+                            between Traefik and your servers. Can only be used on
+                            a Kubernetes Service.
+                          type: string
+                        sticky:
+                          description: 'Sticky defines the sticky sessions configuration.
+                            More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                          properties:
+                            cookie:
+                              description: Cookie defines the sticky cookie configuration.
+                              properties:
+                                httpOnly:
+                                  description: HTTPOnly defines whether the cookie
+                                    can be accessed by client-side APIs, such as JavaScript.
+                                  type: boolean
+                                name:
+                                  description: Name defines the Cookie name.
+                                  type: string
+                                sameSite:
+                                  description: 'SameSite defines the same site policy.
+                                    More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                  type: string
+                                secure:
+                                  description: Secure defines whether the cookie can
+                                    only be transmitted over an encrypted connection
+                                    (i.e. HTTPS).
+                                  type: boolean
+                              type: object
+                          type: object
+                        strategy:
+                          description: Strategy defines the load balancing strategy
+                            between the servers. RoundRobin is the only supported
+                            value at the moment.
+                          type: string
+                        weight:
+                          description: Weight defines the weight and should only be
+                            specified when Name references a TraefikService object
+                            (and to be precise, one that embeds a Weighted Round Robin).
+                          type: integer
+                      required:
+                      - name
+                      type: object
+                    type: array
+                  sticky:
+                    description: 'Sticky defines whether sticky sessions are enabled.
+                      More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#stickiness-and-load-balancing'
+                    properties:
+                      cookie:
+                        description: Cookie defines the sticky cookie configuration.
+                        properties:
+                          httpOnly:
+                            description: HTTPOnly defines whether the cookie can be
+                              accessed by client-side APIs, such as JavaScript.
+                            type: boolean
+                          name:
+                            description: Name defines the Cookie name.
+                            type: string
+                          sameSite:
+                            description: 'SameSite defines the same site policy. More
+                              info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                            type: string
+                          secure:
+                            description: Secure defines whether the cookie can only
+                              be transmitted over an encrypted connection (i.e. HTTPS).
+                            type: boolean
+                        type: object
+                    type: object
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: ingressroutes.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: IngressRoute
+    listKind: IngressRouteList
+    plural: ingressroutes
+    singular: ingressroute
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: IngressRoute is the CRD implementation of a Traefik HTTP Router.
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: IngressRouteSpec defines the desired state of IngressRoute.
+            properties:
+              entryPoints:
+                description: 'EntryPoints defines the list of entry point names to
+                  bind to. Entry points have to be configured in the static configuration.
+                  More info: https://doc.traefik.io/traefik/v2.10/routing/entrypoints/
+                  Default: all.'
+                items:
+                  type: string
+                type: array
+              routes:
+                description: Routes defines the list of routes.
+                items:
+                  description: Route holds the HTTP route configuration.
+                  properties:
+                    kind:
+                      description: Kind defines the kind of the route. Rule is the
+                        only supported kind.
+                      enum:
+                      - Rule
+                      type: string
+                    match:
+                      description: 'Match defines the router''s rule. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#rule'
+                      type: string
+                    middlewares:
+                      description: 'Middlewares defines the list of references to
+                        Middleware resources. More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-middleware'
+                      items:
+                        description: MiddlewareRef is a reference to a Middleware
+                          resource.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Middleware
+                              resource.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Middleware resource.
+                            type: string
+                        required:
+                        - name
+                        type: object
+                      type: array
+                    priority:
+                      description: 'Priority defines the router''s priority. More
+                        info: https://doc.traefik.io/traefik/v2.10/routing/routers/#priority'
+                      type: integer
+                    services:
+                      description: Services defines the list of Service. It can contain
+                        any combination of TraefikService and/or reference to a Kubernetes
+                        Service.
+                      items:
+                        description: Service defines an upstream HTTP service to proxy
+                          traffic to.
+                        properties:
+                          kind:
+                            description: Kind defines the kind of the Service.
+                            enum:
+                            - Service
+                            - TraefikService
+                            type: string
+                          name:
+                            description: Name defines the name of the referenced Kubernetes
+                              Service or TraefikService. The differentiation between
+                              the two is specified in the Kind field.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Kubernetes Service or TraefikService.
+                            type: string
+                          nativeLB:
+                            description: NativeLB controls, when creating the load-balancer,
+                              whether the LB's children are directly the pods IPs
+                              or if the only child is the Kubernetes Service clusterIP.
+                              The Kubernetes Service itself does load-balance to the
+                              pods. By default, NativeLB is false.
+                            type: boolean
+                          passHostHeader:
+                            description: PassHostHeader defines whether the client
+                              Host header is forwarded to the upstream Kubernetes
+                              Service. By default, passHostHeader is true.
+                            type: boolean
+                          port:
+                            anyOf:
+                            - type: integer
+                            - type: string
+                            description: Port defines the port of a Kubernetes Service.
+                              This can be a reference to a named port.
+                            x-kubernetes-int-or-string: true
+                          responseForwarding:
+                            description: ResponseForwarding defines how Traefik forwards
+                              the response from the upstream Kubernetes Service to
+                              the client.
+                            properties:
+                              flushInterval:
+                                description: 'FlushInterval defines the interval,
+                                  in milliseconds, in between flushes to the client
+                                  while copying the response body. A negative value
+                                  means to flush immediately after each write to the
+                                  client. This configuration is ignored when ReverseProxy
+                                  recognizes a response as a streaming response; for
+                                  such responses, writes are flushed to the client
+                                  immediately. Default: 100ms'
+                                type: string
+                            type: object
+                          scheme:
+                            description: Scheme defines the scheme to use for the
+                              request to the upstream Kubernetes Service. It defaults
+                              to https when Kubernetes Service port is 443, http otherwise.
+                            type: string
+                          serversTransport:
+                            description: ServersTransport defines the name of ServersTransport
+                              resource to use. It allows to configure the transport
+                              between Traefik and your servers. Can only be used on
+                              a Kubernetes Service.
+                            type: string
+                          sticky:
+                            description: 'Sticky defines the sticky sessions configuration.
+                              More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                            properties:
+                              cookie:
+                                description: Cookie defines the sticky cookie configuration.
+                                properties:
+                                  httpOnly:
+                                    description: HTTPOnly defines whether the cookie
+                                      can be accessed by client-side APIs, such as
+                                      JavaScript.
+                                    type: boolean
+                                  name:
+                                    description: Name defines the Cookie name.
+                                    type: string
+                                  sameSite:
+                                    description: 'SameSite defines the same site policy.
+                                      More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                    type: string
+                                  secure:
+                                    description: Secure defines whether the cookie
+                                      can only be transmitted over an encrypted connection
+                                      (i.e. HTTPS).
+                                    type: boolean
+                                type: object
+                            type: object
+                          strategy:
+                            description: Strategy defines the load balancing strategy
+                              between the servers. RoundRobin is the only supported
+                              value at the moment.
+                            type: string
+                          weight:
+                            description: Weight defines the weight and should only
+                              be specified when Name references a TraefikService object
+                              (and to be precise, one that embeds a Weighted Round
+                              Robin).
+                            type: integer
+                        required:
+                        - name
+                        type: object
+                      type: array
+                  required:
+                  - kind
+                  - match
+                  type: object
+                type: array
+              tls:
+                description: 'TLS defines the TLS configuration. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#tls'
+                properties:
+                  certResolver:
+                    description: 'CertResolver defines the name of the certificate
+                      resolver to use. Cert resolvers have to be configured in the
+                      static configuration. More info: https://doc.traefik.io/traefik/v2.10/https/acme/#certificate-resolvers'
+                    type: string
+                  domains:
+                    description: 'Domains defines the list of domains that will be
+                      used to issue certificates. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#domains'
+                    items:
+                      description: Domain holds a domain name with SANs.
+                      properties:
+                        main:
+                          description: Main defines the main domain name.
+                          type: string
+                        sans:
+                          description: SANs defines the subject alternative domain
+                            names.
+                          items:
+                            type: string
+                          type: array
+                      type: object
+                    type: array
+                  options:
+                    description: 'Options defines the reference to a TLSOption, that
+                      specifies the parameters of the TLS connection. If not defined,
+                      the `default` TLSOption is used. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options'
+                    properties:
+                      name:
+                        description: 'Name defines the name of the referenced TLSOption.
+                          More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsoption'
+                        type: string
+                      namespace:
+                        description: 'Namespace defines the namespace of the referenced
+                          TLSOption. More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsoption'
+                        type: string
+                    required:
+                    - name
+                    type: object
+                  secretName:
+                    description: SecretName is the name of the referenced Kubernetes
+                      Secret to specify the certificate details.
+                    type: string
+                  store:
+                    description: Store defines the reference to the TLSStore, that
+                      will be used to store certificates. Please note that only `default`
+                      TLSStore can be used.
+                    properties:
+                      name:
+                        description: 'Name defines the name of the referenced TLSStore.
+                          More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsstore'
+                        type: string
+                      namespace:
+                        description: 'Namespace defines the namespace of the referenced
+                          TLSStore. More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-tlsstore'
+                        type: string
+                    required:
+                    - name
+                    type: object
+                type: object
+            required:
+            - routes
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: ingressroutetcps.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: IngressRouteTCP
+    listKind: IngressRouteTCPList
+    plural: ingressroutetcps
+    singular: ingressroutetcp
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: IngressRouteTCP is the CRD implementation of a Traefik TCP Router.
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: IngressRouteTCPSpec defines the desired state of IngressRouteTCP.
+            properties:
+              entryPoints:
+                description: 'EntryPoints defines the list of entry point names to
+                  bind to. Entry points have to be configured in the static configuration.
+                  More info: https://doc.traefik.io/traefik/v2.10/routing/entrypoints/
+                  Default: all.'
+                items:
+                  type: string
+                type: array
+              routes:
+                description: Routes defines the list of routes.
+                items:
+                  description: RouteTCP holds the TCP route configuration.
+                  properties:
+                    match:
+                      description: 'Match defines the router''s rule. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#rule_1'
+                      type: string
+                    middlewares:
+                      description: Middlewares defines the list of references to MiddlewareTCP
+                        resources.
+                      items:
+                        description: ObjectReference is a generic reference to a Traefik
+                          resource.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Traefik
+                              resource.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Traefik resource.
+                            type: string
+                        required:
+                        - name
+                        type: object
+                      type: array
+                    priority:
+                      description: 'Priority defines the router''s priority. More
+                        info: https://doc.traefik.io/traefik/v2.10/routing/routers/#priority_1'
+                      type: integer
+                    services:
+                      description: Services defines the list of TCP services.
+                      items:
+                        description: ServiceTCP defines an upstream TCP service to
+                          proxy traffic to.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Kubernetes
+                              Service.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Kubernetes Service.
+                            type: string
+                          nativeLB:
+                            description: NativeLB controls, when creating the load-balancer,
+                              whether the LB's children are directly the pods IPs
+                              or if the only child is the Kubernetes Service clusterIP.
+                              The Kubernetes Service itself does load-balance to the
+                              pods. By default, NativeLB is false.
+                            type: boolean
+                          port:
+                            anyOf:
+                            - type: integer
+                            - type: string
+                            description: Port defines the port of a Kubernetes Service.
+                              This can be a reference to a named port.
+                            x-kubernetes-int-or-string: true
+                          proxyProtocol:
+                            description: 'ProxyProtocol defines the PROXY protocol
+                              configuration. More info: https://doc.traefik.io/traefik/v2.10/routing/services/#proxy-protocol'
+                            properties:
+                              version:
+                                description: Version defines the PROXY Protocol version
+                                  to use.
+                                type: integer
+                            type: object
+                          terminationDelay:
+                            description: TerminationDelay defines the deadline that
+                              the proxy sets, after one of its connected peers indicates
+                              it has closed the writing capability of its connection,
+                              to close the reading capability as well, hence fully
+                              terminating the connection. It is a duration in milliseconds,
+                              defaulting to 100. A negative value means an infinite
+                              deadline (i.e. the reading capability is never closed).
+                            type: integer
+                          weight:
+                            description: Weight defines the weight used when balancing
+                              requests between multiple Kubernetes Service.
+                            type: integer
+                        required:
+                        - name
+                        - port
+                        type: object
+                      type: array
+                  required:
+                  - match
+                  type: object
+                type: array
+              tls:
+                description: 'TLS defines the TLS configuration on a layer 4 / TCP
+                  Route. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#tls_1'
+                properties:
+                  certResolver:
+                    description: 'CertResolver defines the name of the certificate
+                      resolver to use. Cert resolvers have to be configured in the
+                      static configuration. More info: https://doc.traefik.io/traefik/v2.10/https/acme/#certificate-resolvers'
+                    type: string
+                  domains:
+                    description: 'Domains defines the list of domains that will be
+                      used to issue certificates. More info: https://doc.traefik.io/traefik/v2.10/routing/routers/#domains'
+                    items:
+                      description: Domain holds a domain name with SANs.
+                      properties:
+                        main:
+                          description: Main defines the main domain name.
+                          type: string
+                        sans:
+                          description: SANs defines the subject alternative domain
+                            names.
+                          items:
+                            type: string
+                          type: array
+                      type: object
+                    type: array
+                  options:
+                    description: 'Options defines the reference to a TLSOption, that
+                      specifies the parameters of the TLS connection. If not defined,
+                      the `default` TLSOption is used. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options'
+                    properties:
+                      name:
+                        description: Name defines the name of the referenced Traefik
+                          resource.
+                        type: string
+                      namespace:
+                        description: Namespace defines the namespace of the referenced
+                          Traefik resource.
+                        type: string
+                    required:
+                    - name
+                    type: object
+                  passthrough:
+                    description: Passthrough defines whether a TLS router will terminate
+                      the TLS connection.
+                    type: boolean
+                  secretName:
+                    description: SecretName is the name of the referenced Kubernetes
+                      Secret to specify the certificate details.
+                    type: string
+                  store:
+                    description: Store defines the reference to the TLSStore, that
+                      will be used to store certificates. Please note that only `default`
+                      TLSStore can be used.
+                    properties:
+                      name:
+                        description: Name defines the name of the referenced Traefik
+                          resource.
+                        type: string
+                      namespace:
+                        description: Namespace defines the namespace of the referenced
+                          Traefik resource.
+                        type: string
+                    required:
+                    - name
+                    type: object
+                type: object
+            required:
+            - routes
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: ingressrouteudps.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: IngressRouteUDP
+    listKind: IngressRouteUDPList
+    plural: ingressrouteudps
+    singular: ingressrouteudp
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: IngressRouteUDP is a CRD implementation of a Traefik UDP Router.
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: IngressRouteUDPSpec defines the desired state of a IngressRouteUDP.
+            properties:
+              entryPoints:
+                description: 'EntryPoints defines the list of entry point names to
+                  bind to. Entry points have to be configured in the static configuration.
+                  More info: https://doc.traefik.io/traefik/v2.10/routing/entrypoints/
+                  Default: all.'
+                items:
+                  type: string
+                type: array
+              routes:
+                description: Routes defines the list of routes.
+                items:
+                  description: RouteUDP holds the UDP route configuration.
+                  properties:
+                    services:
+                      description: Services defines the list of UDP services.
+                      items:
+                        description: ServiceUDP defines an upstream UDP service to
+                          proxy traffic to.
+                        properties:
+                          name:
+                            description: Name defines the name of the referenced Kubernetes
+                              Service.
+                            type: string
+                          namespace:
+                            description: Namespace defines the namespace of the referenced
+                              Kubernetes Service.
+                            type: string
+                          nativeLB:
+                            description: NativeLB controls, when creating the load-balancer,
+                              whether the LB's children are directly the pods IPs
+                              or if the only child is the Kubernetes Service clusterIP.
+                              The Kubernetes Service itself does load-balance to the
+                              pods. By default, NativeLB is false.
+                            type: boolean
+                          port:
+                            anyOf:
+                            - type: integer
+                            - type: string
+                            description: Port defines the port of a Kubernetes Service.
+                              This can be a reference to a named port.
+                            x-kubernetes-int-or-string: true
+                          weight:
+                            description: Weight defines the weight used when balancing
+                              requests between multiple Kubernetes Service.
+                            type: integer
+                        required:
+                        - name
+                        - port
+                        type: object
+                      type: array
+                  type: object
+                type: array
+            required:
+            - routes
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: middlewares.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: Middleware
+    listKind: MiddlewareList
+    plural: middlewares
+    singular: middleware
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'Middleware is the CRD implementation of a Traefik Middleware.
+          More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/overview/'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: MiddlewareSpec defines the desired state of a Middleware.
+            properties:
+              addPrefix:
+                description: 'AddPrefix holds the add prefix middleware configuration.
+                  This middleware updates the path of a request before forwarding
+                  it. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/addprefix/'
+                properties:
+                  prefix:
+                    description: Prefix is the string to add before the current path
+                      in the requested URL. It should include a leading slash (/).
+                    type: string
+                type: object
+              basicAuth:
+                description: 'BasicAuth holds the basic auth middleware configuration.
+                  This middleware restricts access to your services to known users.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/basicauth/'
+                properties:
+                  headerField:
+                    description: 'HeaderField defines a header field to store the
+                      authenticated user. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/basicauth/#headerfield'
+                    type: string
+                  realm:
+                    description: 'Realm allows the protected resources on a server
+                      to be partitioned into a set of protection spaces, each with
+                      its own authentication scheme. Default: traefik.'
+                    type: string
+                  removeHeader:
+                    description: 'RemoveHeader sets the removeHeader option to true
+                      to remove the authorization header before forwarding the request
+                      to your service. Default: false.'
+                    type: boolean
+                  secret:
+                    description: Secret is the name of the referenced Kubernetes Secret
+                      containing user credentials.
+                    type: string
+                type: object
+              buffering:
+                description: 'Buffering holds the buffering middleware configuration.
+                  This middleware retries or limits the size of requests that can
+                  be forwarded to backends. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/buffering/#maxrequestbodybytes'
+                properties:
+                  maxRequestBodyBytes:
+                    description: 'MaxRequestBodyBytes defines the maximum allowed
+                      body size for the request (in bytes). If the request exceeds
+                      the allowed size, it is not forwarded to the service, and the
+                      client gets a 413 (Request Entity Too Large) response. Default:
+                      0 (no maximum).'
+                    format: int64
+                    type: integer
+                  maxResponseBodyBytes:
+                    description: 'MaxResponseBodyBytes defines the maximum allowed
+                      response size from the service (in bytes). If the response exceeds
+                      the allowed size, it is not forwarded to the client. The client
+                      gets a 500 (Internal Server Error) response instead. Default:
+                      0 (no maximum).'
+                    format: int64
+                    type: integer
+                  memRequestBodyBytes:
+                    description: 'MemRequestBodyBytes defines the threshold (in bytes)
+                      from which the request will be buffered on disk instead of in
+                      memory. Default: 1048576 (1Mi).'
+                    format: int64
+                    type: integer
+                  memResponseBodyBytes:
+                    description: 'MemResponseBodyBytes defines the threshold (in bytes)
+                      from which the response will be buffered on disk instead of
+                      in memory. Default: 1048576 (1Mi).'
+                    format: int64
+                    type: integer
+                  retryExpression:
+                    description: 'RetryExpression defines the retry conditions. It
+                      is a logical combination of functions with operators AND (&&)
+                      and OR (||). More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/buffering/#retryexpression'
+                    type: string
+                type: object
+              chain:
+                description: 'Chain holds the configuration of the chain middleware.
+                  This middleware enables to define reusable combinations of other
+                  pieces of middleware. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/chain/'
+                properties:
+                  middlewares:
+                    description: Middlewares is the list of MiddlewareRef which composes
+                      the chain.
+                    items:
+                      description: MiddlewareRef is a reference to a Middleware resource.
+                      properties:
+                        name:
+                          description: Name defines the name of the referenced Middleware
+                            resource.
+                          type: string
+                        namespace:
+                          description: Namespace defines the namespace of the referenced
+                            Middleware resource.
+                          type: string
+                      required:
+                      - name
+                      type: object
+                    type: array
+                type: object
+              circuitBreaker:
+                description: CircuitBreaker holds the circuit breaker configuration.
+                properties:
+                  checkPeriod:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: CheckPeriod is the interval between successive checks
+                      of the circuit breaker condition (when in standby state).
+                    x-kubernetes-int-or-string: true
+                  expression:
+                    description: Expression is the condition that triggers the tripped
+                      state.
+                    type: string
+                  fallbackDuration:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: FallbackDuration is the duration for which the circuit
+                      breaker will wait before trying to recover (from a tripped state).
+                    x-kubernetes-int-or-string: true
+                  recoveryDuration:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: RecoveryDuration is the duration for which the circuit
+                      breaker will try to recover (as soon as it is in recovering
+                      state).
+                    x-kubernetes-int-or-string: true
+                type: object
+              compress:
+                description: 'Compress holds the compress middleware configuration.
+                  This middleware compresses responses before sending them to the
+                  client, using gzip compression. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/compress/'
+                properties:
+                  excludedContentTypes:
+                    description: ExcludedContentTypes defines the list of content
+                      types to compare the Content-Type header of the incoming requests
+                      and responses before compressing.
+                    items:
+                      type: string
+                    type: array
+                  minResponseBodyBytes:
+                    description: 'MinResponseBodyBytes defines the minimum amount
+                      of bytes a response body must have to be compressed. Default:
+                      1024.'
+                    type: integer
+                type: object
+              contentType:
+                description: ContentType holds the content-type middleware configuration.
+                  This middleware exists to enable the correct behavior until at least
+                  the default one can be changed in a future version.
+                properties:
+                  autoDetect:
+                    description: AutoDetect specifies whether to let the `Content-Type`
+                      header, if it has not been set by the backend, be automatically
+                      set to a value derived from the contents of the response. As
+                      a proxy, the default behavior should be to leave the header
+                      alone, regardless of what the backend did with it. However,
+                      the historic default was to always auto-detect and set the header
+                      if it was nil, and it is going to be kept that way in order
+                      to support users currently relying on it.
+                    type: boolean
+                type: object
+              digestAuth:
+                description: 'DigestAuth holds the digest auth middleware configuration.
+                  This middleware restricts access to your services to known users.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/digestauth/'
+                properties:
+                  headerField:
+                    description: 'HeaderField defines a header field to store the
+                      authenticated user. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/basicauth/#headerfield'
+                    type: string
+                  realm:
+                    description: 'Realm allows the protected resources on a server
+                      to be partitioned into a set of protection spaces, each with
+                      its own authentication scheme. Default: traefik.'
+                    type: string
+                  removeHeader:
+                    description: RemoveHeader defines whether to remove the authorization
+                      header before forwarding the request to the backend.
+                    type: boolean
+                  secret:
+                    description: Secret is the name of the referenced Kubernetes Secret
+                      containing user credentials.
+                    type: string
+                type: object
+              errors:
+                description: 'ErrorPage holds the custom error middleware configuration.
+                  This middleware returns a custom page in lieu of the default, according
+                  to configured ranges of HTTP Status codes. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/errorpages/'
+                properties:
+                  query:
+                    description: Query defines the URL for the error page (hosted
+                      by service). The {status} variable can be used in order to insert
+                      the status code in the URL.
+                    type: string
+                  service:
+                    description: 'Service defines the reference to a Kubernetes Service
+                      that will serve the error page. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/errorpages/#service'
+                    properties:
+                      kind:
+                        description: Kind defines the kind of the Service.
+                        enum:
+                        - Service
+                        - TraefikService
+                        type: string
+                      name:
+                        description: Name defines the name of the referenced Kubernetes
+                          Service or TraefikService. The differentiation between the
+                          two is specified in the Kind field.
+                        type: string
+                      namespace:
+                        description: Namespace defines the namespace of the referenced
+                          Kubernetes Service or TraefikService.
+                        type: string
+                      nativeLB:
+                        description: NativeLB controls, when creating the load-balancer,
+                          whether the LB's children are directly the pods IPs or if
+                          the only child is the Kubernetes Service clusterIP. The
+                          Kubernetes Service itself does load-balance to the pods.
+                          By default, NativeLB is false.
+                        type: boolean
+                      passHostHeader:
+                        description: PassHostHeader defines whether the client Host
+                          header is forwarded to the upstream Kubernetes Service.
+                          By default, passHostHeader is true.
+                        type: boolean
+                      port:
+                        anyOf:
+                        - type: integer
+                        - type: string
+                        description: Port defines the port of a Kubernetes Service.
+                          This can be a reference to a named port.
+                        x-kubernetes-int-or-string: true
+                      responseForwarding:
+                        description: ResponseForwarding defines how Traefik forwards
+                          the response from the upstream Kubernetes Service to the
+                          client.
+                        properties:
+                          flushInterval:
+                            description: 'FlushInterval defines the interval, in milliseconds,
+                              in between flushes to the client while copying the response
+                              body. A negative value means to flush immediately after
+                              each write to the client. This configuration is ignored
+                              when ReverseProxy recognizes a response as a streaming
+                              response; for such responses, writes are flushed to
+                              the client immediately. Default: 100ms'
+                            type: string
+                        type: object
+                      scheme:
+                        description: Scheme defines the scheme to use for the request
+                          to the upstream Kubernetes Service. It defaults to https
+                          when Kubernetes Service port is 443, http otherwise.
+                        type: string
+                      serversTransport:
+                        description: ServersTransport defines the name of ServersTransport
+                          resource to use. It allows to configure the transport between
+                          Traefik and your servers. Can only be used on a Kubernetes
+                          Service.
+                        type: string
+                      sticky:
+                        description: 'Sticky defines the sticky sessions configuration.
+                          More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                        properties:
+                          cookie:
+                            description: Cookie defines the sticky cookie configuration.
+                            properties:
+                              httpOnly:
+                                description: HTTPOnly defines whether the cookie can
+                                  be accessed by client-side APIs, such as JavaScript.
+                                type: boolean
+                              name:
+                                description: Name defines the Cookie name.
+                                type: string
+                              sameSite:
+                                description: 'SameSite defines the same site policy.
+                                  More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                type: string
+                              secure:
+                                description: Secure defines whether the cookie can
+                                  only be transmitted over an encrypted connection
+                                  (i.e. HTTPS).
+                                type: boolean
+                            type: object
+                        type: object
+                      strategy:
+                        description: Strategy defines the load balancing strategy
+                          between the servers. RoundRobin is the only supported value
+                          at the moment.
+                        type: string
+                      weight:
+                        description: Weight defines the weight and should only be
+                          specified when Name references a TraefikService object (and
+                          to be precise, one that embeds a Weighted Round Robin).
+                        type: integer
+                    required:
+                    - name
+                    type: object
+                  status:
+                    description: Status defines which status or range of statuses
+                      should result in an error page. It can be either a status code
+                      as a number (500), as multiple comma-separated numbers (500,502),
+                      as ranges by separating two codes with a dash (500-599), or
+                      a combination of the two (404,418,500-599).
+                    items:
+                      type: string
+                    type: array
+                type: object
+              forwardAuth:
+                description: 'ForwardAuth holds the forward auth middleware configuration.
+                  This middleware delegates the request authentication to a Service.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/forwardauth/'
+                properties:
+                  address:
+                    description: Address defines the authentication server address.
+                    type: string
+                  authRequestHeaders:
+                    description: AuthRequestHeaders defines the list of the headers
+                      to copy from the request to the authentication server. If not
+                      set or empty then all request headers are passed.
+                    items:
+                      type: string
+                    type: array
+                  authResponseHeaders:
+                    description: AuthResponseHeaders defines the list of headers to
+                      copy from the authentication server response and set on forwarded
+                      request, replacing any existing conflicting headers.
+                    items:
+                      type: string
+                    type: array
+                  authResponseHeadersRegex:
+                    description: 'AuthResponseHeadersRegex defines the regex to match
+                      headers to copy from the authentication server response and
+                      set on forwarded request, after stripping all headers that match
+                      the regex. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/forwardauth/#authresponseheadersregex'
+                    type: string
+                  tls:
+                    description: TLS defines the configuration used to secure the
+                      connection to the authentication server.
+                    properties:
+                      caOptional:
+                        type: boolean
+                      caSecret:
+                        description: CASecret is the name of the referenced Kubernetes
+                          Secret containing the CA to validate the server certificate.
+                          The CA certificate is extracted from key `tls.ca` or `ca.crt`.
+                        type: string
+                      certSecret:
+                        description: CertSecret is the name of the referenced Kubernetes
+                          Secret containing the client certificate. The client certificate
+                          is extracted from the keys `tls.crt` and `tls.key`.
+                        type: string
+                      insecureSkipVerify:
+                        description: InsecureSkipVerify defines whether the server
+                          certificates should be validated.
+                        type: boolean
+                    type: object
+                  trustForwardHeader:
+                    description: 'TrustForwardHeader defines whether to trust (ie:
+                      forward) all X-Forwarded-* headers.'
+                    type: boolean
+                type: object
+              headers:
+                description: 'Headers holds the headers middleware configuration.
+                  This middleware manages the requests and responses headers. More
+                  info: https://doc.traefik.io/traefik/v2.10/middlewares/http/headers/#customrequestheaders'
+                properties:
+                  accessControlAllowCredentials:
+                    description: AccessControlAllowCredentials defines whether the
+                      request can include user credentials.
+                    type: boolean
+                  accessControlAllowHeaders:
+                    description: AccessControlAllowHeaders defines the Access-Control-Request-Headers
+                      values sent in preflight response.
+                    items:
+                      type: string
+                    type: array
+                  accessControlAllowMethods:
+                    description: AccessControlAllowMethods defines the Access-Control-Request-Method
+                      values sent in preflight response.
+                    items:
+                      type: string
+                    type: array
+                  accessControlAllowOriginList:
+                    description: AccessControlAllowOriginList is a list of allowable
+                      origins. Can also be a wildcard origin "*".
+                    items:
+                      type: string
+                    type: array
+                  accessControlAllowOriginListRegex:
+                    description: AccessControlAllowOriginListRegex is a list of allowable
+                      origins written following the Regular Expression syntax (https://golang.org/pkg/regexp/).
+                    items:
+                      type: string
+                    type: array
+                  accessControlExposeHeaders:
+                    description: AccessControlExposeHeaders defines the Access-Control-Expose-Headers
+                      values sent in preflight response.
+                    items:
+                      type: string
+                    type: array
+                  accessControlMaxAge:
+                    description: AccessControlMaxAge defines the time that a preflight
+                      request may be cached.
+                    format: int64
+                    type: integer
+                  addVaryHeader:
+                    description: AddVaryHeader defines whether the Vary header is
+                      automatically added/updated when the AccessControlAllowOriginList
+                      is set.
+                    type: boolean
+                  allowedHosts:
+                    description: AllowedHosts defines the fully qualified list of
+                      allowed domain names.
+                    items:
+                      type: string
+                    type: array
+                  browserXssFilter:
+                    description: BrowserXSSFilter defines whether to add the X-XSS-Protection
+                      header with the value 1; mode=block.
+                    type: boolean
+                  contentSecurityPolicy:
+                    description: ContentSecurityPolicy defines the Content-Security-Policy
+                      header value.
+                    type: string
+                  contentTypeNosniff:
+                    description: ContentTypeNosniff defines whether to add the X-Content-Type-Options
+                      header with the nosniff value.
+                    type: boolean
+                  customBrowserXSSValue:
+                    description: CustomBrowserXSSValue defines the X-XSS-Protection
+                      header value. This overrides the BrowserXssFilter option.
+                    type: string
+                  customFrameOptionsValue:
+                    description: CustomFrameOptionsValue defines the X-Frame-Options
+                      header value. This overrides the FrameDeny option.
+                    type: string
+                  customRequestHeaders:
+                    additionalProperties:
+                      type: string
+                    description: CustomRequestHeaders defines the header names and
+                      values to apply to the request.
+                    type: object
+                  customResponseHeaders:
+                    additionalProperties:
+                      type: string
+                    description: CustomResponseHeaders defines the header names and
+                      values to apply to the response.
+                    type: object
+                  featurePolicy:
+                    description: 'Deprecated: use PermissionsPolicy instead.'
+                    type: string
+                  forceSTSHeader:
+                    description: ForceSTSHeader defines whether to add the STS header
+                      even when the connection is HTTP.
+                    type: boolean
+                  frameDeny:
+                    description: FrameDeny defines whether to add the X-Frame-Options
+                      header with the DENY value.
+                    type: boolean
+                  hostsProxyHeaders:
+                    description: HostsProxyHeaders defines the header keys that may
+                      hold a proxied hostname value for the request.
+                    items:
+                      type: string
+                    type: array
+                  isDevelopment:
+                    description: IsDevelopment defines whether to mitigate the unwanted
+                      effects of the AllowedHosts, SSL, and STS options when developing.
+                      Usually testing takes place using HTTP, not HTTPS, and on localhost,
+                      not your production domain. If you would like your development
+                      environment to mimic production with complete Host blocking,
+                      SSL redirects, and STS headers, leave this as false.
+                    type: boolean
+                  permissionsPolicy:
+                    description: PermissionsPolicy defines the Permissions-Policy
+                      header value. This allows sites to control browser features.
+                    type: string
+                  publicKey:
+                    description: PublicKey is the public key that implements HPKP
+                      to prevent MITM attacks with forged certificates.
+                    type: string
+                  referrerPolicy:
+                    description: ReferrerPolicy defines the Referrer-Policy header
+                      value. This allows sites to control whether browsers forward
+                      the Referer header to other sites.
+                    type: string
+                  sslForceHost:
+                    description: 'Deprecated: use RedirectRegex instead.'
+                    type: boolean
+                  sslHost:
+                    description: 'Deprecated: use RedirectRegex instead.'
+                    type: string
+                  sslProxyHeaders:
+                    additionalProperties:
+                      type: string
+                    description: 'SSLProxyHeaders defines the header keys with associated
+                      values that would indicate a valid HTTPS request. It can be
+                      useful when using other proxies (example: "X-Forwarded-Proto":
+                      "https").'
+                    type: object
+                  sslRedirect:
+                    description: 'Deprecated: use EntryPoint redirection or RedirectScheme
+                      instead.'
+                    type: boolean
+                  sslTemporaryRedirect:
+                    description: 'Deprecated: use EntryPoint redirection or RedirectScheme
+                      instead.'
+                    type: boolean
+                  stsIncludeSubdomains:
+                    description: STSIncludeSubdomains defines whether the includeSubDomains
+                      directive is appended to the Strict-Transport-Security header.
+                    type: boolean
+                  stsPreload:
+                    description: STSPreload defines whether the preload flag is appended
+                      to the Strict-Transport-Security header.
+                    type: boolean
+                  stsSeconds:
+                    description: STSSeconds defines the max-age of the Strict-Transport-Security
+                      header. If set to 0, the header is not set.
+                    format: int64
+                    type: integer
+                type: object
+              inFlightReq:
+                description: 'InFlightReq holds the in-flight request middleware configuration.
+                  This middleware limits the number of requests being processed and
+                  served concurrently. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/inflightreq/'
+                properties:
+                  amount:
+                    description: Amount defines the maximum amount of allowed simultaneous
+                      in-flight request. The middleware responds with HTTP 429 Too
+                      Many Requests if there are already amount requests in progress
+                      (based on the same sourceCriterion strategy).
+                    format: int64
+                    type: integer
+                  sourceCriterion:
+                    description: 'SourceCriterion defines what criterion is used to
+                      group requests as originating from a common source. If several
+                      strategies are defined at the same time, an error will be raised.
+                      If none are set, the default is to use the requestHost. More
+                      info: https://doc.traefik.io/traefik/v2.10/middlewares/http/inflightreq/#sourcecriterion'
+                    properties:
+                      ipStrategy:
+                        description: 'IPStrategy holds the IP strategy configuration
+                          used by Traefik to determine the client IP. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/#ipstrategy'
+                        properties:
+                          depth:
+                            description: Depth tells Traefik to use the X-Forwarded-For
+                              header and take the IP located at the depth position
+                              (starting from the right).
+                            type: integer
+                          excludedIPs:
+                            description: ExcludedIPs configures Traefik to scan the
+                              X-Forwarded-For header and select the first IP not in
+                              the list.
+                            items:
+                              type: string
+                            type: array
+                        type: object
+                      requestHeaderName:
+                        description: RequestHeaderName defines the name of the header
+                          used to group incoming requests.
+                        type: string
+                      requestHost:
+                        description: RequestHost defines whether to consider the request
+                          Host as the source.
+                        type: boolean
+                    type: object
+                type: object
+              ipWhiteList:
+                description: 'IPWhiteList holds the IP whitelist middleware configuration.
+                  This middleware accepts / refuses requests based on the client IP.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/'
+                properties:
+                  ipStrategy:
+                    description: 'IPStrategy holds the IP strategy configuration used
+                      by Traefik to determine the client IP. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/#ipstrategy'
+                    properties:
+                      depth:
+                        description: Depth tells Traefik to use the X-Forwarded-For
+                          header and take the IP located at the depth position (starting
+                          from the right).
+                        type: integer
+                      excludedIPs:
+                        description: ExcludedIPs configures Traefik to scan the X-Forwarded-For
+                          header and select the first IP not in the list.
+                        items:
+                          type: string
+                        type: array
+                    type: object
+                  sourceRange:
+                    description: SourceRange defines the set of allowed IPs (or ranges
+                      of allowed IPs by using CIDR notation).
+                    items:
+                      type: string
+                    type: array
+                type: object
+              passTLSClientCert:
+                description: 'PassTLSClientCert holds the pass TLS client cert middleware
+                  configuration. This middleware adds the selected data from the passed
+                  client TLS certificate to a header. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/passtlsclientcert/'
+                properties:
+                  info:
+                    description: Info selects the specific client certificate details
+                      you want to add to the X-Forwarded-Tls-Client-Cert-Info header.
+                    properties:
+                      issuer:
+                        description: Issuer defines the client certificate issuer
+                          details to add to the X-Forwarded-Tls-Client-Cert-Info header.
+                        properties:
+                          commonName:
+                            description: CommonName defines whether to add the organizationalUnit
+                              information into the issuer.
+                            type: boolean
+                          country:
+                            description: Country defines whether to add the country
+                              information into the issuer.
+                            type: boolean
+                          domainComponent:
+                            description: DomainComponent defines whether to add the
+                              domainComponent information into the issuer.
+                            type: boolean
+                          locality:
+                            description: Locality defines whether to add the locality
+                              information into the issuer.
+                            type: boolean
+                          organization:
+                            description: Organization defines whether to add the organization
+                              information into the issuer.
+                            type: boolean
+                          province:
+                            description: Province defines whether to add the province
+                              information into the issuer.
+                            type: boolean
+                          serialNumber:
+                            description: SerialNumber defines whether to add the serialNumber
+                              information into the issuer.
+                            type: boolean
+                        type: object
+                      notAfter:
+                        description: NotAfter defines whether to add the Not After
+                          information from the Validity part.
+                        type: boolean
+                      notBefore:
+                        description: NotBefore defines whether to add the Not Before
+                          information from the Validity part.
+                        type: boolean
+                      sans:
+                        description: Sans defines whether to add the Subject Alternative
+                          Name information from the Subject Alternative Name part.
+                        type: boolean
+                      serialNumber:
+                        description: SerialNumber defines whether to add the client
+                          serialNumber information.
+                        type: boolean
+                      subject:
+                        description: Subject defines the client certificate subject
+                          details to add to the X-Forwarded-Tls-Client-Cert-Info header.
+                        properties:
+                          commonName:
+                            description: CommonName defines whether to add the organizationalUnit
+                              information into the subject.
+                            type: boolean
+                          country:
+                            description: Country defines whether to add the country
+                              information into the subject.
+                            type: boolean
+                          domainComponent:
+                            description: DomainComponent defines whether to add the
+                              domainComponent information into the subject.
+                            type: boolean
+                          locality:
+                            description: Locality defines whether to add the locality
+                              information into the subject.
+                            type: boolean
+                          organization:
+                            description: Organization defines whether to add the organization
+                              information into the subject.
+                            type: boolean
+                          organizationalUnit:
+                            description: OrganizationalUnit defines whether to add
+                              the organizationalUnit information into the subject.
+                            type: boolean
+                          province:
+                            description: Province defines whether to add the province
+                              information into the subject.
+                            type: boolean
+                          serialNumber:
+                            description: SerialNumber defines whether to add the serialNumber
+                              information into the subject.
+                            type: boolean
+                        type: object
+                    type: object
+                  pem:
+                    description: PEM sets the X-Forwarded-Tls-Client-Cert header with
+                      the certificate.
+                    type: boolean
+                type: object
+              plugin:
+                additionalProperties:
+                  x-kubernetes-preserve-unknown-fields: true
+                description: 'Plugin defines the middleware plugin configuration.
+                  More info: https://doc.traefik.io/traefik/plugins/'
+                type: object
+              rateLimit:
+                description: 'RateLimit holds the rate limit configuration. This middleware
+                  ensures that services will receive a fair amount of requests, and
+                  allows one to define what fair is. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ratelimit/'
+                properties:
+                  average:
+                    description: Average is the maximum rate, by default in requests/s,
+                      allowed for the given source. It defaults to 0, which means
+                      no rate limiting. The rate is actually defined by dividing Average
+                      by Period. So for a rate below 1req/s, one needs to define a
+                      Period larger than a second.
+                    format: int64
+                    type: integer
+                  burst:
+                    description: Burst is the maximum number of requests allowed to
+                      arrive in the same arbitrarily small period of time. It defaults
+                      to 1.
+                    format: int64
+                    type: integer
+                  period:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: 'Period, in combination with Average, defines the
+                      actual maximum rate, such as: r = Average / Period. It defaults
+                      to a second.'
+                    x-kubernetes-int-or-string: true
+                  sourceCriterion:
+                    description: SourceCriterion defines what criterion is used to
+                      group requests as originating from a common source. If several
+                      strategies are defined at the same time, an error will be raised.
+                      If none are set, the default is to use the request's remote
+                      address field (as an ipStrategy).
+                    properties:
+                      ipStrategy:
+                        description: 'IPStrategy holds the IP strategy configuration
+                          used by Traefik to determine the client IP. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/ipwhitelist/#ipstrategy'
+                        properties:
+                          depth:
+                            description: Depth tells Traefik to use the X-Forwarded-For
+                              header and take the IP located at the depth position
+                              (starting from the right).
+                            type: integer
+                          excludedIPs:
+                            description: ExcludedIPs configures Traefik to scan the
+                              X-Forwarded-For header and select the first IP not in
+                              the list.
+                            items:
+                              type: string
+                            type: array
+                        type: object
+                      requestHeaderName:
+                        description: RequestHeaderName defines the name of the header
+                          used to group incoming requests.
+                        type: string
+                      requestHost:
+                        description: RequestHost defines whether to consider the request
+                          Host as the source.
+                        type: boolean
+                    type: object
+                type: object
+              redirectRegex:
+                description: 'RedirectRegex holds the redirect regex middleware configuration.
+                  This middleware redirects a request using regex matching and replacement.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/redirectregex/#regex'
+                properties:
+                  permanent:
+                    description: Permanent defines whether the redirection is permanent
+                      (301).
+                    type: boolean
+                  regex:
+                    description: Regex defines the regex used to match and capture
+                      elements from the request URL.
+                    type: string
+                  replacement:
+                    description: Replacement defines how to modify the URL to have
+                      the new target URL.
+                    type: string
+                type: object
+              redirectScheme:
+                description: 'RedirectScheme holds the redirect scheme middleware
+                  configuration. This middleware redirects requests from a scheme/port
+                  to another. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/redirectscheme/'
+                properties:
+                  permanent:
+                    description: Permanent defines whether the redirection is permanent
+                      (301).
+                    type: boolean
+                  port:
+                    description: Port defines the port of the new URL.
+                    type: string
+                  scheme:
+                    description: Scheme defines the scheme of the new URL.
+                    type: string
+                type: object
+              replacePath:
+                description: 'ReplacePath holds the replace path middleware configuration.
+                  This middleware replaces the path of the request URL and store the
+                  original path in an X-Replaced-Path header. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/replacepath/'
+                properties:
+                  path:
+                    description: Path defines the path to use as replacement in the
+                      request URL.
+                    type: string
+                type: object
+              replacePathRegex:
+                description: 'ReplacePathRegex holds the replace path regex middleware
+                  configuration. This middleware replaces the path of a URL using
+                  regex matching and replacement. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/replacepathregex/'
+                properties:
+                  regex:
+                    description: Regex defines the regular expression used to match
+                      and capture the path from the request URL.
+                    type: string
+                  replacement:
+                    description: Replacement defines the replacement path format,
+                      which can include captured variables.
+                    type: string
+                type: object
+              retry:
+                description: 'Retry holds the retry middleware configuration. This
+                  middleware reissues requests a given number of times to a backend
+                  server if that server does not reply. As soon as the server answers,
+                  the middleware stops retrying, regardless of the response status.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/retry/'
+                properties:
+                  attempts:
+                    description: Attempts defines how many times the request should
+                      be retried.
+                    type: integer
+                  initialInterval:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: InitialInterval defines the first wait time in the
+                      exponential backoff series. The maximum interval is calculated
+                      as twice the initialInterval. If unspecified, requests will
+                      be retried immediately. The value of initialInterval should
+                      be provided in seconds or as a valid duration format, see https://pkg.go.dev/time#ParseDuration.
+                    x-kubernetes-int-or-string: true
+                type: object
+              stripPrefix:
+                description: 'StripPrefix holds the strip prefix middleware configuration.
+                  This middleware removes the specified prefixes from the URL path.
+                  More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/stripprefix/'
+                properties:
+                  forceSlash:
+                    description: 'ForceSlash ensures that the resulting stripped path
+                      is not the empty string, by replacing it with / when necessary.
+                      Default: true.'
+                    type: boolean
+                  prefixes:
+                    description: Prefixes defines the prefixes to strip from the request
+                      URL.
+                    items:
+                      type: string
+                    type: array
+                type: object
+              stripPrefixRegex:
+                description: 'StripPrefixRegex holds the strip prefix regex middleware
+                  configuration. This middleware removes the matching prefixes from
+                  the URL path. More info: https://doc.traefik.io/traefik/v2.10/middlewares/http/stripprefixregex/'
+                properties:
+                  regex:
+                    description: Regex defines the regular expression to match the
+                      path prefix from the request URL.
+                    items:
+                      type: string
+                    type: array
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: middlewaretcps.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: MiddlewareTCP
+    listKind: MiddlewareTCPList
+    plural: middlewaretcps
+    singular: middlewaretcp
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'MiddlewareTCP is the CRD implementation of a Traefik TCP middleware.
+          More info: https://doc.traefik.io/traefik/v2.10/middlewares/overview/'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: MiddlewareTCPSpec defines the desired state of a MiddlewareTCP.
+            properties:
+              inFlightConn:
+                description: InFlightConn defines the InFlightConn middleware configuration.
+                properties:
+                  amount:
+                    description: Amount defines the maximum amount of allowed simultaneous
+                      connections. The middleware closes the connection if there are
+                      already amount connections opened.
+                    format: int64
+                    type: integer
+                type: object
+              ipWhiteList:
+                description: IPWhiteList defines the IPWhiteList middleware configuration.
+                properties:
+                  sourceRange:
+                    description: SourceRange defines the allowed IPs (or ranges of
+                      allowed IPs by using CIDR notation).
+                    items:
+                      type: string
+                    type: array
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: serverstransports.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: ServersTransport
+    listKind: ServersTransportList
+    plural: serverstransports
+    singular: serverstransport
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'ServersTransport is the CRD implementation of a ServersTransport.
+          If no serversTransport is specified, the default@internal will be used.
+          The default@internal serversTransport is created from the static configuration.
+          More info: https://doc.traefik.io/traefik/v2.10/routing/services/#serverstransport_1'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: ServersTransportSpec defines the desired state of a ServersTransport.
+            properties:
+              certificatesSecrets:
+                description: CertificatesSecrets defines a list of secret storing
+                  client certificates for mTLS.
+                items:
+                  type: string
+                type: array
+              disableHTTP2:
+                description: DisableHTTP2 disables HTTP/2 for connections with backend
+                  servers.
+                type: boolean
+              forwardingTimeouts:
+                description: ForwardingTimeouts defines the timeouts for requests
+                  forwarded to the backend servers.
+                properties:
+                  dialTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: DialTimeout is the amount of time to wait until a
+                      connection to a backend server can be established.
+                    x-kubernetes-int-or-string: true
+                  idleConnTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: IdleConnTimeout is the maximum period for which an
+                      idle HTTP keep-alive connection will remain open before closing
+                      itself.
+                    x-kubernetes-int-or-string: true
+                  pingTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: PingTimeout is the timeout after which the HTTP/2
+                      connection will be closed if a response to ping is not received.
+                    x-kubernetes-int-or-string: true
+                  readIdleTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: ReadIdleTimeout is the timeout after which a health
+                      check using ping frame will be carried out if no frame is received
+                      on the HTTP/2 connection.
+                    x-kubernetes-int-or-string: true
+                  responseHeaderTimeout:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: ResponseHeaderTimeout is the amount of time to wait
+                      for a server's response headers after fully writing the request
+                      (including its body, if any).
+                    x-kubernetes-int-or-string: true
+                type: object
+              insecureSkipVerify:
+                description: InsecureSkipVerify disables SSL certificate verification.
+                type: boolean
+              maxIdleConnsPerHost:
+                description: MaxIdleConnsPerHost controls the maximum idle (keep-alive)
+                  to keep per-host.
+                type: integer
+              peerCertURI:
+                description: PeerCertURI defines the peer cert URI used to match against
+                  SAN URI during the peer certificate verification.
+                type: string
+              rootCAsSecrets:
+                description: RootCAsSecrets defines a list of CA secret used to validate
+                  self-signed certificate.
+                items:
+                  type: string
+                type: array
+              serverName:
+                description: ServerName defines the server name used to contact the
+                  server.
+                type: string
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: tlsoptions.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: TLSOption
+    listKind: TLSOptionList
+    plural: tlsoptions
+    singular: tlsoption
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'TLSOption is the CRD implementation of a Traefik TLS Option,
+          allowing to configure some parameters of the TLS connection. More info:
+          https://doc.traefik.io/traefik/v2.10/https/tls/#tls-options'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: TLSOptionSpec defines the desired state of a TLSOption.
+            properties:
+              alpnProtocols:
+                description: 'ALPNProtocols defines the list of supported application
+                  level protocols for the TLS handshake, in order of preference. More
+                  info: https://doc.traefik.io/traefik/v2.10/https/tls/#alpn-protocols'
+                items:
+                  type: string
+                type: array
+              cipherSuites:
+                description: 'CipherSuites defines the list of supported cipher suites
+                  for TLS versions up to TLS 1.2. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#cipher-suites'
+                items:
+                  type: string
+                type: array
+              clientAuth:
+                description: ClientAuth defines the server's policy for TLS Client
+                  Authentication.
+                properties:
+                  clientAuthType:
+                    description: ClientAuthType defines the client authentication
+                      type to apply.
+                    enum:
+                    - NoClientCert
+                    - RequestClientCert
+                    - RequireAnyClientCert
+                    - VerifyClientCertIfGiven
+                    - RequireAndVerifyClientCert
+                    type: string
+                  secretNames:
+                    description: SecretNames defines the names of the referenced Kubernetes
+                      Secret storing certificate details.
+                    items:
+                      type: string
+                    type: array
+                type: object
+              curvePreferences:
+                description: 'CurvePreferences defines the preferred elliptic curves
+                  in a specific order. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#curve-preferences'
+                items:
+                  type: string
+                type: array
+              maxVersion:
+                description: 'MaxVersion defines the maximum TLS version that Traefik
+                  will accept. Possible values: VersionTLS10, VersionTLS11, VersionTLS12,
+                  VersionTLS13. Default: None.'
+                type: string
+              minVersion:
+                description: 'MinVersion defines the minimum TLS version that Traefik
+                  will accept. Possible values: VersionTLS10, VersionTLS11, VersionTLS12,
+                  VersionTLS13. Default: VersionTLS10.'
+                type: string
+              preferServerCipherSuites:
+                description: 'PreferServerCipherSuites defines whether the server
+                  chooses a cipher suite among his own instead of among the client''s.
+                  It is enabled automatically when minVersion or maxVersion is set.
+                  Deprecated: https://github.com/golang/go/issues/45430'
+                type: boolean
+              sniStrict:
+                description: SniStrict defines whether Traefik allows connections
+                  from clients connections that do not specify a server_name extension.
+                type: boolean
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: tlsstores.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: TLSStore
+    listKind: TLSStoreList
+    plural: tlsstores
+    singular: tlsstore
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'TLSStore is the CRD implementation of a Traefik TLS Store. For
+          the time being, only the TLSStore named default is supported. This means
+          that you cannot have two stores that are named default in different Kubernetes
+          namespaces. More info: https://doc.traefik.io/traefik/v2.10/https/tls/#certificates-stores'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: TLSStoreSpec defines the desired state of a TLSStore.
+            properties:
+              certificates:
+                description: Certificates is a list of secret names, each secret holding
+                  a key/certificate pair to add to the store.
+                items:
+                  description: Certificate holds a secret name for the TLSStore resource.
+                  properties:
+                    secretName:
+                      description: SecretName is the name of the referenced Kubernetes
+                        Secret to specify the certificate details.
+                      type: string
+                  required:
+                  - secretName
+                  type: object
+                type: array
+              defaultCertificate:
+                description: DefaultCertificate defines the default certificate configuration.
+                properties:
+                  secretName:
+                    description: SecretName is the name of the referenced Kubernetes
+                      Secret to specify the certificate details.
+                    type: string
+                required:
+                - secretName
+                type: object
+              defaultGeneratedCert:
+                description: DefaultGeneratedCert defines the default generated certificate
+                  configuration.
+                properties:
+                  domain:
+                    description: Domain is the domain definition for the DefaultCertificate.
+                    properties:
+                      main:
+                        description: Main defines the main domain name.
+                        type: string
+                      sans:
+                        description: SANs defines the subject alternative domain names.
+                        items:
+                          type: string
+                        type: array
+                    type: object
+                  resolver:
+                    description: Resolver is the name of the resolver that will be
+                      used to issue the DefaultCertificate.
+                    type: string
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true
+---
+apiVersion: apiextensions.k8s.io/v1
+kind: CustomResourceDefinition
+metadata:
+  annotations:
+    controller-gen.kubebuilder.io/version: v0.13.0
+  name: traefikservices.traefik.containo.us
+spec:
+  group: traefik.containo.us
+  names:
+    kind: TraefikService
+    listKind: TraefikServiceList
+    plural: traefikservices
+    singular: traefikservice
+  scope: Namespaced
+  versions:
+  - name: v1alpha1
+    schema:
+      openAPIV3Schema:
+        description: 'TraefikService is the CRD implementation of a Traefik Service.
+          TraefikService object allows to: - Apply weight to Services on load-balancing
+          - Mirror traffic on services More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#kind-traefikservice'
+        properties:
+          apiVersion:
+            description: 'APIVersion defines the versioned schema of this representation
+              of an object. Servers should convert recognized schemas to the latest
+              internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
+            type: string
+          kind:
+            description: 'Kind is a string value representing the REST resource this
+              object represents. Servers may infer this from the endpoint the client
+              submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
+            type: string
+          metadata:
+            type: object
+          spec:
+            description: TraefikServiceSpec defines the desired state of a TraefikService.
+            properties:
+              mirroring:
+                description: Mirroring defines the Mirroring service configuration.
+                properties:
+                  kind:
+                    description: Kind defines the kind of the Service.
+                    enum:
+                    - Service
+                    - TraefikService
+                    type: string
+                  maxBodySize:
+                    description: MaxBodySize defines the maximum size allowed for
+                      the body of the request. If the body is larger, the request
+                      is not mirrored. Default value is -1, which means unlimited
+                      size.
+                    format: int64
+                    type: integer
+                  mirrors:
+                    description: Mirrors defines the list of mirrors where Traefik
+                      will duplicate the traffic.
+                    items:
+                      description: MirrorService holds the mirror configuration.
+                      properties:
+                        kind:
+                          description: Kind defines the kind of the Service.
+                          enum:
+                          - Service
+                          - TraefikService
+                          type: string
+                        name:
+                          description: Name defines the name of the referenced Kubernetes
+                            Service or TraefikService. The differentiation between
+                            the two is specified in the Kind field.
+                          type: string
+                        namespace:
+                          description: Namespace defines the namespace of the referenced
+                            Kubernetes Service or TraefikService.
+                          type: string
+                        nativeLB:
+                          description: NativeLB controls, when creating the load-balancer,
+                            whether the LB's children are directly the pods IPs or
+                            if the only child is the Kubernetes Service clusterIP.
+                            The Kubernetes Service itself does load-balance to the
+                            pods. By default, NativeLB is false.
+                          type: boolean
+                        passHostHeader:
+                          description: PassHostHeader defines whether the client Host
+                            header is forwarded to the upstream Kubernetes Service.
+                            By default, passHostHeader is true.
+                          type: boolean
+                        percent:
+                          description: 'Percent defines the part of the traffic to
+                            mirror. Supported values: 0 to 100.'
+                          type: integer
+                        port:
+                          anyOf:
+                          - type: integer
+                          - type: string
+                          description: Port defines the port of a Kubernetes Service.
+                            This can be a reference to a named port.
+                          x-kubernetes-int-or-string: true
+                        responseForwarding:
+                          description: ResponseForwarding defines how Traefik forwards
+                            the response from the upstream Kubernetes Service to the
+                            client.
+                          properties:
+                            flushInterval:
+                              description: 'FlushInterval defines the interval, in
+                                milliseconds, in between flushes to the client while
+                                copying the response body. A negative value means
+                                to flush immediately after each write to the client.
+                                This configuration is ignored when ReverseProxy recognizes
+                                a response as a streaming response; for such responses,
+                                writes are flushed to the client immediately. Default:
+                                100ms'
+                              type: string
+                          type: object
+                        scheme:
+                          description: Scheme defines the scheme to use for the request
+                            to the upstream Kubernetes Service. It defaults to https
+                            when Kubernetes Service port is 443, http otherwise.
+                          type: string
+                        serversTransport:
+                          description: ServersTransport defines the name of ServersTransport
+                            resource to use. It allows to configure the transport
+                            between Traefik and your servers. Can only be used on
+                            a Kubernetes Service.
+                          type: string
+                        sticky:
+                          description: 'Sticky defines the sticky sessions configuration.
+                            More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                          properties:
+                            cookie:
+                              description: Cookie defines the sticky cookie configuration.
+                              properties:
+                                httpOnly:
+                                  description: HTTPOnly defines whether the cookie
+                                    can be accessed by client-side APIs, such as JavaScript.
+                                  type: boolean
+                                name:
+                                  description: Name defines the Cookie name.
+                                  type: string
+                                sameSite:
+                                  description: 'SameSite defines the same site policy.
+                                    More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                  type: string
+                                secure:
+                                  description: Secure defines whether the cookie can
+                                    only be transmitted over an encrypted connection
+                                    (i.e. HTTPS).
+                                  type: boolean
+                              type: object
+                          type: object
+                        strategy:
+                          description: Strategy defines the load balancing strategy
+                            between the servers. RoundRobin is the only supported
+                            value at the moment.
+                          type: string
+                        weight:
+                          description: Weight defines the weight and should only be
+                            specified when Name references a TraefikService object
+                            (and to be precise, one that embeds a Weighted Round Robin).
+                          type: integer
+                      required:
+                      - name
+                      type: object
+                    type: array
+                  name:
+                    description: Name defines the name of the referenced Kubernetes
+                      Service or TraefikService. The differentiation between the two
+                      is specified in the Kind field.
+                    type: string
+                  namespace:
+                    description: Namespace defines the namespace of the referenced
+                      Kubernetes Service or TraefikService.
+                    type: string
+                  nativeLB:
+                    description: NativeLB controls, when creating the load-balancer,
+                      whether the LB's children are directly the pods IPs or if the
+                      only child is the Kubernetes Service clusterIP. The Kubernetes
+                      Service itself does load-balance to the pods. By default, NativeLB
+                      is false.
+                    type: boolean
+                  passHostHeader:
+                    description: PassHostHeader defines whether the client Host header
+                      is forwarded to the upstream Kubernetes Service. By default,
+                      passHostHeader is true.
+                    type: boolean
+                  port:
+                    anyOf:
+                    - type: integer
+                    - type: string
+                    description: Port defines the port of a Kubernetes Service. This
+                      can be a reference to a named port.
+                    x-kubernetes-int-or-string: true
+                  responseForwarding:
+                    description: ResponseForwarding defines how Traefik forwards the
+                      response from the upstream Kubernetes Service to the client.
+                    properties:
+                      flushInterval:
+                        description: 'FlushInterval defines the interval, in milliseconds,
+                          in between flushes to the client while copying the response
+                          body. A negative value means to flush immediately after
+                          each write to the client. This configuration is ignored
+                          when ReverseProxy recognizes a response as a streaming response;
+                          for such responses, writes are flushed to the client immediately.
+                          Default: 100ms'
+                        type: string
+                    type: object
+                  scheme:
+                    description: Scheme defines the scheme to use for the request
+                      to the upstream Kubernetes Service. It defaults to https when
+                      Kubernetes Service port is 443, http otherwise.
+                    type: string
+                  serversTransport:
+                    description: ServersTransport defines the name of ServersTransport
+                      resource to use. It allows to configure the transport between
+                      Traefik and your servers. Can only be used on a Kubernetes Service.
+                    type: string
+                  sticky:
+                    description: 'Sticky defines the sticky sessions configuration.
+                      More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                    properties:
+                      cookie:
+                        description: Cookie defines the sticky cookie configuration.
+                        properties:
+                          httpOnly:
+                            description: HTTPOnly defines whether the cookie can be
+                              accessed by client-side APIs, such as JavaScript.
+                            type: boolean
+                          name:
+                            description: Name defines the Cookie name.
+                            type: string
+                          sameSite:
+                            description: 'SameSite defines the same site policy. More
+                              info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                            type: string
+                          secure:
+                            description: Secure defines whether the cookie can only
+                              be transmitted over an encrypted connection (i.e. HTTPS).
+                            type: boolean
+                        type: object
+                    type: object
+                  strategy:
+                    description: Strategy defines the load balancing strategy between
+                      the servers. RoundRobin is the only supported value at the moment.
+                    type: string
+                  weight:
+                    description: Weight defines the weight and should only be specified
+                      when Name references a TraefikService object (and to be precise,
+                      one that embeds a Weighted Round Robin).
+                    type: integer
+                required:
+                - name
+                type: object
+              weighted:
+                description: Weighted defines the Weighted Round Robin configuration.
+                properties:
+                  services:
+                    description: Services defines the list of Kubernetes Service and/or
+                      TraefikService to load-balance, with weight.
+                    items:
+                      description: Service defines an upstream HTTP service to proxy
+                        traffic to.
+                      properties:
+                        kind:
+                          description: Kind defines the kind of the Service.
+                          enum:
+                          - Service
+                          - TraefikService
+                          type: string
+                        name:
+                          description: Name defines the name of the referenced Kubernetes
+                            Service or TraefikService. The differentiation between
+                            the two is specified in the Kind field.
+                          type: string
+                        namespace:
+                          description: Namespace defines the namespace of the referenced
+                            Kubernetes Service or TraefikService.
+                          type: string
+                        nativeLB:
+                          description: NativeLB controls, when creating the load-balancer,
+                            whether the LB's children are directly the pods IPs or
+                            if the only child is the Kubernetes Service clusterIP.
+                            The Kubernetes Service itself does load-balance to the
+                            pods. By default, NativeLB is false.
+                          type: boolean
+                        passHostHeader:
+                          description: PassHostHeader defines whether the client Host
+                            header is forwarded to the upstream Kubernetes Service.
+                            By default, passHostHeader is true.
+                          type: boolean
+                        port:
+                          anyOf:
+                          - type: integer
+                          - type: string
+                          description: Port defines the port of a Kubernetes Service.
+                            This can be a reference to a named port.
+                          x-kubernetes-int-or-string: true
+                        responseForwarding:
+                          description: ResponseForwarding defines how Traefik forwards
+                            the response from the upstream Kubernetes Service to the
+                            client.
+                          properties:
+                            flushInterval:
+                              description: 'FlushInterval defines the interval, in
+                                milliseconds, in between flushes to the client while
+                                copying the response body. A negative value means
+                                to flush immediately after each write to the client.
+                                This configuration is ignored when ReverseProxy recognizes
+                                a response as a streaming response; for such responses,
+                                writes are flushed to the client immediately. Default:
+                                100ms'
+                              type: string
+                          type: object
+                        scheme:
+                          description: Scheme defines the scheme to use for the request
+                            to the upstream Kubernetes Service. It defaults to https
+                            when Kubernetes Service port is 443, http otherwise.
+                          type: string
+                        serversTransport:
+                          description: ServersTransport defines the name of ServersTransport
+                            resource to use. It allows to configure the transport
+                            between Traefik and your servers. Can only be used on
+                            a Kubernetes Service.
+                          type: string
+                        sticky:
+                          description: 'Sticky defines the sticky sessions configuration.
+                            More info: https://doc.traefik.io/traefik/v2.10/routing/services/#sticky-sessions'
+                          properties:
+                            cookie:
+                              description: Cookie defines the sticky cookie configuration.
+                              properties:
+                                httpOnly:
+                                  description: HTTPOnly defines whether the cookie
+                                    can be accessed by client-side APIs, such as JavaScript.
+                                  type: boolean
+                                name:
+                                  description: Name defines the Cookie name.
+                                  type: string
+                                sameSite:
+                                  description: 'SameSite defines the same site policy.
+                                    More info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                                  type: string
+                                secure:
+                                  description: Secure defines whether the cookie can
+                                    only be transmitted over an encrypted connection
+                                    (i.e. HTTPS).
+                                  type: boolean
+                              type: object
+                          type: object
+                        strategy:
+                          description: Strategy defines the load balancing strategy
+                            between the servers. RoundRobin is the only supported
+                            value at the moment.
+                          type: string
+                        weight:
+                          description: Weight defines the weight and should only be
+                            specified when Name references a TraefikService object
+                            (and to be precise, one that embeds a Weighted Round Robin).
+                          type: integer
+                      required:
+                      - name
+                      type: object
+                    type: array
+                  sticky:
+                    description: 'Sticky defines whether sticky sessions are enabled.
+                      More info: https://doc.traefik.io/traefik/v2.10/routing/providers/kubernetes-crd/#stickiness-and-load-balancing'
+                    properties:
+                      cookie:
+                        description: Cookie defines the sticky cookie configuration.
+                        properties:
+                          httpOnly:
+                            description: HTTPOnly defines whether the cookie can be
+                              accessed by client-side APIs, such as JavaScript.
+                            type: boolean
+                          name:
+                            description: Name defines the Cookie name.
+                            type: string
+                          sameSite:
+                            description: 'SameSite defines the same site policy. More
+                              info: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite'
+                            type: string
+                          secure:
+                            description: Secure defines whether the cookie can only
+                              be transmitted over an encrypted connection (i.e. HTTPS).
+                            type: boolean
+                        type: object
+                    type: object
+                type: object
+            type: object
+        required:
+        - metadata
+        - spec
+        type: object
+    served: true
+    storage: true

+ 65 - 0
dezendorf/homelab/talos/traefik/traefik-rbac.yaml

@@ -0,0 +1,65 @@
+apiVersion: rbac.authorization.k8s.io/v1
+kind: ClusterRole
+metadata:
+  name: traefik-ingress-controller
+
+rules:
+  - apiGroups:
+      - ""
+    resources:
+      - services
+      - endpoints
+      - secrets
+    verbs:
+      - get
+      - list
+      - watch
+  - apiGroups:
+      - extensions
+      - networking.k8s.io
+    resources:
+      - ingresses
+      - ingressclasses
+    verbs:
+      - get
+      - list
+      - watch
+  - apiGroups:
+      - extensions
+      - networking.k8s.io
+    resources:
+      - ingresses/status
+    verbs:
+      - update
+  - apiGroups:
+      - traefik.io
+      - traefik.containo.us
+    resources:
+      - middlewares
+      - middlewaretcps
+      - ingressroutes
+      - traefikservices
+      - ingressroutetcps
+      - ingressrouteudps
+      - tlsoptions
+      - tlsstores
+      - serverstransports
+    verbs:
+      - get
+      - list
+      - watch
+
+---
+apiVersion: rbac.authorization.k8s.io/v1
+kind: ClusterRoleBinding
+metadata:
+  name: traefik-ingress-controller
+
+roleRef:
+  apiGroup: rbac.authorization.k8s.io
+  kind: ClusterRole
+  name: traefik-ingress-controller
+subjects:
+  - kind: ServiceAccount
+    name: traefik-ingress-controller
+    namespace: default

+ 275 - 0
dezendorf/homelab/talos/traefik/traefik.yaml

@@ -0,0 +1,275 @@
+---
+# Source: traefik/templates/rbac/serviceaccount.yaml
+kind: ServiceAccount
+apiVersion: v1
+metadata:
+  name: traefik
+  namespace: default
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+  annotations:
+---
+# Source: traefik/templates/rbac/clusterrole.yaml
+kind: ClusterRole
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: traefik-default
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+rules:
+  - apiGroups:
+      - extensions
+      - networking.k8s.io
+    resources:
+      - ingressclasses
+      - ingresses
+    verbs:
+      - get
+      - list
+      - watch
+  - apiGroups:
+      - ""
+    resources:
+      - services
+      - endpoints
+      - secrets
+    verbs:
+      - get
+      - list
+      - watch
+  - apiGroups:
+      - extensions
+      - networking.k8s.io
+    resources:
+      - ingresses/status
+    verbs:
+      - update
+  - apiGroups:
+      - traefik.io
+      - traefik.containo.us
+    resources:
+      - ingressroutes
+      - ingressroutetcps
+      - ingressrouteudps
+      - middlewares
+      - middlewaretcps
+      - tlsoptions
+      - tlsstores
+      - traefikservices
+      - serverstransports
+    verbs:
+      - get
+      - list
+      - watch
+---
+# Source: traefik/templates/rbac/clusterrolebinding.yaml
+kind: ClusterRoleBinding
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+  name: traefik-default
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+roleRef:
+  apiGroup: rbac.authorization.k8s.io
+  kind: ClusterRole
+  name: traefik-default
+subjects:
+  - kind: ServiceAccount
+    name: traefik
+    namespace: default
+---
+# Source: traefik/templates/service.yaml
+apiVersion: v1
+kind: Service
+metadata:
+  name: traefik
+  namespace: default
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+  annotations:
+spec:
+  type: LoadBalancer
+  selector:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+  ports:
+  - port: 80
+    name: "web"
+    targetPort: web
+    protocol: TCP
+  - port: 443
+    name: "websecure"
+    targetPort: websecure
+    protocol: TCP
+---
+# Source: traefik/templates/deployment.yaml
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+  name: traefik
+  namespace: default
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+  annotations:
+spec:
+  replicas: 1
+  selector:
+    matchLabels:
+      app.kubernetes.io/name: traefik
+      app.kubernetes.io/instance: traefik-default
+  strategy: 
+    rollingUpdate:
+      maxSurge: 1
+      maxUnavailable: 0
+    type: RollingUpdate
+  minReadySeconds: 0
+  template: 
+    metadata:
+      annotations:
+        prometheus.io/scrape: "true"
+        prometheus.io/path: "/metrics"
+        prometheus.io/port: "9100"
+      labels:
+        app.kubernetes.io/name: traefik
+        app.kubernetes.io/instance: traefik-default
+        helm.sh/chart: traefik-26.0.0
+        app.kubernetes.io/managed-by: Helm
+    spec:
+      serviceAccountName: traefik
+      terminationGracePeriodSeconds: 60
+      hostNetwork: false
+      containers:
+      - image: docker.io/traefik:v2.10.6
+        imagePullPolicy: IfNotPresent
+        name: traefik
+        resources:
+        readinessProbe:
+          httpGet:
+            path: /ping
+            port: 9000
+            scheme: HTTP
+          failureThreshold: 1
+          initialDelaySeconds: 2
+          periodSeconds: 10
+          successThreshold: 1
+          timeoutSeconds: 2
+        livenessProbe:
+          httpGet:
+            path: /ping
+            port: 9000
+            scheme: HTTP
+          failureThreshold: 3
+          initialDelaySeconds: 2
+          periodSeconds: 10
+          successThreshold: 1
+          timeoutSeconds: 2
+        lifecycle:
+        ports:
+        - name: "metrics"
+          containerPort: 9100
+          protocol: "TCP"
+        - name: "traefik"
+          containerPort: 9000
+          protocol: "TCP"
+        - name: "web"
+          containerPort: 8000
+          protocol: "TCP"
+        - name: "websecure"
+          containerPort: 8443
+          protocol: "TCP"
+        securityContext:
+          allowPrivilegeEscalation: false
+          capabilities:
+            drop:
+            - ALL
+          readOnlyRootFilesystem: true
+        volumeMounts:
+          - name: data
+            mountPath: /data
+          - name: tmp
+            mountPath: /tmp
+        args:
+          - "--global.checknewversion"
+          - "--global.sendanonymoususage"
+          - "--entrypoints.metrics.address=:9100/tcp"
+          - "--entrypoints.traefik.address=:9000/tcp"
+          - "--entrypoints.web.address=:8000/tcp"
+          - "--entrypoints.websecure.address=:8443/tcp"
+          - "--api.dashboard=true"
+          - "--ping=true"
+          - "--metrics.prometheus=true"
+          - "--metrics.prometheus.entrypoint=metrics"
+          - "--providers.kubernetescrd"
+          - "--providers.kubernetesingress"
+          - "--entrypoints.websecure.http.tls=true"
+        env:
+          - name: POD_NAME
+            valueFrom:
+              fieldRef:
+                fieldPath: metadata.name
+          - name: POD_NAMESPACE
+            valueFrom:
+              fieldRef:
+                fieldPath: metadata.namespace
+      volumes:
+        - name: data
+          emptyDir: {}
+        - name: tmp
+          emptyDir: {}
+      securityContext:
+        fsGroupChangePolicy: OnRootMismatch
+        runAsGroup: 65532
+        runAsNonRoot: true
+        runAsUser: 65532
+---
+# Source: traefik/templates/ingressclass.yaml
+apiVersion: networking.k8s.io/v1
+kind: IngressClass
+metadata:
+  annotations:
+    ingressclass.kubernetes.io/is-default-class: "true"
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+  name: traefik
+spec:
+  controller: traefik.io/ingress-controller
+---
+# Source: traefik/templates/dashboard-ingressroute.yaml
+apiVersion: traefik.io/v1alpha1
+kind: IngressRoute
+metadata:
+  name: traefik-dashboard
+  namespace: default
+  annotations:
+  labels:
+    app.kubernetes.io/name: traefik
+    app.kubernetes.io/instance: traefik-default
+    helm.sh/chart: traefik-26.0.0
+    app.kubernetes.io/managed-by: Helm
+spec:
+  entryPoints:
+  - traefik
+  routes:
+  - match: PathPrefix(`/dashboard`) || PathPrefix(`/api`)
+    kind: Rule
+    services:
+    - name: api@internal
+      kind: TraefikService

Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно