The “deploy_” will be added in front of the volume name I want.But nutanix driver can not recognize the ‘_’ character.
Then the error throw out:
[root@reg Deploy]# docker-compose up -d
Creating volume “deploy_harbordb” with nutanix driver
ERROR: create deploy_harbordb: Error with request: post : volume_groups, got status code 500; err: {u’message’: u"Application error kInvalidArgument raised: ISCSI target name u’deploy_harbordb:nutanix-docker-volume-plugin’ contains an invalid character: u’_’"}
My question is that how can I avoid the prefix for the volume?
Such as I want to create ‘harbordb’ then it will create ‘harbordb’ instead of the default ‘deploy_harbordb’
The top-level network and volume are defined with names foobar-consul0 and foobar, respectively. However, on docker-compose up they will be created with the consul_ prefix added, which was unexpected. Any thoughts on this behavior? Seems like a bug.