You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run the following command "docker run -it --rm --volume-driver=rbd --name first --volume mypool/myimage:/mnt/foo ubuntu /bin/bash -c "echo -n 'Hello ' >> /mnt/foo/hello"
"mypool" didn't exist, so I had the following message: "docker: Error response from daemon: create mypool/myimage: VolumeDriver.Create: Unable to create Ceph RBD Image(myimage): exit status 2.
See 'docker run --help'."
I discovered the reason by running manually the command the driver was issuing:
"/usr/bin/rbd --pool mypool --conf /etc/ceph/ceph.conf --id admin create --image-format 2 --size 20480 myimage"
Now the log told me the pool didn't exist.
The text was updated successfully, but these errors were encountered:
I run the following command "docker run -it --rm --volume-driver=rbd --name first --volume mypool/myimage:/mnt/foo ubuntu /bin/bash -c "echo -n 'Hello ' >> /mnt/foo/hello"
"mypool" didn't exist, so I had the following message: "docker: Error response from daemon: create mypool/myimage: VolumeDriver.Create: Unable to create Ceph RBD Image(myimage): exit status 2.
See 'docker run --help'."
Logs:
I discovered the reason by running manually the command the driver was issuing:
"/usr/bin/rbd --pool mypool --conf /etc/ceph/ceph.conf --id admin create --image-format 2 --size 20480 myimage"
Now the log told me the pool didn't exist.
The text was updated successfully, but these errors were encountered: