Renku project session that is in paused state, is getting deleted

Renku project session that is in paused state, is getting deleted.

Renku version: 0.63.0

When I try resume, I get the following errror:

I can also see the container has been deleted.

Can you advise any steps to take to debug?

Regards

Actually I can see the pod im trying to restart in the statefulsets
kubectl get statefulsets -n renku

2ec-flightproject100-bc054925 0/0 23h

Screenshot 2025-01-24 at 10.17.53

So they are still there. This might be down to the network issue im having

I solved this by enabling userSessionPersistentVolumes in …/renku-values/renku-values.yaml

  userSessionPersistentVolumes:
    enabled: true
    # storageClass: leave undefined to use default, otherwise specify required class
    ## Prevents from applying size limits if emptyDirs are used for user sessions.
    ## This may be desirable because going over the limit for an emptyDir results in
    ## immediate eviction of the user session. EmptyDirs are used when the enabled flag
    ## above is set to false.
    useEmptyDirSizeLimit: false