Not able mount volumes in shinyproxy kubernetes

Hi , I have deployed shinyproxy in AWS EKS using GitHub - openanalytics/shinyproxy-operator: Easily run ShinyProxy on a Kubernetes cluster,

I created a PV and PVC , now trying to mount into shiny app, below is my config

    - id: 03_app
    displayName: Demo Shiny App for custom package
    description: Deploy shiny app from  RStudio connet to Shiny Proxy
    container-cmd:
      - R
      - -q
      - -e
      - shiny::runApp('/srv/shiny-server/app.R')
    container-image: openanalytics/shinyproxy-demo
    kubernetes-pod-patches: |
      - op: add
        path: /spec/volumes
        value:
          name: app-data-volume
          persistentVolumeClaim:
            claimName: sp-pvc-smb-rdmc
      - op: add
        path: /spec/containers/0/volumeMounts
        value:
          name: app-data-volume
          mountPath: /RDMC

After redeploying i am not able to open this app

I am getting this on the screen - Failed to start app Demo Shiny App

In shinyproxy logs there is no logs related to this

FYI the pv and pvc are created outside of this shinyproxy config but it is in the same namspace as shinyproxy and the app and in the bound state

Am i missing anything here?