style&chore: modity Makefile and some code style

1. add .prow.sh
2. add a symlink in Makefile related to release-tools.
3. modify some code style to pass fmt test.

Signed-off-by: Meinhard Zhou <zhouenhua@bytedance.com>
This commit is contained in:
Meinhard Zhou
2022-03-13 17:12:09 +08:00
parent a62f221f93
commit 3e07ae4e60
8 changed files with 43 additions and 25 deletions

View File

@@ -38,7 +38,7 @@ func NewControllerServer(d *driver) *ControllerServer {
// You should realize your volume provider here, such as requesting the Cloud to create an NVMf block and
// returning specific information to you
func (c *ControllerServer) CreateVolume(ctx context.Context, req *csi.CreateVolumeRequest) (*csi.CreateVolumeResponse, error) {
return nil, status.Errorf(codes.Unimplemented,"CreateVolume should implement by yourself. ")
return nil, status.Errorf(codes.Unimplemented, "CreateVolume should implement by yourself. ")
}
func (c *ControllerServer) DeleteVolume(ctx context.Context, req *csi.DeleteVolumeRequest) (*csi.DeleteVolumeResponse, error) {