Update agent scheduler section
* Split dhcp agent scheduler and l3 agent scheduler extensions into separate subsection * Add LBaaS agent scheduler Change-Id: I6f707deef67a9b88d76fe6d6daa80b56d2cb9b33 Closes-Bug: #1233095
This commit is contained in:
parent
64cca08847
commit
d4b4308531
@ -26,6 +26,7 @@
|
||||
</imageobject>
|
||||
</inlinemediaobject>'>
|
||||
]>
|
||||
<?hard-pagebreak?>
|
||||
<section xmlns="http://docbook.org/ns/docbook"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
@ -34,13 +35,31 @@
|
||||
xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
xmlns:db="http://docbook.org/ns/docbook" version="5.0"
|
||||
status="final" xml:id="agent_sche_ext">
|
||||
<title>The Agent Schedulers Extension</title>
|
||||
<para>The agent schedulers extension schedules resources among agents on top of
|
||||
<title>Agent Schedulers</title>
|
||||
<para>The agent scheduler extensions schedule resources among agents on top of
|
||||
the agent management extension.
|
||||
In Grizzly, it can schedule networks among DHCP agents and routers among L3 agents.</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>DHCP agent scheduler API</para>
|
||||
</para>
|
||||
<para>The agent scheduler feature consist of several agent scheduler extensions.
|
||||
In Havana, the following extensions are available.</para>
|
||||
<itemizedlist>
|
||||
<listitem><para>DHCP Agent Scheduler (<literal>dhcp_agent_scheduler</literal>)</para></listitem>
|
||||
<listitem><para>L3 Agent Scheduler (<literal>l3_agent_scheduler</literal>)</para></listitem>
|
||||
<listitem><para>Load Balancer Agent Scheduler (<literal>lbaas_agent_scheduler</literal>)</para></listitem>
|
||||
</itemizedlist>
|
||||
<para>
|
||||
In Grizzly, the DHCP Agent Scheduler and the L3 Agent Scheduler features are provided
|
||||
by a single extension named the Agent Scheduler (<literal>agent_scheduler</literal>).
|
||||
In Havana, this extension is split into the DHCP Agent Scheduler and
|
||||
the L3 Agent Scheduler extensions.
|
||||
The Load Balancer Agent Scheduler extension is added in Havana.
|
||||
</para>
|
||||
<section xml:id="Scheduler_DHCP_Agent">
|
||||
<title>DHCP Agent Scheduler (<literal>dhcp_agent_scheduler</literal>)</title>
|
||||
<para>The DHCP Agent Scheduler extension allows administrators to assign DHCP servers
|
||||
for Neutron networks to given Neutron DHCP agents, and retrieve mappings between Neutron
|
||||
networks and DHCP agents.
|
||||
This feature is implemented on top of Agent Management extension.
|
||||
</para>
|
||||
<informaltable rules="all" width="100%">
|
||||
<col width="20%"/>
|
||||
<col width="20%"/>
|
||||
@ -75,48 +94,6 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</informaltable>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>L3 agent scheduler API</para>
|
||||
<informaltable rules="all" width="100%">
|
||||
<col width="20%"/>
|
||||
<col width="20%"/>
|
||||
<col width="60%"/>
|
||||
<thead>
|
||||
<tr align="center">
|
||||
<td>Verb</td>
|
||||
<td>URI</td>
|
||||
<td>Description</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/l3-routers</td>
|
||||
<td>List routers the given L3 agent is hosting.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/routers/<parameter>router_id</parameter>/l3-agents</td>
|
||||
<td>List L3 agents hosting the given router.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&POST;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/l3-routers</td>
|
||||
<td>Schedule the router to the given L3 agent.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&DELETE;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/l3-routers/<parameter>router_id</parameter></td>
|
||||
<td>Remove the router from the given L3 agent.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</informaltable>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Scheduler_DHCP_Agent">
|
||||
<title>DHCP Agent Scheduler</title>
|
||||
<section xml:id="Sche_List_Networks_on_Dhcp_Agent">
|
||||
<title>List Networks hosted by one DHCP agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -148,23 +125,20 @@
|
||||
<para>This operation returns a response body.</para>
|
||||
<example>
|
||||
<title>List Networks on DHCP agent: JSON Request</title>
|
||||
<programlisting>
|
||||
GET /v2.0/agents/d5724d7e-389d-4ba0-8d00-fc673a147bfa/dhcp-networks HTTP/1.1
|
||||
<programlisting>GET /v2.0/agents/d5724d7e-389d-4ba0-8d00-fc673a147bfa/dhcp-networks HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: 797f94caf0a8481c893a232cc0c1dfca
|
||||
|
||||
</programlisting>
|
||||
</programlisting>
|
||||
</example>
|
||||
<example>
|
||||
<title>List Networks on DHCP agent: JSON Response</title>
|
||||
<programlisting language="json"><xi:include href="samples/sche-network-list-res.json" parse="text"/></programlisting>
|
||||
</example>
|
||||
</section>
|
||||
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Sche_List_DHCP_agents_Hosting_Network">
|
||||
<title>List DHCP agents hosting network</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -198,13 +172,13 @@ X-Auth-Token: 797f94caf0a8481c893a232cc0c1dfca
|
||||
<example>
|
||||
<title>List DHCP agents hosting network: JSON Request</title>
|
||||
<para>
|
||||
<programlisting>
|
||||
GET /v2.0/networks/2d627131-c841-4e3a-ace6-f2dd75773b6d/dhcp-agents HTTP/1.1
|
||||
<programlisting>GET /v2.0/networks/2d627131-c841-4e3a-ace6-f2dd75773b6d/dhcp-agents HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: cc0f378bdf1545fb8dea2120c89eb532
|
||||
|
||||
</programlisting>
|
||||
</para>
|
||||
</example>
|
||||
@ -214,7 +188,6 @@ X-Auth-Token: cc0f378bdf1545fb8dea2120c89eb532
|
||||
</example>
|
||||
</section>
|
||||
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Sche_Network_DHCP">
|
||||
<title>Schedule network to DHCP agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -244,15 +217,14 @@ X-Auth-Token: cc0f378bdf1545fb8dea2120c89eb532
|
||||
(<errorcode>403</errorcode>),
|
||||
Conflict (<errorcode>409</errorcode>) if the network is
|
||||
already hosted by the given DHCP agent,
|
||||
NotFound(<errorcode>404</errorcode>) when the specified agnet is
|
||||
NotFound(<errorcode>404</errorcode>) when the specified agent is
|
||||
not a valid DHCP agent.</simpara>
|
||||
<para>This operation requires a request body.
|
||||
</para>
|
||||
<para>This operation returns a <literal>null</literal> body.</para>
|
||||
<example>
|
||||
<title>Schedule Network: JSON Request</title>
|
||||
<programlisting>
|
||||
POST /v2.0/agents/d5724d7e-389d-4ba0-8d00-fc673a147bfa/dhcp-networks.json HTTP/1.1
|
||||
<programlisting>POST /v2.0/agents/d5724d7e-389d-4ba0-8d00-fc673a147bfa/dhcp-networks.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
@ -267,7 +239,6 @@ Content-Length: 54
|
||||
<programlisting language="json"><xi:include href="samples/sche-network-dhcp-res.json" parse="text"/></programlisting>
|
||||
</example>
|
||||
</section>
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Sche_Remove_Network_DHCP">
|
||||
<title>Remove Network From DHCP agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -305,20 +276,57 @@ Content-Length: 54
|
||||
<example>
|
||||
<title>Remove Network From DHCP agent: JSON Request</title>
|
||||
|
||||
<programlisting>
|
||||
DELETE /v2.0/agents/d5724d7e-389d-4ba0-8d00-fc673a147bfa/dhcp-networks/1ae075ca-708b-4e66-b4a7-b7698632f05f.json HTTP/1.1
|
||||
<programlisting>DELETE /v2.0/agents/d5724d7e-389d-4ba0-8d00-fc673a147bfa/dhcp-networks/1ae075ca-708b-4e66-b4a7-b7698632f05f.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: 7ae91cde8f504031be5a2cd5b99d4fe9
|
||||
</programlisting>
|
||||
|
||||
</programlisting>
|
||||
</example>
|
||||
</section>
|
||||
</section>
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Scheduler_L3_Agent">
|
||||
<title>L3 Agent Scheduler</title>
|
||||
<title>L3 Agent Scheduler (<literal>l3_agent_scheduler</literal>)</title>
|
||||
<para>The L3 Agent Scheduler extension allows administrators to assign Neutron routers
|
||||
to Neutron L3 agents, and retrieve mappings between Neutron routers and L3 agents.
|
||||
This feature is implemented on top of Agent Management extension.
|
||||
</para>
|
||||
<informaltable rules="all" width="100%">
|
||||
<col width="20%"/>
|
||||
<col width="20%"/>
|
||||
<col width="60%"/>
|
||||
<thead>
|
||||
<tr align="center">
|
||||
<td>Verb</td>
|
||||
<td>URI</td>
|
||||
<td>Description</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/l3-routers</td>
|
||||
<td>List routers the given L3 agent is hosting.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/routers/<parameter>router_id</parameter>/l3-agents</td>
|
||||
<td>List L3 agents hosting the given router.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&POST;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/l3-routers</td>
|
||||
<td>Schedule the router to the given L3 agent.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&DELETE;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/l3-routers/<parameter>router_id</parameter></td>
|
||||
<td>Remove the router from the given L3 agent.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</informaltable>
|
||||
<section xml:id="Sche_List_Routers_on_L3_Agent">
|
||||
<title>List Routers hosted by one L3 agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -350,15 +358,14 @@ X-Auth-Token: 7ae91cde8f504031be5a2cd5b99d4fe9
|
||||
<para>This operation returns a response body.</para>
|
||||
<example>
|
||||
<title>List Routers on L3 agent: JSON Request</title>
|
||||
<programlisting>
|
||||
GET /v2.0/agents/fa24e88e-3d2f-4fc2-b038-5fb5be294c03/l3-routers.json HTTP/1.1
|
||||
<programlisting>GET /v2.0/agents/fa24e88e-3d2f-4fc2-b038-5fb5be294c03/l3-routers.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: 6eeea6e73b68415f85d8368902a32c11
|
||||
|
||||
</programlisting>
|
||||
</programlisting>
|
||||
</example>
|
||||
<example>
|
||||
<title>List Routers on L3 agent: JSON Response</title>
|
||||
@ -366,7 +373,6 @@ X-Auth-Token: 6eeea6e73b68415f85d8368902a32c11
|
||||
</example>
|
||||
</section>
|
||||
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Sche_List_L3_agents_Hosting_Router">
|
||||
<title>List L3 agents hosting router</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -400,8 +406,7 @@ X-Auth-Token: 6eeea6e73b68415f85d8368902a32c11
|
||||
<example>
|
||||
<title>List L3 agents hosting router: JSON Request</title>
|
||||
<para>
|
||||
<programlisting>
|
||||
GET /v2.0/routers/8eef2388-f27d-4a17-986e-9319a77ccd9d/l3-agents.json HTTP/1.1
|
||||
<programlisting>GET /v2.0/routers/8eef2388-f27d-4a17-986e-9319a77ccd9d/l3-agents.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
@ -417,7 +422,6 @@ X-Auth-Token: bce63afb1e794c70972a19a7c2d6dcab
|
||||
</example>
|
||||
</section>
|
||||
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Sche_Router_L3">
|
||||
<title>Schedule router to L3 agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -454,8 +458,7 @@ X-Auth-Token: bce63afb1e794c70972a19a7c2d6dcab
|
||||
<para>This operation returns a <literal>null</literal> body.</para>
|
||||
<example>
|
||||
<title>Schedule Router: JSON Request</title>
|
||||
<programlisting>
|
||||
GET /v2.0/agents/fa24e88e-3d2f-4fc2-b038-5fb5be294c03/l3-routers.json HTTP/1.1
|
||||
<programlisting>GET /v2.0/agents/fa24e88e-3d2f-4fc2-b038-5fb5be294c03/l3-routers.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
@ -470,7 +473,6 @@ Content-Length: 54
|
||||
<programlisting language="json"><xi:include href="samples/sche-router-l3-res.json" parse="text"/></programlisting>
|
||||
</example>
|
||||
</section>
|
||||
<?hard-pagebreak?>
|
||||
<section xml:id="Sche_Remove_Router_L3">
|
||||
<title>Remove Router From L3 agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
@ -507,15 +509,142 @@ Content-Length: 54
|
||||
<example>
|
||||
<title>Remove Router From L3 agent: JSON Request</title>
|
||||
|
||||
<programlisting>
|
||||
DELETE /v2.0/agents/b7d7ba43-1a05-4b09-ba07-67242d4a98f4/l3-routers/8eef2388-f27d-4a17-986e-9319a77ccd9d.json HTTP/1.1
|
||||
<programlisting>DELETE /v2.0/agents/b7d7ba43-1a05-4b09-ba07-67242d4a98f4/l3-routers/8eef2388-f27d-4a17-986e-9319a77ccd9d.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: 2147ef6fe4444f0299b1c0b6b529ff47
|
||||
</programlisting>
|
||||
|
||||
</programlisting>
|
||||
</example>
|
||||
</section>
|
||||
</section>
|
||||
<section xml:id="Scheduler_LBaaS_Agent">
|
||||
<title>Load Balancer Agent Scheduler (<literal>lbaas_agent_scheduler</literal>)</title>
|
||||
<para>The LBaaS Agent Scheduler extension allows administrators to retrieve
|
||||
mappings between load balancer pools to LBaaS agents.
|
||||
In Havana, this extension does not provide an ability to assign load balancer pool
|
||||
to specific LBaaS agent. Pools are scheduled automatically when created.
|
||||
This feature is implemented on top of Agent Management extension.
|
||||
The Load Balancer Agent Scheduler extension is added in Havana.
|
||||
</para>
|
||||
<informaltable rules="all" width="100%">
|
||||
<col width="20%"/>
|
||||
<col width="20%"/>
|
||||
<col width="60%"/>
|
||||
<thead>
|
||||
<tr align="center">
|
||||
<td>Verb</td>
|
||||
<td>URI</td>
|
||||
<td>Description</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/loadbalancer-pools</td>
|
||||
<td>List pools the given LBaaS agent is hosting.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/lb/pools/<parameter>pool_id</parameter>/loadbalancer-agent</td>
|
||||
<td>Show a LBaaS agent hosting the given pool.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</informaltable>
|
||||
<section xml:id="Sche_List_Pools_on_LBaaS_Agent">
|
||||
<title>List Pools hosted by one LBaaS agent</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
<col width="20%"/>
|
||||
<col width="20%"/>
|
||||
<col width="60%"/>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Verb</td>
|
||||
<td>URI</td>
|
||||
<td>Description</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/agents/<parameter>agent_id</parameter>/loadbalancer-pools</td>
|
||||
<td>List pools the given LBaaS agent is hosting.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</informaltable>
|
||||
<simpara>Normal Response Code:
|
||||
<returnvalue>200</returnvalue>
|
||||
</simpara>
|
||||
<simpara>Error Response Codes: Unauthorized
|
||||
(<errorcode>401</errorcode>), Forbidden
|
||||
(<errorcode>403</errorcode>)</simpara>
|
||||
<para>This operation does not require a request body. </para>
|
||||
<para>This operation returns a response body.</para>
|
||||
<example>
|
||||
<title>List Pools on LBaaS agent: JSON Request</title>
|
||||
<programlisting>GET /v2.0/agents/6ee1df7f-bae4-4ee9-910a-d33b000773b0/loadbalancer-pools.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: 6eeea6e73b68415f85d8368902a32c11
|
||||
|
||||
</programlisting>
|
||||
</example>
|
||||
<example>
|
||||
<title>List Pools on LBaaS agent: JSON Response</title>
|
||||
<programlisting language="json"><xi:include href="samples/sche-pool-list-res.json" parse="text"/></programlisting>
|
||||
</example>
|
||||
</section>
|
||||
|
||||
<section xml:id="Sche_List_LBaaS_agents_Hosting_Pool">
|
||||
<title>Show LBaaS agent hosting pool</title>
|
||||
<informaltable rules="all" width="100%">
|
||||
<col width="20%"/>
|
||||
<col width="20%"/>
|
||||
<col width="60%"/>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Verb</td>
|
||||
<td>URI</td>
|
||||
<td>Description</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>&GET;</td>
|
||||
<td>/lb/pools/<parameter>pool_id</parameter>/loadbalancer-agent</td>
|
||||
<td>Show a LBaaS agent hosting the given pool.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</informaltable>
|
||||
<simpara>Normal Response Code:
|
||||
<returnvalue>200</returnvalue>
|
||||
</simpara>
|
||||
<simpara>Error Response Codes: Unauthorized
|
||||
(<errorcode>401</errorcode>), Forbidden
|
||||
(<errorcode>403</errorcode>)</simpara>
|
||||
<para>This operation does not require a request body.</para>
|
||||
<para>This operation returns a response body.</para>
|
||||
<example>
|
||||
<title>Show LBaaS agent hosting pool: JSON Request</title>
|
||||
<para>
|
||||
<programlisting>GET /v2.0/lb/pools/28296abb-e675-4288-9cd0-6c112c720db0/loadbalancer-agent.json HTTP/1.1
|
||||
Host: localhost:9696
|
||||
User-Agent: python-neutronclient
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
X-Auth-Token: bce63afb1e794c70972a19a7c2d6dcab
|
||||
|
||||
</programlisting>
|
||||
</para>
|
||||
</example>
|
||||
<example>
|
||||
<title>Show LBaaS agent hosting pool: JSON Response</title>
|
||||
<programlisting language="json"><xi:include href="samples/sche-lbaas-agent-list-res.json" parse="text"/></programlisting>
|
||||
</example>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
|
20
v2.0/samples/sche-lbaas-agent-list-res.json
Normal file
20
v2.0/samples/sche-lbaas-agent-list-res.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"agent": {
|
||||
"admin_state_up": true,
|
||||
"agent_type": "Loadbalancer agent",
|
||||
"alive": true,
|
||||
"binary": "neutron-loadbalancer-agent",
|
||||
"configurations": {
|
||||
"device_driver": "neutron.services.loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver",
|
||||
"devices": 0,
|
||||
"interface_driver": "neutron.agent.linux.interface.OVSInterfaceDriver"
|
||||
},
|
||||
"created_at": "2013-10-01 12:50:13",
|
||||
"description": null,
|
||||
"heartbeat_timestamp": "2013-10-01 12:56:29",
|
||||
"host": "ostack02",
|
||||
"id": "6ee1df7f-bae4-4ee9-910a-d33b000773b0",
|
||||
"started_at": "2013-10-01 12:50:13",
|
||||
"topic": "lbaas_process_on_host_agent"
|
||||
}
|
||||
}
|
21
v2.0/samples/sche-pool-list-res.json
Normal file
21
v2.0/samples/sche-pool-list-res.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"pools": [
|
||||
{
|
||||
"admin_state_up": true,
|
||||
"description": "",
|
||||
"health_monitors": [],
|
||||
"health_monitors_status": [],
|
||||
"id": "28296abb-e675-4288-9cd0-6c112c720db0",
|
||||
"lb_method": "ROUND_ROBIN",
|
||||
"members": [],
|
||||
"name": "pool1",
|
||||
"protocol": "HTTP",
|
||||
"provider": "haproxy",
|
||||
"status": "PENDING_CREATE",
|
||||
"status_description": null,
|
||||
"subnet_id": "f8fd83d3-2080-4ab9-9814-391fe7b8a7a4",
|
||||
"tenant_id": "54d7b6253c8c4e64862fbd08b3fc08cd",
|
||||
"vip_id": null
|
||||
}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user