From c5dfb271a2d21632c597dbc70199005844a8cdb5 Mon Sep 17 00:00:00 2001 From: Abhishek Raut Date: Tue, 9 Jul 2013 12:29:54 -0700 Subject: [PATCH] Add support for the Nexus 1000V into the Cisco Plugin. This will enable the Cisco Nexus 1000V to integrate with the Cisco plugin and be used to drive the realization of Neutron constructs. Network profile and Policy profile are introduced as extended neutron resources, while n1kv:profile_id is introduced as an extended attribute for network and port objects. Necessary changes to the Cisco plugin are made to accomodate Nexus 1000V as a configurable vswitch plugin. Implements: blueprint cisco-plugin-n1k-support Change-Id: I951e10c57d74c935fca8754c0e21e1ac9df35704 --- etc/policy.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/etc/policy.json b/etc/policy.json index 0745f054..6acee30c 100644 --- a/etc/policy.json +++ b/etc/policy.json @@ -105,5 +105,14 @@ "create_floatingip": "rule:regular_user", "update_floatingip": "rule:admin_or_owner", "delete_floatingip": "rule:admin_or_owner", - "get_floatingip": "rule:admin_or_owner" + "get_floatingip": "rule:admin_or_owner", + + "create_network_profile": "rule:admin_only", + "update_network_profile": "rule:admin_only", + "delete_network_profile": "rule:admin_only", + "get_network_profiles": "", + "get_network_profile": "", + "update_policy_profiles": "rule:admin_only", + "get_policy_profiles": "", + "get_policy_profile": "" }