# # Copyright (c) 2021 Ant Group # # SPDX-License-Identifier: Apache-2.0 # apiVersion: v1 kind: Pod metadata: name: test-readonly-volume spec: terminationGracePeriodSeconds: 0 runtimeClassName: kata restartPolicy: Never volumes: - name: shared-data hostPath: path: /tmp type: Directory containers: - name: busybox-ro-volume-container image: quay.io/prometheus/busybox:latest volumeMounts: - name: shared-data mountPath: /tmp readOnly: true command: ["/bin/sh"] args: ["-c", "tail -f /dev/null"]