I have a persistent disk named `foo` that I would like to attach to an instance I create. I run the following command
gcloud beta compute --project=myproject instances create myinstance --machine-type=n1-standard-4 --disk=device-name=foo,name=foo
However, when I look at the instances and run `sudo lsblk` the disk appears under name `sdb` instead of `foo`. What am I doing wrong?