Files
kata-containers/tests/stability/runtimeclass_workloads/pod-deployment.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

24 lines
464 B
YAML

# Copyright (c) 2024 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
apiVersion: apps/v1
kind: Deployment
metadata:
name: deploymenttest
spec:
selector:
matchLabels:
purpose: pod-test
replicas: 2
template:
metadata:
labels:
purpose: pod-test
spec:
runtimeClassName: kata
containers:
- name: pod-test
image: quay.io/prometheus/busybox:latest
command: ["tail", "-f", "/dev/null"]