OpenStack注册镜像的命令是`openstack image create`。该命令用于在OpenStack中注册一个镜像。
命令的基本语法如下:
```
openstack image create --property
```
其中,参数的含义如下:
- `--property
- `--file
- `
以下是一个示例命令:
```
openstack image create --property architecture=x86_64 --property os_distro=ubuntu --file ubuntu-image.qcow2 ubuntu-image
```
这个命令将在OpenStack中注册一个名为`ubuntu-image`的镜像,该镜像的文件路径为`ubuntu-image.qcow2`。此外,该镜像还具有两个属性:`architecture`设置为`x86_64`,`os_distro`设置为`ubuntu`。