mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-13 11:49:44 +00:00
Do not kill containers immediately, instead use Kubernetes' default termination grace period. Signed-off-by: Manuel Huber <manuelh@nvidia.com>
19 lines
315 B
YAML
19 lines
315 B
YAML
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: POD_NAME
|
|
spec:
|
|
runtimeClassName: kata
|
|
shareProcessNamespace: true
|
|
containers:
|
|
- name: CTR_NAME
|
|
image: quay.io/prometheus/busybox:latest
|
|
command:
|
|
- sleep
|
|
- "120"
|