Questions tagged [openstack-nova]

Nova is the project name for OpenStack Compute

Nova is the project name for OpenStack Compute, a cloud computing fabric controller, the main part of an IaaS system. Individuals and organizations can use Nova to host and manage their own cloud computing systems. Nova originated as a project out of NASA Ames Research Laboratory.

Nova is written with the following design guidelines in mind:

  • Component based architecture: Quickly add new behaviors
  • Highly available: Scale to very serious workloads
  • Fault-Tolerant: Isolated processes avoid cascading failures
  • Recoverable: Failures should be easy to diagnose, debug, and rectify
  • Open Standards: Be a reference implementation for a community-driven api
  • API Compatibility: Nova strives to provide API-compatible with popular systems like Amazon EC2
451 questions
2
votes
1 answer

Why does “Watchdog: BUG: Soft lockup CPU” errors occur when running openstack containers in docker.

I just deployed openstack using kolla and kolla-ansible stable/pike version. I deployed on one control node and one compute node. It worked but while I try to use the horizon dashboard, the control node is very slow and locks up and the terminal…
Joey Corkey
  • 475
  • 1
  • 6
  • 19
2
votes
2 answers

My VM can not be resize, but the flavor is subsistent exist

I can not resize the VM, and get the bellow error: (source: openstack.org) In the /var/log/nova-api.log: 2017-10-11 16:53:07.796 24060 INFO nova.osapi_compute.wsgi.server [-] 118.113.57.187 "GET / HTTP/1.1" status: 200 len: 502 time:…
aircraft
  • 25,146
  • 28
  • 91
  • 166
2
votes
1 answer

How to set quota for openstack project/tenant using python-openstacksdk

I have creatd a new project using openstacksdk. I want to set certain amount of CPU, RAM and floatingIPs available for that project to manage usage. How can I set Quota for the new project created?
Atmesh Mishra
  • 527
  • 10
  • 26
2
votes
0 answers

Can not start the openstack-nova-compute.service on the compute node

I want to start the openstack-nova-compute.service: systemctl restart openstack-nova-compute.service there is no print information(I was think it start success, but I am wrong) I use the below command to check the openstack-nova-compute.service…
aircraft
  • 25,146
  • 28
  • 91
  • 166
2
votes
1 answer

OpenStackCLI: Access `--property`'s from cloudinit script

Using the OpenStack CLI, I am creating server instances and need to pass custom properties (--property) into the init script referenced by the --user-data parameter. So, my invocation looks something like this: openstack server create myServer \ …
Jonathan.Brink
  • 23,757
  • 20
  • 73
  • 115
2
votes
1 answer

Error Status of the Server created with OpenStack Compute Api

POST request for creating the OpenStack instance curl -g -i -X POST http://Controller_ip:8774/v2/tenant_id/servers -H "User-Agent: python-novaclient" -H "Content-Type: application/json" -H "Accept: application/json" -H "X-Auth-Token: token_id" -d…
dvigneshwer
  • 549
  • 1
  • 5
  • 7
2
votes
1 answer

nova-compute service state is down

I have an all-in-one-setup with my controller and compute services running on the same node.all my nova and other dependent services are up and running. However, when i try to launch an instance the state of the nova-compute process becomes down.…
Gaurav Parashar
  • 1,347
  • 2
  • 19
  • 21
2
votes
0 answers

keystoneauth1.exceptions.http.NotFound: The resource could not be found. (HTTP 404)

I am trying to list nova flavors list. from keystoneclient.auth.identity import v3 from keystoneclient import session from keystoneclient.v3 import client from novaclient import client auth = v3.Password(auth_url="https://api-soltes2:5000/v3.0", …
Vikram Ranabhatt
  • 7,268
  • 15
  • 70
  • 133
2
votes
3 answers

How to get only ID Name and Networks fields from Openstack nova list

My nova list giving output as : # nova list …
samir
  • 345
  • 2
  • 6
  • 15
2
votes
1 answer

Openstack: how to get client's IP in the python API

I'm trying to implement a new weigher for cells on openstack. How can I get the client IP (the user who is requesting to create a new instance) inside openstack nova python code? I already have tried req.remote_addr inside files nova/api/auth.py…
Vini.g.fer
  • 11,639
  • 16
  • 61
  • 90
2
votes
3 answers

openstack: novaclient Python API not working

Trying to follow a simple tutorial for the openstack python API I found at http://docs.openstack.org/developer/python-novaclient/api.html but doesn't seem to be working. When I try to run nova.servers.list() or nova.flavors.list() from the…
Vini.g.fer
  • 11,639
  • 16
  • 61
  • 90
2
votes
1 answer

Openstack Failed to launch Instances [Error: No Valid Host was found]

I have tried to install openstack on Centos 7. Below are the configurations: Neutron Node (VM with 2 Vcpu, 2 GB RAM , 3 NICs) Controller Node(VM with 2 Vcpu, 8 GB RAM, 1 NIC) Compute Node(Physical Machine 24 CPU, 64 GB RAM, 2 NIC) # egrep -c…
Gaurav Parashar
  • 1,347
  • 2
  • 19
  • 21
2
votes
1 answer

Nova Python Client - List available IP addresses

I have been using: nova.floating_ips.list() to retrieve all known floating IP addresses within my OpenStack deployment, is there a known way to retrieve only the available IP addresses? That is I don't want IP addresses that have already been…
Woot4Moo
  • 23,987
  • 16
  • 94
  • 151
2
votes
0 answers

In Kilo code release, nova boot failed on keystoneclient with 500 error

I have kilo rc1 installed on CentOS7 with following rpm pkgs. # rpm -qa | grep -Ei 'nova|urllib3|request|six' requests-2.6.0-1.noarch python-novaclient-2.23.0.post13-1.noarch…
Alfred S.
  • 21
  • 3
2
votes
2 answers

Assigning a Floating IP to a Load Balancer in a heat template

Does anyone know how to associate a floating IP address with a load balancer in a heat template? I can create a load balancer on an instance (or a bunch of instances, but starting small) in heat; and can associate a floating IP address to the load…
agentgonzo
  • 3,473
  • 3
  • 25
  • 30