0
我需要獲取特定租戶可用的服務器列表。Openstack - Nova客戶端 - 爲特定租戶檢索服務器
即考慮租戶的tenant_id如下:
ee13ef5e10644f3782179bbfac1cdab5
現在我需要它僅適用於特定租戶的服務器。
我試過的代碼如下:
我無法得到結果。
它只是當我嘗試相同時顯示一個空列表。
from novaclient import client
import json
kwargs = {
"tenant_name":'admin',
"auth_url":'http://127.0.0.1:5000/v2.0',
"username":'admin',
"password":'password',
}
# Establish the connection Keystone
keystone = client.Client('2', 'admin', 'sop52maw', 'admin', 'http://127.0.0.1:5000/v2.0')
server_list = keystone.servers.list(search_opts={'tenant_id':'ee13ef5e10644f3782179bbfac1cdab5'})
print server_list
有人看看,並指導我排序這一個。