Is it possible to mount multiple pvcs to the same pod? The pvcs are bound to d/t . . .

Robel Fesshaye:
is it possible to mount multiple pvcs to the same pod? The pvcs are bound to d/t persistent volumes? e.g

apiVersion: v1
kind: Pod
metadata:
  name: mypod
spec:
  containers:
    - name: myfrontend
      image: nginx
      volumeMounts:
      - mountPath: "/var/www/html"
        name: mypd
      - mountPath: "/apps/data"
        name: mypd1
      - mountPath: "/apps/logs"
        name: mypd2
  volumes:
    - name: mypd
      persistentVolumeClaim:
        claimName: myclaim
    - name: mypd1
      persistentVolumeClaim:
        claimName: myclaim1
    - name: mypd2
      persistentVolumeClaim:
        claimName: myclaim2

Madhan Kumar:
yes , mlultiple pvc , volumes and mounts are normal …