← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1630134] [NEW] Networking API v2.0 (CURRENT): Update Network Request missing the 'qos-policy-id' parameter.

 

Public bug reported:

The API reference http://developer.openstack.org/api-
ref/networking/v2/index.html doesn't reflect the fact a Qos Policy
linked to an existing network can be updated:


$ curl -s -H "X-Auth-Token: $OS_TOKEN" http://${OS_HOST}:9696/v2.0/qos/policies | python -mjson.tool{
    "policies": [
        {
            "description": "This policy limits the ports to 10Mbit max.",
            "id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
            "name": "10Mbit",
            "rules": [],
            "shared": false,
            "tenant_id": "5a23535b5dda4770bccc856d0167e53f"
        }
    ]
}

$ curl -s  -H "X-Auth-Token: $OS_TOKEN"  -H "Content-Type: application/json" http://${OS_HOST}:9696/v2.0/networks/b18d3079-fcaa-41b7-8aec-0d009789fff8| python -mjson.tool
{
    "network": {
        "admin_state_up": false,
        "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
        "mtu": 0,
        "name": "cristalnet",
        "port_security_enabled": true,
        "provider:network_type": "vxlan",
        "provider:physical_network": null,
        "provider:segmentation_id": 39,
        "qos_policy_id": null,
        "router:external": false,
        "shared": true,
        "status": "ACTIVE",
        "subnets": [],
        "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
        "vlan_transparent": null
    }
}

$ curl -s \
>   -X PUT \
>   -H "X-Auth-Token: $OS_TOKEN" \
>   -H "Content-Type: application/json" \
>   -d '{"network": { "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b"  } }' \
> http://${OS_HOST}:9696/v2.0/networks/b18d3079-fcaa-41b7-8aec-0d009789fff8 | python -mjson.tool
{
    "network": {
        "admin_state_up": false,
        "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
        "mtu": 0,
        "name": "cristalnet",
        "port_security_enabled": true,
        "provider:network_type": "vxlan",
        "provider:physical_network": null,
        "provider:segmentation_id": 39,
        "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
        "router:external": false,
        "shared": true,
        "status": "ACTIVE",
        "subnets": [],
        "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
        "vlan_transparent": null
    }
}

** Affects: neutron
     Importance: Undecided
         Status: New

** Description changed:

  The API reference http://developer.openstack.org/api-
  ref/networking/v2/index.html doesn't reflect the fact a Qos Policy
  linked to an existing network can be updated:
  
- ```
+ 
  $ curl -s -H "X-Auth-Token: $OS_TOKEN" http://${OS_HOST}:9696/v2.0/qos/policies | python -mjson.tool{
-     "policies": [
-         {
-             "description": "This policy limits the ports to 10Mbit max.",
-             "id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
-             "name": "10Mbit",
-             "rules": [],
-             "shared": false,
-             "tenant_id": "5a23535b5dda4770bccc856d0167e53f"
-         }
-     ]
+     "policies": [
+         {
+             "description": "This policy limits the ports to 10Mbit max.",
+             "id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
+             "name": "10Mbit",
+             "rules": [],
+             "shared": false,
+             "tenant_id": "5a23535b5dda4770bccc856d0167e53f"
+         }
+     ]
  }
  
  $ curl -s  -H "X-Auth-Token: $OS_TOKEN"  -H "Content-Type: application/json" http://${OS_HOST}:9696/v2.0/networks/b18d3079-fcaa-41b7-8aec-0d009789fff8| python -mjson.tool
  {
-     "network": {
-         "admin_state_up": false,
-         "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
-         "mtu": 0,
-         "name": "cristalnet",
-         "port_security_enabled": true,
-         "provider:network_type": "vxlan",
-         "provider:physical_network": null,
-         "provider:segmentation_id": 39,
-         "qos_policy_id": null,
-         "router:external": false,
-         "shared": true,
-         "status": "ACTIVE",
-         "subnets": [],
-         "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
-         "vlan_transparent": null
-     }
+     "network": {
+         "admin_state_up": false,
+         "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
+         "mtu": 0,
+         "name": "cristalnet",
+         "port_security_enabled": true,
+         "provider:network_type": "vxlan",
+         "provider:physical_network": null,
+         "provider:segmentation_id": 39,
+         "qos_policy_id": null,
+         "router:external": false,
+         "shared": true,
+         "status": "ACTIVE",
+         "subnets": [],
+         "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
+         "vlan_transparent": null
+     }
  }
  
  $ curl -s \
  >   -X PUT \
  >   -H "X-Auth-Token: $OS_TOKEN" \
  >   -H "Content-Type: application/json" \
  >   -d '{"network": { "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b"  } }' \
  > http://${OS_HOST}:9696/v2.0/networks/b18d3079-fcaa-41b7-8aec-0d009789fff8 | python -mjson.tool
  {
-     "network": {
-         "admin_state_up": false,
-         "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
-         "mtu": 0,
-         "name": "cristalnet",
-         "port_security_enabled": true,
-         "provider:network_type": "vxlan",
-         "provider:physical_network": null,
-         "provider:segmentation_id": 39,
-         "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
-         "router:external": false,
-         "shared": true,
-         "status": "ACTIVE",
-         "subnets": [],
-         "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
-         "vlan_transparent": null
-     }
+     "network": {
+         "admin_state_up": false,
+         "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
+         "mtu": 0,
+         "name": "cristalnet",
+         "port_security_enabled": true,
+         "provider:network_type": "vxlan",
+         "provider:physical_network": null,
+         "provider:segmentation_id": 39,
+         "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
+         "router:external": false,
+         "shared": true,
+         "status": "ACTIVE",
+         "subnets": [],
+         "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
+         "vlan_transparent": null
+     }
  }
- ```

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1630134

Title:
  Networking API v2.0 (CURRENT): Update Network Request missing the
  'qos-policy-id' parameter.

Status in neutron:
  New

Bug description:
  The API reference http://developer.openstack.org/api-
  ref/networking/v2/index.html doesn't reflect the fact a Qos Policy
  linked to an existing network can be updated:

  
  $ curl -s -H "X-Auth-Token: $OS_TOKEN" http://${OS_HOST}:9696/v2.0/qos/policies | python -mjson.tool{
      "policies": [
          {
              "description": "This policy limits the ports to 10Mbit max.",
              "id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
              "name": "10Mbit",
              "rules": [],
              "shared": false,
              "tenant_id": "5a23535b5dda4770bccc856d0167e53f"
          }
      ]
  }

  $ curl -s  -H "X-Auth-Token: $OS_TOKEN"  -H "Content-Type: application/json" http://${OS_HOST}:9696/v2.0/networks/b18d3079-fcaa-41b7-8aec-0d009789fff8| python -mjson.tool
  {
      "network": {
          "admin_state_up": false,
          "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
          "mtu": 0,
          "name": "cristalnet",
          "port_security_enabled": true,
          "provider:network_type": "vxlan",
          "provider:physical_network": null,
          "provider:segmentation_id": 39,
          "qos_policy_id": null,
          "router:external": false,
          "shared": true,
          "status": "ACTIVE",
          "subnets": [],
          "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
          "vlan_transparent": null
      }
  }

  $ curl -s \
  >   -X PUT \
  >   -H "X-Auth-Token: $OS_TOKEN" \
  >   -H "Content-Type: application/json" \
  >   -d '{"network": { "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b"  } }' \
  > http://${OS_HOST}:9696/v2.0/networks/b18d3079-fcaa-41b7-8aec-0d009789fff8 | python -mjson.tool
  {
      "network": {
          "admin_state_up": false,
          "id": "b18d3079-fcaa-41b7-8aec-0d009789fff8",
          "mtu": 0,
          "name": "cristalnet",
          "port_security_enabled": true,
          "provider:network_type": "vxlan",
          "provider:physical_network": null,
          "provider:segmentation_id": 39,
          "qos_policy_id": "c4e80891-5d77-480f-8970-a7223fd72f4b",
          "router:external": false,
          "shared": true,
          "status": "ACTIVE",
          "subnets": [],
          "tenant_id": "5a23535b5dda4770bccc856d0167e53f",
          "vlan_transparent": null
      }
  }

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1630134/+subscriptions


Follow ups