diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 7c72a07..ec1d089 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -94,18 +94,24 @@ jobs: echo "=== Node resources ===" kubectl describe node thalamus-e2e-control-plane | grep -A20 "Allocated resources" echo "=== Pods ===" - kubectl get pods -n thalamus -o wide - kubectl get pods -n agentgateway-system -o wide - echo "=== vllm pod describe ===" - kubectl describe pod -n thalamus -l app=vllm-tiny-llm || true - echo "=== Model logs (current) ===" - kubectl logs -n thalamus -l app=vllm-tiny-llm || true - echo "=== Model logs (previous) ===" - kubectl logs -n thalamus -l app=vllm-tiny-llm --previous || true - echo "=== EPP logs ===" - kubectl logs -n thalamus -l inferencepool=vllm-tiny-llm-epp || true - echo "=== agentgateway logs ===" - kubectl logs -n agentgateway-system \ - -l app.kubernetes.io/name=agentgateway || true + kubectl get pods -A -o json \ + | jq -r ' + .items[] + | select( + any(.status.containerStatuses[]?; + .ready == false + ) + ) + | "\(.metadata.namespace) \(.metadata.name)" + ' \ + | while read ns pod; do + echo "===== $ns/$pod (current) =====" + kubectl logs -n "$ns" "$pod" --all-containers=true --prefix=true || true + + echo "===== $ns/$pod (previous) =====" + kubectl logs -n "$ns" "$pod" --all-containers=true --previous --prefix=true || true + + echo + done echo "=== Gateway / HTTPRoutes / InferencePools ===" kubectl get gateway,httproutes,inferencepools -n thalamus -o yaml diff --git a/helm/example.values.cpu.yaml b/helm/example.values.cpu.yaml index 6c321c1..8d7605d 100644 --- a/helm/example.values.cpu.yaml +++ b/helm/example.values.cpu.yaml @@ -1,11 +1,6 @@ # SPDX-FileCopyrightText: Copyright 2026 SAP SE or an SAP affiliate company and cobaltcore-dev contributors # SPDX-License-Identifier: Apache-2.0 -node-feature-discovery: - enabled: false -gpu-operator: - enabled: false - thalamus: models: - slug: tiny-llm diff --git a/test/e2e/values.yaml b/test/e2e/values.yaml index 52de3d2..3672336 100644 --- a/test/e2e/values.yaml +++ b/test/e2e/values.yaml @@ -1,11 +1,6 @@ # SPDX-FileCopyrightText: Copyright 2026 SAP SE or an SAP affiliate company and cobaltcore-dev contributors # SPDX-License-Identifier: Apache-2.0 -kube-prometheus-stack: - enabled: false -open-webui: - enabled: false - thalamus: operator: enabled: false