Erro ao executar um comando 'glance image-create'. “Endpoint publicURL para imagem não encontrada”

0

Durante a emissão deste comando no ubuntu 14.02 Server edition.

glance image-create --name "cirros" --file cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare --is-public True --progress

Recebi a seguinte mensagem de erro:

"publicURL endpoint for image not found"

A seguir, a série de comandos que executei:

$ nano admin-openrc.sh
    export OS_TENANT_NAME=admin
    export OS_USERNAME=admin
    export OS_PASSWORD=XXXXXX
    export OS_AUTH_URL=http://controller:35357/v2.0

$ source admin-openrc.sh
$ wget -P /tmp/images http://download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img
$ glance image-create --name "cirros-0.3.3-x86_64" --file /tmp/images/cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare --is-public True --progress

Por favor ajude ...

Muito obrigado antecipadamente.

- V

    
por Vikram 08.06.2015 / 12:18

1 resposta

1

Eu consertei o problema, fazendo o hash identity_uri assim:

[keystone_authtoken]
auth_host = controller
auth_port = 35357
auth_protocol = http
auth_uri = http://controller:5000/v2.0
#identity_uri = http://controller:35357
admin_tenant_name = service
admin_user = nova
admin_password = openstack
    
por Vikram 09.06.2015 / 11:21