python openstack client create server failing when boot_volume is provided instead of image
- Openstack Version: Rocky
- API Version: 3
I can create the server from python by providing the image name. I can create the server from CLI by providing the volume name without an image name. But from python, I'm unable to create the server with just the boot_volume without image.
Below is my code and error:
Code:
def createServer(conn, volume=None):
print "Create Server:"
SERVER_NAME = "TestPython"
IMAGE_NAME = "cirros-040"
FLAVOR_NAME = "t1-basic-1-2"
NETWORK_NAME = "private"
image = conn.compute.find_image(IMAGE_NAME)
flavor = conn.compute.find_flavor(FLAVOR_NAME)
network = conn.network.find_network(NETWORK_NAME)
volume = conn.get_volume(volume)
keypair = find_keypair(conn)
server = conn.compute.create_server(
name = SERVER_NAME,
#image_id = image.id,
flavor_id = flavor.id,
key_name = keypair.name,
networks = [{"uuid": network.id}],
boot_volume = volume.id)
#volumes = [ volume ],
#boot_from_volume = True,
#volume_size = 5)
serv = conn.compute.wait_for_server(server)
return serv
Error:
File "<generated-openstack.compute.v2.server>", line 3, in create
File "/usr/lib/python2.7/site-packages/openstack/proxy.py", line 192, in _create
return res.create(self)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 763, in create
self._translate_response(response)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 695, in _translate_response
exceptions.raise_from_response(response, error_message=error_message)
File "/usr/lib/python2.7/site-packages/openstack/exceptions.py", line 212, in raise_from_response
http_status=http_status, request_id=request_id
openstack.exceptions.BadRequestException: BadRequestException: 400: Client Error for url: XXXX, {"badRequest": {"message": "Missing imageRef attribute", "code": 400}}
I can see that image is a optional parameter which is not required if boot_volume
is given.
Is this a bug or am I missing something?
python openstack
add a comment |
- Openstack Version: Rocky
- API Version: 3
I can create the server from python by providing the image name. I can create the server from CLI by providing the volume name without an image name. But from python, I'm unable to create the server with just the boot_volume without image.
Below is my code and error:
Code:
def createServer(conn, volume=None):
print "Create Server:"
SERVER_NAME = "TestPython"
IMAGE_NAME = "cirros-040"
FLAVOR_NAME = "t1-basic-1-2"
NETWORK_NAME = "private"
image = conn.compute.find_image(IMAGE_NAME)
flavor = conn.compute.find_flavor(FLAVOR_NAME)
network = conn.network.find_network(NETWORK_NAME)
volume = conn.get_volume(volume)
keypair = find_keypair(conn)
server = conn.compute.create_server(
name = SERVER_NAME,
#image_id = image.id,
flavor_id = flavor.id,
key_name = keypair.name,
networks = [{"uuid": network.id}],
boot_volume = volume.id)
#volumes = [ volume ],
#boot_from_volume = True,
#volume_size = 5)
serv = conn.compute.wait_for_server(server)
return serv
Error:
File "<generated-openstack.compute.v2.server>", line 3, in create
File "/usr/lib/python2.7/site-packages/openstack/proxy.py", line 192, in _create
return res.create(self)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 763, in create
self._translate_response(response)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 695, in _translate_response
exceptions.raise_from_response(response, error_message=error_message)
File "/usr/lib/python2.7/site-packages/openstack/exceptions.py", line 212, in raise_from_response
http_status=http_status, request_id=request_id
openstack.exceptions.BadRequestException: BadRequestException: 400: Client Error for url: XXXX, {"badRequest": {"message": "Missing imageRef attribute", "code": 400}}
I can see that image is a optional parameter which is not required if boot_volume
is given.
Is this a bug or am I missing something?
python openstack
add a comment |
- Openstack Version: Rocky
- API Version: 3
I can create the server from python by providing the image name. I can create the server from CLI by providing the volume name without an image name. But from python, I'm unable to create the server with just the boot_volume without image.
Below is my code and error:
Code:
def createServer(conn, volume=None):
print "Create Server:"
SERVER_NAME = "TestPython"
IMAGE_NAME = "cirros-040"
FLAVOR_NAME = "t1-basic-1-2"
NETWORK_NAME = "private"
image = conn.compute.find_image(IMAGE_NAME)
flavor = conn.compute.find_flavor(FLAVOR_NAME)
network = conn.network.find_network(NETWORK_NAME)
volume = conn.get_volume(volume)
keypair = find_keypair(conn)
server = conn.compute.create_server(
name = SERVER_NAME,
#image_id = image.id,
flavor_id = flavor.id,
key_name = keypair.name,
networks = [{"uuid": network.id}],
boot_volume = volume.id)
#volumes = [ volume ],
#boot_from_volume = True,
#volume_size = 5)
serv = conn.compute.wait_for_server(server)
return serv
Error:
File "<generated-openstack.compute.v2.server>", line 3, in create
File "/usr/lib/python2.7/site-packages/openstack/proxy.py", line 192, in _create
return res.create(self)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 763, in create
self._translate_response(response)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 695, in _translate_response
exceptions.raise_from_response(response, error_message=error_message)
File "/usr/lib/python2.7/site-packages/openstack/exceptions.py", line 212, in raise_from_response
http_status=http_status, request_id=request_id
openstack.exceptions.BadRequestException: BadRequestException: 400: Client Error for url: XXXX, {"badRequest": {"message": "Missing imageRef attribute", "code": 400}}
I can see that image is a optional parameter which is not required if boot_volume
is given.
Is this a bug or am I missing something?
python openstack
- Openstack Version: Rocky
- API Version: 3
I can create the server from python by providing the image name. I can create the server from CLI by providing the volume name without an image name. But from python, I'm unable to create the server with just the boot_volume without image.
Below is my code and error:
Code:
def createServer(conn, volume=None):
print "Create Server:"
SERVER_NAME = "TestPython"
IMAGE_NAME = "cirros-040"
FLAVOR_NAME = "t1-basic-1-2"
NETWORK_NAME = "private"
image = conn.compute.find_image(IMAGE_NAME)
flavor = conn.compute.find_flavor(FLAVOR_NAME)
network = conn.network.find_network(NETWORK_NAME)
volume = conn.get_volume(volume)
keypair = find_keypair(conn)
server = conn.compute.create_server(
name = SERVER_NAME,
#image_id = image.id,
flavor_id = flavor.id,
key_name = keypair.name,
networks = [{"uuid": network.id}],
boot_volume = volume.id)
#volumes = [ volume ],
#boot_from_volume = True,
#volume_size = 5)
serv = conn.compute.wait_for_server(server)
return serv
Error:
File "<generated-openstack.compute.v2.server>", line 3, in create
File "/usr/lib/python2.7/site-packages/openstack/proxy.py", line 192, in _create
return res.create(self)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 763, in create
self._translate_response(response)
File "/usr/lib/python2.7/site-packages/openstack/resource.py", line 695, in _translate_response
exceptions.raise_from_response(response, error_message=error_message)
File "/usr/lib/python2.7/site-packages/openstack/exceptions.py", line 212, in raise_from_response
http_status=http_status, request_id=request_id
openstack.exceptions.BadRequestException: BadRequestException: 400: Client Error for url: XXXX, {"badRequest": {"message": "Missing imageRef attribute", "code": 400}}
I can see that image is a optional parameter which is not required if boot_volume
is given.
Is this a bug or am I missing something?
python openstack
python openstack
edited Nov 23 '18 at 9:37
Sebastien Kerroue
13411
13411
asked Nov 23 '18 at 9:30
RatDon
1,55142355
1,55142355
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443903%2fpython-openstack-client-create-server-failing-when-boot-volume-is-provided-inste%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443903%2fpython-openstack-client-create-server-failing-when-boot-volume-is-provided-inste%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown