Openstack API未提供精确的数据



我在Centosk 7.9 中使用Openstack-Stein

我使用python收集有关openstack nova性能的数据,比如openstack项目中的服务器名称和id,我创建了3个实例(服务器(,我可以在openstack cli中看到所有三个实例,但当我连接到openstack中提到的api时,它没有提供数据或提供更少的数据。

我在这里查阅了openstack文档

[root@centos-vm1 kavin(keystone_admin)]# openstack server list
+--------------------------------------+-----------------+--------+----------------------------------------+-------+----------+
| ID                                   | Name            | Status | Networks                               | Image | Flavor   |
+--------------------------------------+-----------------+--------+----------------------------------------+-------+----------+
| 08cf6226-0303-4b4c-ba53-10af79b81dae | test_instance_3 | ACTIVE | test_networ_3=10.150.0.8               |       | m1.tiny  |
| 9986f205-82b3-4cbb-bcdc-fb32eab97c83 | test_instance_1 | ACTIVE | test_networ_2=10.100.0.5, x.x.x.x      |       | m1.small |
| d1c0f520-8540-432c-8fe1-554390fd79bf | test_instance_2 | ACTIVE | test_networ_1=10.50.0.8                |       | m1.small |
+--------------------------------------+-----------------+--------+----------------------------------------+-------+----------+

我的python代码:

import requests,json
from six.moves.urllib.parse import urljoin
identity = {
"methods": ["password"],
"password": {
"user": {
"name": "admin",
"domain": { "id": "default" },
"password": "xxxxxxxxxxxxxxx"
}
}
}
OS_AUTH_URL = 'http://x.x.x.x:5000/v3'
data = {'auth': {'identity': identity}}
HEADERS = {'Content-Type': 'application/json', 'scope': 'unscoped'}
r = requests.post(
OS_AUTH_URL+'/auth/tokens',
headers = HEADERS,
json    = data,     
verify  = False
)
auth_token = r.headers['X-Subject-Token']  # i got auth token
# server list
NOVA_URL="http://x.x.x.x:8774/v2.1"
HEADERS = {"X-Auth-Token" : str(auth_token)}
r = requests.get(
NOVA_URL+'/servers',
headers = HEADERS,
)
r.raise_for_status()
print(r.json())

输出:

{'servers': []}

帮助我,使用api调用收集准确的数据,谢谢

根据api ref列表服务器doc,也许您应该在请求中添加项目范围

默认情况下,使用与经过身份验证的请求相关联的项目ID过滤服务器。

在我看来,您可以使用openstacksdk执行操作,只需使用Connection对象和listrongervers方法即可。

import openstack
conn = openstack.connect(
region_name='example-region',
auth_url='http://x.x.x.x:5000/v3/',
username='amazing-user',
password='super-secret-password',
project_id='33...b5',
domain_id='05...03'
)
servers = conn.list_servers()

相关内容

  • 没有找到相关文章

最新更新