github.com/kata-containers/tests@v0.0.0-20240307153542-772105b56064/integration/kubernetes/runtimeclass_workloads/pv-pod.yaml (about)

     1  #
     2  # Copyright (c) 2018 Intel Corporation
     3  #
     4  # SPDX-License-Identifier: Apache-2.0
     5  #
     6  kind: Pod
     7  apiVersion: v1
     8  metadata:
     9    name: pv-pod
    10  spec:
    11    terminationGracePeriodSeconds: 0
    12    runtimeClassName: kata
    13    volumes:
    14      - name: pv-storage
    15        persistentVolumeClaim:
    16         claimName: pv-claim
    17    containers:
    18      - name: pv-container
    19        image: quay.io/prometheus/busybox:latest
    20        ports:
    21        command:
    22          - sleep
    23          - "120"
    24        volumeMounts:
    25          - mountPath: "/mnt/"
    26            name: pv-storage