kata-containers/tests/stability/runtimeclass_workloads/pod-deployment.yaml
Gabriela Cervantes 27d5539954 stability: Add pod deployment yaml for soak test
This PR adds the pod deployment yaml for soak test which is part
of the stability k8s tests.

Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
2024-08-21 14:23:22 +00:00

25 lines
503 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:
terminationGracePeriodSeconds: 0
runtimeClassName: kata
containers:
- name: pod-test
image: quay.io/prometheus/busybox:latest
command: ["tail", "-f", "/dev/null"]