### Expected behavior * Should be able to write data to a Cloudstor volume mounted inside a container ### Actual behavior * Any attempt to write data (perhaps only binary data?) to the Cloudstor volume hangs the container indefinitely ### Information * This is sort of a duplicate of #177, but wanted to document the fact that it affects the current template as well. ### Steps to reproduce the behavior 1. Create a brand new stack using the latest stable template 2. SSH to any of the manager instances 3. Create a Cloudstor volume 4. Start a container with that Cloudstor volume mapped somewhere inside 5. Run: `echo 'test' > /path/to/vol/test_file` (this should work) 6. Run: `cat /path/to/vol/test_file` (this should work) 7. Run: `dd if=/dev/urandom of=/path/to/vol/test_file2 bs=1M count=10` (this will hang indefinitely)
Expected behavior
Actual behavior
Information
Steps to reproduce the behavior
echo 'test' > /path/to/vol/test_file(this should work)cat /path/to/vol/test_file(this should work)dd if=/dev/urandom of=/path/to/vol/test_file2 bs=1M count=10(this will hang indefinitely)