kubernetes/staging/src/k8s.io/pod-security-admission/test/testdata/restricted/v1.19/fail/hostpathvolumes1.yaml

apiVersion: v1
kind: Pod
metadata:
  name: hostpathvolumes1
spec:
  containers:
  - image: registry.k8s.io/pause
    name: container1
    securityContext:
      allowPrivilegeEscalation: false
  initContainers:
  - image: registry.k8s.io/pause
    name: initcontainer1
    securityContext:
      allowPrivilegeEscalation: false
  securityContext:
    runAsNonRoot: true
    seccompProfile:
      type: RuntimeDefault
  volumes:
  - hostPath:
      path: /a
    name: volume-hostpath-a
  - hostPath:
      path: /b
    name: volume-hostpath-b