github.com/kata-containers/tests@v0.0.0-20240307153542-772105b56064/integration/kubernetes/runtimeclass_workloads/pod-http-liveness.yaml (about) 1 # 2 # Copyright (c) 2019 Intel Corporation 3 # 4 # SPDX-License-Identifier: Apache-2.0 5 # 6 apiVersion: v1 7 kind: Pod 8 metadata: 9 labels: 10 test: liveness-test 11 name: liveness-http 12 spec: 13 terminationGracePeriodSeconds: 0 14 runtimeClassName: kata 15 containers: 16 - name: liveness 17 image: ${agnhost_image} 18 args: 19 - liveness 20 livenessProbe: 21 httpGet: 22 path: /healthz 23 port: 8080 24 initialDelaySeconds: 3 25 periodSeconds: 3