aboutsummaryrefslogtreecommitdiffstats
path: root/kud/tests/qat.sh
blob: 98c0bb72ad0a021b84f9524b12def42023455500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

set -o pipefail

qat_capable_nodes=$(kubectl get nodes -o json | jq -r '.items[] | select((.status.capacity."qat.intel.com/cy2_dc2"!=null) and ((.status.capacity."qat.intel.com/cy2_dc2"|tonumber)>=1)) | .metadata.name')
if [ -z "$qat_capable_nodes" ]; then
    echo "This test case cannot run. QAT device unavailable."
    QAT_ENABLED=False
    exit 0
else
    echo "Can run QAT on this cluster."
    QAT_ENABLED=True
fi

pod_name=pod-case-01
rm -f $HOME/$pod_name.yaml
kubectl delete pod $pod_name --ignore-not-found=true --now --wait
allocated_node_resource=$(kubectl describe node | grep "qat.intel.com" | tail -n1 |awk '{print $(NF)}')
echo "The allocated resource of the node is: " $allocated_node_resource
cat << POD > $HOME/$pod_name.yaml
kind: Pod
apiVersion: v1
metadata:
  name: pod-case-01
spec:
  containers:
  - name: pod-case-01
    image: integratedcloudnative/openssl-qat-engine:devel
    imagePullPolicy: IfNotPresent
    volumeMounts:
            - mountPath: /dev
              name: dev-mount
            - mountPath: /etc/c6xxvf_dev0.conf
              name: dev0
    command: [ "/bin/bash", "-c", "--" ]
    args: [ "while true; do sleep 300000; done;" ]
    resources:
      requests:
        qat.intel.com/cy2_dc2: '1'
      limits:
        qat.intel.com/cy2_dc2: '1'
  volumes:
  - name: dev-mount
    hostPath:
        path: /dev
  - name: dev0
    hostPath:
        path: /etc/c6xxvf_dev0.conf
POD
kubectl create -f $HOME/$pod_name.yaml --validate=false
    for pod in $pod_name; do
        status_phase=""
        while [[ $status_phase != "Running" ]]; do
            new_phase=$(kubectl get pods $pod | awk 'NR==2{print $3}')
            if [[ $new_phase != $status_phase ]]; then
                echo "$(date +%H:%M:%S) - $pod : $new_phase"
                status_phase=$new_phase
            fi
            if [[ $new_phase == "Running" ]]; then
                echo "Pod is up and running.."
            fi
            if [[ $new_phase == "Err"* ]]; then
                exit 1
            fi
        done
    done

allocated_node_resource=$(kubectl describe node | grep "qat.intel.com" | tail -n1 |awk '{print $(NF)}')
echo "The allocated resource of the node is: " $allocated_node_resource
kubectl exec pod-case-01 -- openssl engine -c -t qat

kubectl delete pod $pod_name --now
echo "Test complete."