Index neutron floating IPs

Registered by Travis Tripp

THIS NEEDS INVESTIGATION

Summary
=======
Provide Neutron Floating IPs

Problem Statement
===============
Floating IPs are commonly used in Neutron deployments.

Description
=========

Investigation needed.

Implemented in https://review.openstack.org/#/c/330804/

Blueprint information

Status:
Complete
Approver:
Travis Tripp
Priority:
High
Drafter:
Travis Tripp
Direction:
Approved
Assignee:
Steve McLellan
Definition:
Approved
Series goal:
Accepted for newton
Implementation:
Implemented
Milestone target:
milestone icon newton-2
Started by
Travis Tripp
Completed by
Steve McLellan

Related branches

Sprints

Whiteboard

Notifications are complete for floating IPs with the exception of dates.

FROM API (following creation and attachment as below plus one other unattached):
{'floatingips': [{u'description': u'',
   u'dns_domain': u'',
   u'dns_name': u'',
   u'fixed_ip_address': None,
   u'floating_ip_address': u'172.25.0.5',
   u'floating_network_id': u'fbf73885-d2be-4ece-bf79-f07bd22c2d75',
   u'id': u'3c7b444b-ed29-4f05-92b1-b84f3edeecb9',
   u'port_id': None,
   u'router_id': None,
   u'status': u'DOWN',
   u'tenant_id': u'3307049f95b7408c95d6e84483fc995a'},
  {u'description': u'',
   u'dns_domain': u'',
   u'dns_name': u'',
   u'fixed_ip_address': u'172.40.0.5',
   u'floating_ip_address': u'172.25.0.6',
   u'floating_network_id': u'fbf73885-d2be-4ece-bf79-f07bd22c2d75',
   u'id': u'5b6febf5-52b7-4d89-bad8-3de8f5aa272a',
   u'port_id': u'9ae92a24-9972-4833-8ac5-efe5901e2417',
   u'router_id': u'ff3a2f14-64f3-4c1e-ade9-84e9abf9a1f3',
   u'status': u'ACTIVE',
   u'tenant_id': u'3307049f95b7408c95d6e84483fc995a'}]}

CREATE FLOATING IP:

{
  "event_type": "floatingip.create.end",
  "payload": {
    "floatingip": {
      "router_id": null,
      "status": "DOWN",
      "description": "",
      "dns_name": "",
      "dns_domain": "",
      "floating_network_id": "fbf73885-d2be-4ece-bf79-f07bd22c2d75",
      "fixed_ip_address": null,
      "floating_ip_address": "172.25.0.6",
      "tenant_id": "3307049f95b7408c95d6e84483fc995a",
      "port_id": null,
      "id": "5b6febf5-52b7-4d89-bad8-3de8f5aa272a"
    }
  },

ASSOCIATE FLOATING IP (fixed IP is the port IP):
{
  "event_type": "floatingip.update.end",
  "payload": {
    "floatingip": {
      "router_id": "ff3a2f14-64f3-4c1e-ade9-84e9abf9a1f3",
      "status": "DOWN",
      "description": "",
      "dns_name": "",
      "dns_domain": "",
      "floating_network_id": "fbf73885-d2be-4ece-bf79-f07bd22c2d75",
      "fixed_ip_address": "172.40.0.5",
      "floating_ip_address": "172.25.0.6",
      "tenant_id": "3307049f95b7408c95d6e84483fc995a",
      "port_id": "9ae92a24-9972-4833-8ac5-efe5901e2417",
      "id": "5b6febf5-52b7-4d89-bad8-3de8f5aa272a"
    }
  }

DISASSOCIATE:
{
  "event_type": "floatingip.update.end",
  "payload": {
    "floatingip": {
      "router_id": null,
      "status": "ACTIVE",
      "description": "",
      "dns_name": "",
      "dns_domain": "",
      "floating_network_id": "fbf73885-d2be-4ece-bf79-f07bd22c2d75",
      "fixed_ip_address": null,
      "floating_ip_address": "172.25.0.6",
      "tenant_id": "3307049f95b7408c95d6e84483fc995a",
      "port_id": null,
      "id": "5b6febf5-52b7-4d89-bad8-3de8f5aa272a"
    }
  },

DELETE:
{
  "event_type": "floatingip.delete.end",
  "payload": {
    "floatingip_id": "5b6febf5-52b7-4d89-bad8-3de8f5aa272a"
  },

Gerrit topic: https://review.openstack.org/#q,topic:bp/neutron-floating-ip-plugin,n,z

Addressed by: https://review.openstack.org/330804
    Neutron floating IP support.

(?)

Work Items

This blueprint contains Public information 
Everyone can see this information.

Subscribers

No subscribers.