mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-12 18:46:35 +00:00
Do not kill containers immediately, instead use Kubernetes' default termination grace period. Signed-off-by: Manuel Huber <manuelh@nvidia.com>
24 lines
489 B
YAML
24 lines
489 B
YAML
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: handlers
|
|
spec:
|
|
runtimeClassName: kata
|
|
containers:
|
|
- name: handlers-container
|
|
image: ${NGINX_IMAGE}
|
|
imagePullPolicy: Always
|
|
lifecycle:
|
|
postStart:
|
|
exec:
|
|
command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]
|
|
preStop:
|
|
exec:
|
|
command: ["/usr/sbin/nginx","-s","quit"]
|