Files
kata-containers/tests/integration/kubernetes/runtimeclass_workloads/pod-number-cpu.yaml
Manuel Huber 6438fe7f2d tests: Remove terminationGracePeriod in manifests
Do not kill containers immediately, instead use Kubernetes'
default termination grace period.

Signed-off-by: Manuel Huber <manuelh@nvidia.com>
2026-01-23 16:18:44 -08:00

27 lines
475 B
YAML

#
# Copyright (c) 2019 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
apiVersion: v1
kind: Pod
metadata:
name: cpu-test
spec:
runtimeClassName: kata
containers:
- name: c1
image: quay.io/prometheus/busybox:latest
command: ["tail", "-f", "/dev/null"]
resources:
limits:
cpu: "500m"
- name: c2
image: quay.io/prometheus/busybox:latest
command:
- sleep
- "10"
resources:
limits:
cpu: "500m"