Why lost + found directory inside OpenEBS volume? Why lost + found directory inside OpenEBS volume? kubernetes kubernetes

Why lost + found directory inside OpenEBS volume?


lost+found directory is created by ext4.

It can be deleted manually, but will get created on the next mount/fsck. In your application yaml,use the following parameter to ignore this:

 image: <image_name>          args:            - "--ignore-db-dir"            - "lost+found"