--- apiVersion: v1 items: - apiVersion: v1 count: 13 eventTime: null firstTimestamp: "2026-06-11T16:49:46Z" involvedObject: apiVersion: services.platform.opendatahub.io/v1alpha1 kind: GatewayConfig name: default-gateway resourceVersion: "15985" uid: b34452ac-bfa0-44ca-b9b1-a1d0f7b55f53 kind: Event lastTimestamp: "2026-06-11T16:50:00Z" message: 'failed to lookup object openshift-ingress/data-science-tls-rule: no matches for kind "DestinationRule" in version "networking.istio.io/v1"' metadata: creationTimestamp: "2026-06-11T16:49:46Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: manager operation: Update time: "2026-06-11T16:50:00Z" name: default-gateway.18b814dba586508f namespace: default resourceVersion: "16451" uid: 380a0037-7762-4962-9d0c-d02e7d4a98d7 reason: ProvisioningError reportingComponent: gatewayconfig reportingInstance: "" source: component: gatewayconfig type: Warning - apiVersion: v1 count: 25 eventTime: null firstTimestamp: "2026-06-11T16:49:55Z" involvedObject: apiVersion: components.platform.opendatahub.io/v1alpha1 kind: Kserve name: default-kserve resourceVersion: "16337" uid: fb09776e-b856-4fe9-a035-73cb0d405a88 kind: Event lastTimestamp: "2026-06-11T16:50:13Z" message: "failure deploying resource {map[apiVersion:serving.kserve.io/v1alpha1 kind:LLMInferenceServiceConfig metadata:map[annotations:map[internal.config.kubernetes.io/previousKinds:LLMInferenceServiceConfig internal.config.kubernetes.io/previousNames:kserve-config-llm-decode-template internal.config.kubernetes.io/previousNamespaces:opendatahub platform.opendatahub.io/instance.generation:1 platform.opendatahub.io/instance.name:default-kserve platform.opendatahub.io/instance.uid:fb09776e-b856-4fe9-a035-73cb0d405a88 platform.opendatahub.io/type:Open Data Hub platform.opendatahub.io/version:3.4.0-ea.1 serving.kserve.io/well-known-config:true] labels:map[app.kubernetes.io/part-of:kserve app.opendatahub.io/kserve:true platform.opendatahub.io/part-of:kserve] name:v3-4-0-ea-1-kserve-config-llm-decode-template namespace:opendatahub ownerReferences:[map[apiVersion:components.platform.opendatahub.io/v1alpha1 blockOwnerDeletion:%!s(bool=true) controller:%!s(bool=true) kind:Kserve name:default-kserve uid:fb09776e-b856-4fe9-a035-73cb0d405a88]]] spec:map[template:map[containers:[map[args:[if [ \"$KSERVE_INFER_ROCE\" = \"true\" ]; then\n echo \"Trying to infer RoCE configs ... \"\n grep -H . /sys/class/infiniband/*/ports/*/gids/* 2>/dev/null\n grep -H . /sys/class/infiniband/*/ports/*/gid_attrs/types/* 2>/dev/null\n\n cat /proc/driver/nvidia/params\n\n \ KSERVE_INFER_IB_GID_INDEX_GREP=${KSERVE_INFER_IB_GID_INDEX_GREP:-\"RoCE v2\"}\n\n \ echo \"[Infer RoCE] Discovering active HCAs ...\"\n active_hcas=()\n # Loop through all mlx5 devices found in sysfs\n for hca_dir in /sys/class/infiniband/mlx5_*; do\n # Ensure it's a directory before proceeding\n if [ -d \"$hca_dir\" ]; then\n hca_name=$(basename \"$hca_dir\")\n port_state_file=\"$hca_dir/ports/1/state\" # Assume port 1\n type_file=\"$hca_dir/ports/1/gid_attrs/types/*\"\n\n \ echo \"[Infer RoCE] Check if the port state file ${port_state_file} exists and contains 'ACTIVE'\"\n if [ -f \"$port_state_file\" ] && grep -q \"ACTIVE\" \"$port_state_file\" && grep -q \"${KSERVE_INFER_IB_GID_INDEX_GREP}\" ${type_file} 2>/dev/null; then\n echo \"[Infer RoCE] Found active HCA: $hca_name\"\n active_hcas+=(\"$hca_name\")\n else\n \ echo \"[Infer RoCE] Skipping inactive or down HCA: $hca_name\"\n \ fi\n fi\n done\n\n ucx_hcas=()\n for hca in \"${active_hcas[@]}\"; do\n ucx_hcas+=(\"${hca}:1\")\n done\n\n # Check if we found any active HCAs\n \ if [ ${#active_hcas[@]} -gt 0 ]; then\n # Join the array elements with a comma\n hcas=$(IFS=,; echo \"${active_hcas[*]}\")\n echo \"[Infer RoCE] Setting active HCAs: ${hcas}\"\n export NCCL_IB_HCA=${NCCL_IB_HCA:-${hcas}}\n \ export NVSHMEM_HCA_LIST=${NVSHMEM_HCA_LIST:-${ucx_hcas}}\n export UCX_NET_DEVICES=${UCX_NET_DEVICES:-${ucx_hcas}}\n\n \ echo \"[Infer RoCE] NCCL_IB_HCA=${NCCL_IB_HCA}\"\n echo \"[Infer RoCE] NVSHMEM_HCA_LIST=${NVSHMEM_HCA_LIST}\"\n else\n echo \"[Infer RoCE] WARNING: No active RoCE HCAs found. NCCL_IB_HCA will not be set.\"\n fi\n\n if [ ${#active_hcas[@]} -gt 0 ]; then\n echo \"[Infer RoCE] Finding GID_INDEX for each active HCA (SR-IOV compatible)...\"\n\n # For SR-IOV environments, find the most common IPv4 RoCE v2 GID index across all HCAs\n declare -A gid_index_count\n declare -A hca_gid_index\n\n for hca_name in \"${active_hcas[@]}\"; do\n echo \"[Infer RoCE] Processing HCA: ${hca_name}\"\n\n # Find all RoCE v2 IPv4 GIDs for this HCA and count by index\n for tpath in /sys/class/infiniband/${hca_name}/ports/1/gid_attrs/types/*; do\n if grep -q \"${KSERVE_INFER_IB_GID_INDEX_GREP}\" \"$tpath\" 2>/dev/null; then\n idx=$(basename \"$tpath\")\n gid_file=\"/sys/class/infiniband/${hca_name}/ports/1/gids/${idx}\"\n \ # Check for IPv4 GID (contains ffff:)\n if [ -f \"$gid_file\" ] && grep -q \"ffff:\" \"$gid_file\"; then\n gid_value=$(cat \"$gid_file\" 2>/dev/null || echo \"\")\n echo \"[Infer RoCE] Found IPv4 RoCE v2 GID for ${hca_name}: index=${idx}, gid=${gid_value}\"\n hca_gid_index[\"${hca_name}\"]=\"${idx}\"\n \ gid_index_count[\"${idx}\"]=$((${gid_index_count[\"${idx}\"]} + 1))\n break # Use first found IPv4 GID per HCA\n fi\n \ fi\n done\n done\n\n # Find the most common GID index (most likely to be consistent across nodes)\n best_gid_index=\"\"\n \ max_count=0\n for idx in \"${!gid_index_count[@]}\"; do\n count=${gid_index_count[\"${idx}\"]}\n \ echo \"[Infer RoCE] GID_INDEX ${idx} found on ${count} HCAs\"\n if [ $count -gt $max_count ]; then\n max_count=$count\n best_gid_index=\"$idx\"\n \ fi\n done\n\n # Use deterministic fallback if counts are equal - prefer lower index number \n if [ ${#gid_index_count[@]} -gt 1 ]; then\n \ echo \"[Infer RoCE] Multiple GID indices found, selecting most common: ${best_gid_index}\"\n # If there's a tie, prefer index 3 as it's most common in SR-IOV setups\n if [ -n \"${gid_index_count['3']}\" ] && [ \"${gid_index_count['3']}\" -eq \"$max_count\" ]; then\n best_gid_index=\"3\"\n \ echo \"[Infer RoCE] Using deterministic fallback: GID_INDEX=3 (SR-IOV standard)\"\n fi\n fi\n\n # Check if GID_INDEX is already set via environment variables\n if [ -n \"${NCCL_IB_GID_INDEX}\" ]; then\n echo \"[Infer RoCE] Using pre-configured NCCL_IB_GID_INDEX=${NCCL_IB_GID_INDEX} from environment\"\n export NVSHMEM_IB_GID_INDEX=${NVSHMEM_IB_GID_INDEX:-$NCCL_IB_GID_INDEX}\n \ export UCX_IB_GID_INDEX=${UCX_IB_GID_INDEX:-$NCCL_IB_GID_INDEX}\n echo \"[Infer RoCE] Using hardcoded GID_INDEX=${NCCL_IB_GID_INDEX} for NCCL, NVSHMEM, and UCX\"\n elif [ -n \"$best_gid_index\" ]; then\n echo \"[Infer RoCE] Selected GID_INDEX: ${best_gid_index} (found on ${max_count} HCAs)\"\n\n \ export NCCL_IB_GID_INDEX=${NCCL_IB_GID_INDEX:-$best_gid_index}\n export NVSHMEM_IB_GID_INDEX=${NVSHMEM_IB_GID_INDEX:-$best_gid_index}\n export UCX_IB_GID_INDEX=${UCX_IB_GID_INDEX:-$best_gid_index}\n\n echo \"[Infer RoCE] Exported GID_INDEX=${best_gid_index} for NCCL, NVSHMEM, and UCX\"\n else\n \ echo \"[Infer RoCE] ERROR: No valid IPv4 ${KSERVE_INFER_IB_GID_INDEX_GREP} GID_INDEX found on any HCA.\"\n fi\n else\n echo \"[Infer RoCE] No active HCAs found, skipping GID_INDEX inference.\"\n fi\nfi\n\neval \"vllm serve /mnt/models \\\n --served-model-name \"{{ .Spec.Model.Name }}\" \\\n --port 8001 \\\n ${VLLM_ADDITIONAL_ARGS} \\\n --enable-ssl-refresh \\\n --ssl-certfile /var/run/kserve/tls/tls.crt \\\n --ssl-keyfile /var/run/kserve/tls/tls.key\"] command:[/bin/bash -c] env:[map[name:HOME value:/home] map[name:VLLM_LOGGING_LEVEL value:INFO] map[name:HF_HUB_CACHE value:/models]] image:registry.redhat.io/rhaiis/vllm-cuda-rhel9@sha256:fc68d623d1bfc36c8cb2fe4a71f19c8578cfb420ce8ce07b20a02c1ee0be0cf3 imagePullPolicy:IfNotPresent livenessProbe:map[failureThreshold:%!s(int64=3) httpGet:map[path:/health port:%!s(int64=8001) scheme:HTTPS] initialDelaySeconds:%!s(int64=120) periodSeconds:%!s(int64=10) timeoutSeconds:%!s(int64=10)] name:main ports:[map[containerPort:%!s(int64=8001) protocol:TCP]] readinessProbe:map[failureThreshold:%!s(int64=60) httpGet:map[path:/health port:%!s(int64=8001) scheme:HTTPS] initialDelaySeconds:%!s(int64=10) periodSeconds:%!s(int64=10) timeoutSeconds:%!s(int64=5)] securityContext:map[allowPrivilegeEscalation:%!s(bool=false) capabilities:map[drop:[ALL]] readOnlyRootFilesystem:%!s(bool=false) runAsNonRoot:%!s(bool=true) seccompProfile:map[type:RuntimeDefault]] terminationMessagePath:/dev/termination-log terminationMessagePolicy:FallbackToLogsOnError volumeMounts:[map[mountPath:/home name:home] map[mountPath:/dev/shm name:dshm] map[mountPath:/models name:model-cache] map[mountPath:/var/run/kserve/tls name:tls-certs readOnly:%!s(bool=true)]]]] initContainers:[map[args:[--port=8000 --vllm-port=8001 --connector=nixlv2 --secure-proxy=true --cert-path=/var/run/kserve/tls --decoder-use-tls=true --prefiller-use-tls=true --enable-ssrf-protection=true --pool-group=inference.networking.x-k8s.io] env:[map[name:INFERENCE_POOL_NAMESPACE valueFrom:map[fieldRef:map[fieldPath:metadata.namespace]]] map[name:SSL_CERT_DIR value:/var/run/kserve/tls:/var/run/secrets/kubernetes.io/serviceaccount:/etc/pki/tls/certs]] image:quay.io/opendatahub/llm-d-routing-sidecar:release-v0.4 imagePullPolicy:IfNotPresent livenessProbe:map[failureThreshold:%!s(int64=3) httpGet:map[path:/health port:%!s(int64=8000) scheme:HTTPS] initialDelaySeconds:%!s(int64=10) periodSeconds:%!s(int64=10) timeoutSeconds:%!s(int64=10)] name:llm-d-routing-sidecar ports:[map[containerPort:%!s(int64=8000) protocol:TCP]] readinessProbe:map[failureThreshold:%!s(int64=10) httpGet:map[path:/health port:%!s(int64=8000) scheme:HTTPS] initialDelaySeconds:%!s(int64=10) periodSeconds:%!s(int64=10) timeoutSeconds:%!s(int64=5)] resources:map[] restartPolicy:Always securityContext:map[allowPrivilegeEscalation:%!s(bool=false) capabilities:map[drop:[ALL]] readOnlyRootFilesystem:%!s(bool=false) runAsNonRoot:%!s(bool=true)] terminationMessagePath:/dev/termination-log terminationMessagePolicy:FallbackToLogsOnError volumeMounts:[map[mountPath:/var/run/kserve/tls name:tls-certs readOnly:%!s(bool=true)]]]] terminationGracePeriodSeconds:%!s(int64=30) volumes:[map[emptyDir:map[] name:home] map[emptyDir:map[medium:Memory sizeLimit:1Gi] name:dshm] map[emptyDir:map[] name:model-cache] map[name:tls-certs secret:map[secretName:{{ ChildName .ObjectMeta.Name `-kserve-self-signed-certs` }}]]]]]]}: apply failed serving.kserve.io/v1alpha1, Kind=LLMInferenceServiceConfig: unable to patch serving.kserve.io/v1alpha1, Kind=LLMInferenceServiceConfig opendatahub/v3-4-0-ea-1-kserve-config-llm-decode-template: Internal error occurred: failed calling webhook \"llminferenceserviceconfig.kserve-webhook-server.validator\": failed to call webhook: Post \"https://kserve-webhook-server-service.opendatahub.svc:443/validate-serving-kserve-io-v1alpha1-llminferenceserviceconfig?timeout=10s\": no endpoints available for service \"kserve-webhook-server-service\"" metadata: creationTimestamp: "2026-06-11T16:49:55Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: manager operation: Update time: "2026-06-11T16:50:13Z" name: default-kserve.18b814ddd10d5d38 namespace: default resourceVersion: "17215" uid: 179ccdb5-a05b-45ef-be03-e043fa0809bd reason: ProvisioningError reportingComponent: kserve reportingInstance: "" source: component: kserve type: Warning - apiVersion: v1 count: 29 eventTime: null firstTimestamp: "2026-06-11T16:49:44Z" involvedObject: apiVersion: services.platform.opendatahub.io/v1alpha1 kind: Monitoring name: default-monitoring resourceVersion: "15795" uid: c764aee8-f41c-4be9-8fdf-42cf4f89890e kind: Event lastTimestamp: "2026-06-11T17:01:08Z" message: 'error fetching list of deployments: unable to list: opendatahub-monitoring because of unknown namespace for the cache' metadata: creationTimestamp: "2026-06-11T16:49:44Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: manager operation: Update time: "2026-06-11T17:01:08Z" name: default-monitoring.18b814db5b9e15e1 namespace: default resourceVersion: "32249" uid: de719a1f-8a59-4d9a-ba52-ca192298cd16 reason: ProvisioningError reportingComponent: monitoring reportingInstance: "" source: component: monitoring type: Warning - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:50Z" involvedObject: kind: Node name: ip-10-0-134-3.ec2.internal uid: ip-10-0-134-3.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:50Z" message: 'Node ip-10-0-134-3.ec2.internal status is now: NodeHasSufficientMemory' metadata: creationTimestamp: "2026-06-11T16:38:50Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:50Z" name: ip-10-0-134-3.ec2.internal.18b81442ff6467f5 namespace: default resourceVersion: "6487" uid: b95bbf3a-e9b4-484a-89cf-cc04cb99706e reason: NodeHasSufficientMemory reportingComponent: kubelet reportingInstance: ip-10-0-134-3.ec2.internal source: component: kubelet host: ip-10-0-134-3.ec2.internal type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:50Z" involvedObject: kind: Node name: ip-10-0-134-3.ec2.internal uid: ip-10-0-134-3.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:50Z" message: 'Node ip-10-0-134-3.ec2.internal status is now: NodeHasNoDiskPressure' metadata: creationTimestamp: "2026-06-11T16:38:50Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:50Z" name: ip-10-0-134-3.ec2.internal.18b81442ff64b531 namespace: default resourceVersion: "6495" uid: b2c8c275-7916-4d78-aae6-82f64dea6ca5 reason: NodeHasNoDiskPressure reportingComponent: kubelet reportingInstance: ip-10-0-134-3.ec2.internal source: component: kubelet host: ip-10-0-134-3.ec2.internal type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:50Z" involvedObject: kind: Node name: ip-10-0-134-3.ec2.internal uid: ip-10-0-134-3.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:50Z" message: 'Node ip-10-0-134-3.ec2.internal status is now: NodeHasSufficientPID' metadata: creationTimestamp: "2026-06-11T16:38:50Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:50Z" name: ip-10-0-134-3.ec2.internal.18b81442ff64de3a namespace: default resourceVersion: "6499" uid: 664b873f-a48d-4ffd-9acb-34b0c6e2a9d4 reason: NodeHasSufficientPID reportingComponent: kubelet reportingInstance: ip-10-0-134-3.ec2.internal source: component: kubelet host: ip-10-0-134-3.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:50Z" involvedObject: kind: Node name: ip-10-0-134-3.ec2.internal uid: ip-10-0-134-3.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:50Z" message: Updated Node Allocatable limit across pods metadata: creationTimestamp: "2026-06-11T16:38:50Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:50Z" name: ip-10-0-134-3.ec2.internal.18b8144302ad29b0 namespace: default resourceVersion: "6444" uid: 80545efd-9360-46c0-a42b-0b03f3263e75 reason: NodeAllocatableEnforced reportingComponent: kubelet reportingInstance: ip-10-0-134-3.ec2.internal source: component: kubelet host: ip-10-0-134-3.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:50Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-134-3.ec2.internal resourceVersion: "6448" uid: 01358619-0cff-464c-80a0-0c0703a8501c kind: Event lastTimestamp: "2026-06-11T16:38:50Z" message: Node synced successfully metadata: creationTimestamp: "2026-06-11T16:38:50Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: aws-cloud-controller-manager operation: Update time: "2026-06-11T16:38:50Z" name: ip-10-0-134-3.ec2.internal.18b8144314fe9e53 namespace: default resourceVersion: "6502" uid: 1cb2ebd1-87c0-4b92-9d19-12317e2f52d8 reason: Synced reportingComponent: cloud-node-controller reportingInstance: "" source: component: cloud-node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:54Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-134-3.ec2.internal uid: 01358619-0cff-464c-80a0-0c0703a8501c kind: Event lastTimestamp: "2026-06-11T16:38:54Z" message: 'Node ip-10-0-134-3.ec2.internal event: Registered Node ip-10-0-134-3.ec2.internal in Controller' metadata: creationTimestamp: "2026-06-11T16:38:54Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: kube-controller-manager operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-134-3.ec2.internal.18b81443ec40288f namespace: default resourceVersion: "6763" uid: e47594a2-033b-4811-abd4-fc90b98f0758 reason: RegisteredNode reportingComponent: node-controller reportingInstance: "" source: component: node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:39:19Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-134-3.ec2.internal resourceVersion: "7262" uid: 01358619-0cff-464c-80a0-0c0703a8501c kind: Event lastTimestamp: "2026-06-11T16:39:19Z" message: '[k8s.ovn.org/node-chassis-id annotation not found for node ip-10-0-134-3.ec2.internal, error getting gateway config for node ip-10-0-134-3.ec2.internal: k8s.ovn.org/l3-gateway-config annotation not found for node "ip-10-0-134-3.ec2.internal", failed to update chassis to local for local node ip-10-0-134-3.ec2.internal, error: failed to parse node chassis-id for node - ip-10-0-134-3.ec2.internal, error: k8s.ovn.org/node-chassis-id annotation not found for node ip-10-0-134-3.ec2.internal]' metadata: creationTimestamp: "2026-06-11T16:39:19Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: ip-10-0-134-3 operation: Update time: "2026-06-11T16:39:19Z" name: ip-10-0-134-3.ec2.internal.18b81449c1ec83d2 namespace: default resourceVersion: "7263" uid: e12e10b5-97f4-4056-9c80-972ddaa78a37 reason: ErrorAddingResource reportingComponent: ovnk-controlplane reportingInstance: "" source: component: ovnk-controlplane type: Warning - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:39:25Z" involvedObject: kind: Node name: ip-10-0-134-3.ec2.internal uid: ip-10-0-134-3.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:39:25Z" message: 'Node ip-10-0-134-3.ec2.internal status is now: NodeReady' metadata: creationTimestamp: "2026-06-11T16:39:25Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:39:25Z" name: ip-10-0-134-3.ec2.internal.18b8144b268cb15c namespace: default resourceVersion: "7373" uid: 607c703e-54c5-43b4-b280-9f0aac2f1375 reason: NodeReady reportingComponent: kubelet reportingInstance: ip-10-0-134-3.ec2.internal source: component: kubelet host: ip-10-0-134-3.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:42:12Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-134-3.ec2.internal uid: 01358619-0cff-464c-80a0-0c0703a8501c kind: Event lastTimestamp: "2026-06-11T16:42:12Z" message: 'Node ip-10-0-134-3.ec2.internal event: Registered Node ip-10-0-134-3.ec2.internal in Controller' metadata: creationTimestamp: "2026-06-11T16:42:12Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: kube-controller-manager operation: Update time: "2026-06-11T16:42:12Z" name: ip-10-0-134-3.ec2.internal.18b814720a0c78b1 namespace: default resourceVersion: "8990" uid: 8ed25113-50e9-4af3-8a34-614e1bb6d831 reason: RegisteredNode reportingComponent: node-controller reportingInstance: "" source: component: node-controller type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:53Z" involvedObject: kind: Node name: ip-10-0-139-153.ec2.internal uid: ip-10-0-139-153.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:53Z" message: 'Node ip-10-0-139-153.ec2.internal status is now: NodeHasSufficientMemory' metadata: creationTimestamp: "2026-06-11T16:38:53Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-139-153.ec2.internal.18b81443bcb4f623 namespace: default resourceVersion: "6733" uid: b93fd7de-95cd-4721-a1e1-6956a8440512 reason: NodeHasSufficientMemory reportingComponent: kubelet reportingInstance: ip-10-0-139-153.ec2.internal source: component: kubelet host: ip-10-0-139-153.ec2.internal type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:53Z" involvedObject: kind: Node name: ip-10-0-139-153.ec2.internal uid: ip-10-0-139-153.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:53Z" message: 'Node ip-10-0-139-153.ec2.internal status is now: NodeHasNoDiskPressure' metadata: creationTimestamp: "2026-06-11T16:38:53Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-139-153.ec2.internal.18b81443bcb55023 namespace: default resourceVersion: "6741" uid: 9943fee4-2094-44cf-887c-86917aedd9ea reason: NodeHasNoDiskPressure reportingComponent: kubelet reportingInstance: ip-10-0-139-153.ec2.internal source: component: kubelet host: ip-10-0-139-153.ec2.internal type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:53Z" involvedObject: kind: Node name: ip-10-0-139-153.ec2.internal uid: ip-10-0-139-153.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:53Z" message: 'Node ip-10-0-139-153.ec2.internal status is now: NodeHasSufficientPID' metadata: creationTimestamp: "2026-06-11T16:38:53Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-139-153.ec2.internal.18b81443bcb588f7 namespace: default resourceVersion: "6744" uid: d1013ab7-26ab-43af-a371-d5936623ae78 reason: NodeHasSufficientPID reportingComponent: kubelet reportingInstance: ip-10-0-139-153.ec2.internal source: component: kubelet host: ip-10-0-139-153.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:53Z" involvedObject: kind: Node name: ip-10-0-139-153.ec2.internal uid: ip-10-0-139-153.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:53Z" message: Updated Node Allocatable limit across pods metadata: creationTimestamp: "2026-06-11T16:38:53Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:53Z" name: ip-10-0-139-153.ec2.internal.18b81443bf2c69f2 namespace: default resourceVersion: "6647" uid: dbe1721e-a24f-40fa-9e00-11403aead833 reason: NodeAllocatableEnforced reportingComponent: kubelet reportingInstance: ip-10-0-139-153.ec2.internal source: component: kubelet host: ip-10-0-139-153.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:54Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-139-153.ec2.internal resourceVersion: "6651" uid: 2d6f6cb7-2c14-4c35-a417-6e27588f2a0b kind: Event lastTimestamp: "2026-06-11T16:38:54Z" message: Node synced successfully metadata: creationTimestamp: "2026-06-11T16:38:54Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: aws-cloud-controller-manager operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-139-153.ec2.internal.18b81443d2acd62a namespace: default resourceVersion: "6753" uid: 6e4a788a-bbd7-4148-be7b-a8bf4fd101da reason: Synced reportingComponent: cloud-node-controller reportingInstance: "" source: component: cloud-node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:54Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-139-153.ec2.internal uid: 2d6f6cb7-2c14-4c35-a417-6e27588f2a0b kind: Event lastTimestamp: "2026-06-11T16:38:54Z" message: 'Node ip-10-0-139-153.ec2.internal event: Registered Node ip-10-0-139-153.ec2.internal in Controller' metadata: creationTimestamp: "2026-06-11T16:38:54Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: kube-controller-manager operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-139-153.ec2.internal.18b81443ec408d44 namespace: default resourceVersion: "6764" uid: 433d0d57-ea8a-4c5c-8de5-33d5f291dcc0 reason: RegisteredNode reportingComponent: node-controller reportingInstance: "" source: component: node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:39:23Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-139-153.ec2.internal resourceVersion: "7339" uid: 2d6f6cb7-2c14-4c35-a417-6e27588f2a0b kind: Event lastTimestamp: "2026-06-11T16:39:23Z" message: '[k8s.ovn.org/node-chassis-id annotation not found for node ip-10-0-139-153.ec2.internal, error getting gateway config for node ip-10-0-139-153.ec2.internal: k8s.ovn.org/l3-gateway-config annotation not found for node "ip-10-0-139-153.ec2.internal", failed to update chassis to local for local node ip-10-0-139-153.ec2.internal, error: failed to parse node chassis-id for node - ip-10-0-139-153.ec2.internal, error: k8s.ovn.org/node-chassis-id annotation not found for node ip-10-0-139-153.ec2.internal]' metadata: creationTimestamp: "2026-06-11T16:39:23Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: ip-10-0-139-153 operation: Update time: "2026-06-11T16:39:23Z" name: ip-10-0-139-153.ec2.internal.18b8144ab4094dc0 namespace: default resourceVersion: "7343" uid: 60e97620-b5a8-486b-9fc2-7723cf15c520 reason: ErrorAddingResource reportingComponent: ovnk-controlplane reportingInstance: "" source: component: ovnk-controlplane type: Warning - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:39:29Z" involvedObject: kind: Node name: ip-10-0-139-153.ec2.internal uid: ip-10-0-139-153.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:39:29Z" message: 'Node ip-10-0-139-153.ec2.internal status is now: NodeReady' metadata: creationTimestamp: "2026-06-11T16:39:29Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:39:29Z" name: ip-10-0-139-153.ec2.internal.18b8144bfb68c30c namespace: default resourceVersion: "7485" uid: 1cee182e-a56a-4d50-b86c-0153183b0086 reason: NodeReady reportingComponent: kubelet reportingInstance: ip-10-0-139-153.ec2.internal source: component: kubelet host: ip-10-0-139-153.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:42:12Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-139-153.ec2.internal uid: 2d6f6cb7-2c14-4c35-a417-6e27588f2a0b kind: Event lastTimestamp: "2026-06-11T16:42:12Z" message: 'Node ip-10-0-139-153.ec2.internal event: Registered Node ip-10-0-139-153.ec2.internal in Controller' metadata: creationTimestamp: "2026-06-11T16:42:12Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: kube-controller-manager operation: Update time: "2026-06-11T16:42:12Z" name: ip-10-0-139-153.ec2.internal.18b814720a0e2f87 namespace: default resourceVersion: "8993" uid: 56d56d19-3a39-4ccc-b192-57831d26ff7d reason: RegisteredNode reportingComponent: node-controller reportingInstance: "" source: component: node-controller type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:19Z" involvedObject: kind: Node name: ip-10-0-141-154.ec2.internal uid: ip-10-0-141-154.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:19Z" message: 'Node ip-10-0-141-154.ec2.internal status is now: NodeHasSufficientMemory' metadata: creationTimestamp: "2026-06-11T16:38:19Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:20Z" name: ip-10-0-141-154.ec2.internal.18b8143bd374a61e namespace: default resourceVersion: "6011" uid: 8c8b3081-41f5-4226-9330-81c7363292a3 reason: NodeHasSufficientMemory reportingComponent: kubelet reportingInstance: ip-10-0-141-154.ec2.internal source: component: kubelet host: ip-10-0-141-154.ec2.internal type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:19Z" involvedObject: kind: Node name: ip-10-0-141-154.ec2.internal uid: ip-10-0-141-154.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:19Z" message: 'Node ip-10-0-141-154.ec2.internal status is now: NodeHasNoDiskPressure' metadata: creationTimestamp: "2026-06-11T16:38:19Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:20Z" name: ip-10-0-141-154.ec2.internal.18b8143bd374e807 namespace: default resourceVersion: "6012" uid: e47d1b34-da73-4e83-992f-ffc2b4b878bd reason: NodeHasNoDiskPressure reportingComponent: kubelet reportingInstance: ip-10-0-141-154.ec2.internal source: component: kubelet host: ip-10-0-141-154.ec2.internal type: Normal - apiVersion: v1 count: 7 eventTime: null firstTimestamp: "2026-06-11T16:38:19Z" involvedObject: kind: Node name: ip-10-0-141-154.ec2.internal uid: ip-10-0-141-154.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:19Z" message: 'Node ip-10-0-141-154.ec2.internal status is now: NodeHasSufficientPID' metadata: creationTimestamp: "2026-06-11T16:38:19Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:20Z" name: ip-10-0-141-154.ec2.internal.18b8143bd3750af7 namespace: default resourceVersion: "6014" uid: da44a4ff-4883-4bcb-97d2-bbfb3c0fe495 reason: NodeHasSufficientPID reportingComponent: kubelet reportingInstance: ip-10-0-141-154.ec2.internal source: component: kubelet host: ip-10-0-141-154.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:19Z" involvedObject: kind: Node name: ip-10-0-141-154.ec2.internal uid: ip-10-0-141-154.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:19Z" message: Updated Node Allocatable limit across pods metadata: creationTimestamp: "2026-06-11T16:38:19Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:19Z" name: ip-10-0-141-154.ec2.internal.18b8143bd6429cc1 namespace: default resourceVersion: "5977" uid: fc711c5d-39bf-4e83-ba3e-df8e0d81fd12 reason: NodeAllocatableEnforced reportingComponent: kubelet reportingInstance: ip-10-0-141-154.ec2.internal source: component: kubelet host: ip-10-0-141-154.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:20Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-141-154.ec2.internal resourceVersion: "5980" uid: ac4903b0-fbec-4048-92d0-94e74db1f3c7 kind: Event lastTimestamp: "2026-06-11T16:38:20Z" message: Node synced successfully metadata: creationTimestamp: "2026-06-11T16:38:20Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: aws-cloud-controller-manager operation: Update time: "2026-06-11T16:38:20Z" name: ip-10-0-141-154.ec2.internal.18b8143bec88fa9d namespace: default resourceVersion: "6052" uid: 237be49a-747c-4cd5-a2dd-b59c41f159df reason: Synced reportingComponent: cloud-node-controller reportingInstance: "" source: component: cloud-node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:24Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-141-154.ec2.internal uid: ac4903b0-fbec-4048-92d0-94e74db1f3c7 kind: Event lastTimestamp: "2026-06-11T16:38:24Z" message: 'Node ip-10-0-141-154.ec2.internal event: Registered Node ip-10-0-141-154.ec2.internal in Controller' metadata: creationTimestamp: "2026-06-11T16:38:24Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: kube-controller-manager operation: Update time: "2026-06-11T16:38:24Z" name: ip-10-0-141-154.ec2.internal.18b8143cefcb5f9f namespace: default resourceVersion: "6182" uid: fff2d2ac-4ba1-4751-9233-dd50b529b6f7 reason: RegisteredNode reportingComponent: node-controller reportingInstance: "" source: component: node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:48Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-141-154.ec2.internal resourceVersion: "6417" uid: ac4903b0-fbec-4048-92d0-94e74db1f3c7 kind: Event lastTimestamp: "2026-06-11T16:38:48Z" message: '[k8s.ovn.org/node-chassis-id annotation not found for node ip-10-0-141-154.ec2.internal, error getting gateway config for node ip-10-0-141-154.ec2.internal: k8s.ovn.org/l3-gateway-config annotation not found for node "ip-10-0-141-154.ec2.internal", failed to update chassis to local for local node ip-10-0-141-154.ec2.internal, error: failed to parse node chassis-id for node - ip-10-0-141-154.ec2.internal, error: k8s.ovn.org/node-chassis-id annotation not found for node ip-10-0-141-154.ec2.internal]' metadata: creationTimestamp: "2026-06-11T16:38:48Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: ip-10-0-141-154 operation: Update time: "2026-06-11T16:38:48Z" name: ip-10-0-141-154.ec2.internal.18b81442875e37cc namespace: default resourceVersion: "6419" uid: b7cc1f8d-4311-4e16-b1d1-f876096b48f5 reason: ErrorAddingResource reportingComponent: ovnk-controlplane reportingInstance: "" source: component: ovnk-controlplane type: Warning - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:38:54Z" involvedObject: kind: Node name: ip-10-0-141-154.ec2.internal uid: ip-10-0-141-154.ec2.internal kind: Event lastTimestamp: "2026-06-11T16:38:54Z" message: 'Node ip-10-0-141-154.ec2.internal status is now: NodeReady' metadata: creationTimestamp: "2026-06-11T16:38:54Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:reportingInstance: {} f:source: f:component: {} f:host: {} f:type: {} manager: kubelet operation: Update time: "2026-06-11T16:38:54Z" name: ip-10-0-141-154.ec2.internal.18b81443f052286d namespace: default resourceVersion: "6767" uid: 5c2ec469-da25-478b-8986-eedba7042df8 reason: NodeReady reportingComponent: kubelet reportingInstance: ip-10-0-141-154.ec2.internal source: component: kubelet host: ip-10-0-141-154.ec2.internal type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:42:12Z" involvedObject: apiVersion: v1 kind: Node name: ip-10-0-141-154.ec2.internal uid: ac4903b0-fbec-4048-92d0-94e74db1f3c7 kind: Event lastTimestamp: "2026-06-11T16:42:12Z" message: 'Node ip-10-0-141-154.ec2.internal event: Registered Node ip-10-0-141-154.ec2.internal in Controller' metadata: creationTimestamp: "2026-06-11T16:42:12Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: kube-controller-manager operation: Update time: "2026-06-11T16:42:12Z" name: ip-10-0-141-154.ec2.internal.18b814720a0e5769 namespace: default resourceVersion: "8996" uid: c4241d69-6d74-4346-ba16-d8f0f7dedf7e reason: RegisteredNode reportingComponent: node-controller reportingInstance: "" source: component: node-controller type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:50:59Z" involvedObject: apiVersion: v1 kind: Namespace name: kuadrant-system resourceVersion: "18148" uid: d375def0-76f4-4147-84de-8fc9d2a232d9 kind: Event lastTimestamp: "2026-06-11T16:50:59Z" message: 'error using catalogsource kuadrant-system/kuadrant-operator-catalog: failed to list bundles: rpc error: code = Unavailable desc = connection error: desc = "error reading server preface: http2: frame too large"' metadata: creationTimestamp: "2026-06-11T16:50:59Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:count: {} f:firstTimestamp: {} f:involvedObject: {} f:lastTimestamp: {} f:message: {} f:reason: {} f:reportingComponent: {} f:source: f:component: {} f:type: {} manager: catalog operation: Update time: "2026-06-11T16:50:59Z" name: kuadrant-system.18b814ecb5ca3950 namespace: default resourceVersion: "18578" uid: 16b4974d-944b-43d1-9f47-652c192b540a reason: ResolutionFailed reportingComponent: operator-lifecycle-manager reportingInstance: "" source: component: operator-lifecycle-manager type: Warning - apiVersion: v1 eventTime: null firstTimestamp: null involvedObject: apiVersion: v1 kind: Namespace name: kube-system namespace: default kind: Event lastTimestamp: null message: Received signal to terminate, becoming unready, but keeping serving metadata: creationTimestamp: "2026-06-11T16:41:52Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:involvedObject: {} f:message: {} f:reason: {} f:source: f:component: {} f:host: {} f:type: {} manager: openshift-apiserver operation: Update time: "2026-06-11T16:41:52Z" name: kube-system.18b8146d731f7b58 namespace: default resourceVersion: "8656" uid: e32491e7-8e89-4233-be08-17e1267c62d5 reason: TerminationStart reportingComponent: "" reportingInstance: "" source: component: apiserver host: openshift-apiserver-845bcb4674-st7lv type: Normal - apiVersion: v1 eventTime: null firstTimestamp: null involvedObject: apiVersion: v1 kind: Namespace name: kube-system namespace: default kind: Event lastTimestamp: null message: The minimal shutdown duration of 15s finished metadata: creationTimestamp: "2026-06-11T16:42:07Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:involvedObject: {} f:message: {} f:reason: {} f:source: f:component: {} f:host: {} f:type: {} manager: openshift-apiserver operation: Update time: "2026-06-11T16:42:07Z" name: kube-system.18b81470f19b69b3 namespace: default resourceVersion: "8921" uid: 70159d55-7d3a-40cd-b08f-f65a7f4ef2af reason: TerminationMinimalShutdownDurationFinished reportingComponent: "" reportingInstance: "" source: component: apiserver host: openshift-apiserver-845bcb4674-st7lv type: Normal - apiVersion: v1 eventTime: null firstTimestamp: null involvedObject: apiVersion: v1 kind: Namespace name: kube-system namespace: default kind: Event lastTimestamp: null message: Server has stopped listening metadata: creationTimestamp: "2026-06-11T16:42:07Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:involvedObject: {} f:message: {} f:reason: {} f:source: f:component: {} f:host: {} f:type: {} manager: openshift-apiserver operation: Update time: "2026-06-11T16:42:07Z" name: kube-system.18b81470f1d0db21 namespace: default resourceVersion: "8922" uid: 2182e917-72dc-4f58-9ff6-4833218ecc22 reason: TerminationStoppedServing reportingComponent: "" reportingInstance: "" source: component: apiserver host: openshift-apiserver-845bcb4674-st7lv type: Normal - apiVersion: v1 eventTime: null firstTimestamp: null involvedObject: apiVersion: v1 kind: Namespace name: kube-system namespace: default kind: Event lastTimestamp: null message: All pre-shutdown hooks have been finished metadata: creationTimestamp: "2026-06-11T16:42:07Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:involvedObject: {} f:message: {} f:reason: {} f:source: f:component: {} f:host: {} f:type: {} manager: openshift-apiserver operation: Update time: "2026-06-11T16:42:07Z" name: kube-system.18b81470f20be4ed namespace: default resourceVersion: "8923" uid: 4c043cd7-93ee-456b-991f-c720eff24a54 reason: TerminationPreShutdownHooksFinished reportingComponent: "" reportingInstance: "" source: component: apiserver host: openshift-apiserver-845bcb4674-st7lv type: Normal - apiVersion: v1 eventTime: null firstTimestamp: null involvedObject: apiVersion: v1 kind: Namespace name: kube-system namespace: default kind: Event lastTimestamp: null message: All pending requests processed metadata: creationTimestamp: "2026-06-11T16:43:07Z" managedFields: - apiVersion: v1 fieldsType: FieldsV1 fieldsV1: f:involvedObject: {} f:message: {} f:reason: {} f:source: f:component: {} f:host: {} f:type: {} manager: openshift-apiserver operation: Update time: "2026-06-11T16:43:07Z" name: kube-system.18b8147eea2c62f9 namespace: default resourceVersion: "10552" uid: ed90123a-d0d0-46eb-af5d-4e614827c483 reason: TerminationGracefulTerminationFinished reportingComponent: "" reportingInstance: "" source: component: apiserver host: openshift-apiserver-845bcb4674-st7lv type: Normal - apiVersion: v1 count: 1 eventTime: null firstTimestamp: "2026-06-11T16:30:34Z" involvedObject: apiVersion: v1 kind: Namespace name: openshift-kube-apiserver namespace: default kind: Event lastTimestamp: "2026-06-11T16:30:34Z" message: readyz=true metadata: creationTimestamp: "2026-06-11T16:30:34Z" name: openshift-kube-apiserver.18b813cf67307d91 namespace: default resourceVersion: "278" uid: 017d0c05-3c51-48e6-82ac-e8a4e2f5f784 reason: KubeAPIReadyz reportingComponent: "" reportingInstance: "" source: component: apiserver host: kube-apiserver-79c8cf55fc-d9rds type: Warning kind: EventList metadata: resourceVersion: "44499"