mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00

This commit adds bash scripts with the proper granularity for each sub-stage, needed for QAT device main stage validation. Signed-off-by: Rivera Gonzalez, Julio C <julio.c.rivera.gonzalez@intel.com>
17 lines
275 B
Bash
Executable File
17 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright 2019 Intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Show all logs related with qat.
|
|
|
|
set -o pipefail
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
PODS=$(kubectl get pods | grep -i qat | awk '{print $1}')
|
|
for pod in $PODS; do
|
|
kubectl logs $pod
|
|
done
|