blob: 0930422e4e1209fd711f79b851091094f2ee75ed [file] [log] [blame]
armando-migliaccio05952e32014-01-05 07:59:06 -08001# Neutron VMware NSX plugin
2# -------------------------
3
4# Save trace setting
5MY_XTRACE=$(set +o | grep xtrace)
6set +o xtrace
7
8source $TOP_DIR/lib/neutron_plugins/ovs_base
9
Ian Wienandaee18c72014-02-21 15:35:08 +110010function setup_integration_bridge {
armando-migliaccio05952e32014-01-05 07:59:06 -080011 _neutron_ovs_base_setup_bridge $OVS_BRIDGE
12 # Set manager to NSX controller (1st of list)
13 if [[ "$NSX_CONTROLLERS" != "" ]]; then
14 # Get the first controller
15 controllers=(${NSX_CONTROLLERS//,/ })
16 OVS_MGR_IP=${controllers[0]}
17 else
18 die $LINENO "Error - No controller specified. Unable to set a manager for OVS"
19 fi
20 sudo ovs-vsctl set-manager ssl:$OVS_MGR_IP
21}
22
Ian Wienandaee18c72014-02-21 15:35:08 +110023function is_neutron_ovs_base_plugin {
armando-migliaccio05952e32014-01-05 07:59:06 -080024 # NSX uses OVS, but not the l3-agent
25 return 0
26}
27
Ian Wienandaee18c72014-02-21 15:35:08 +110028function neutron_plugin_create_nova_conf {
armando-migliaccio05952e32014-01-05 07:59:06 -080029 # if n-cpu is enabled, then setup integration bridge
30 if is_service_enabled n-cpu; then
31 setup_integration_bridge
32 fi
33}
34
Ian Wienandaee18c72014-02-21 15:35:08 +110035function neutron_plugin_install_agent_packages {
armando-migliaccio05952e32014-01-05 07:59:06 -080036 # VMware NSX Plugin does not run q-agt, but it currently needs dhcp and metadata agents
37 _neutron_ovs_base_install_agent_packages
38}
39
Ian Wienandaee18c72014-02-21 15:35:08 +110040function neutron_plugin_configure_common {
armando-migliaccio05952e32014-01-05 07:59:06 -080041 Q_PLUGIN_CONF_PATH=etc/neutron/plugins/vmware
42 Q_PLUGIN_CONF_FILENAME=nsx.ini
43 Q_DB_NAME="neutron_nsx"
44 # TODO(armando-migliaccio): rename this once the code rename is complete
45 Q_PLUGIN_CLASS="neutron.plugins.nicira.NeutronPlugin.NvpPluginV2"
46}
47
Ian Wienandaee18c72014-02-21 15:35:08 +110048function neutron_plugin_configure_debug_command {
armando-migliaccio05952e32014-01-05 07:59:06 -080049 sudo ovs-vsctl --no-wait -- --may-exist add-br $PUBLIC_BRIDGE
50 iniset $NEUTRON_TEST_CONFIG_FILE DEFAULT external_network_bridge "$PUBLIC_BRIDGE"
51}
52
Ian Wienandaee18c72014-02-21 15:35:08 +110053function neutron_plugin_configure_dhcp_agent {
armando-migliaccio05952e32014-01-05 07:59:06 -080054 setup_integration_bridge
55 iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata True
56 iniset $Q_DHCP_CONF_FILE DEFAULT enable_metadata_network True
57 iniset $Q_DHCP_CONF_FILE DEFAULT ovs_use_veth True
58}
59
Ian Wienandaee18c72014-02-21 15:35:08 +110060function neutron_plugin_configure_l3_agent {
armando-migliaccio05952e32014-01-05 07:59:06 -080061 # VMware NSX plugin does not run L3 agent
62 die $LINENO "q-l3 should must not be executed with VMware NSX plugin!"
63}
64
Ian Wienandaee18c72014-02-21 15:35:08 +110065function neutron_plugin_configure_plugin_agent {
armando-migliaccio05952e32014-01-05 07:59:06 -080066 # VMware NSX plugin does not run L2 agent
67 die $LINENO "q-agt must not be executed with VMware NSX plugin!"
68}
69
Ian Wienandaee18c72014-02-21 15:35:08 +110070function neutron_plugin_configure_service {
armando-migliaccio05952e32014-01-05 07:59:06 -080071 if [[ "$MAX_LP_PER_BRIDGED_LS" != "" ]]; then
72 iniset /$Q_PLUGIN_CONF_FILE nsx max_lp_per_bridged_ls $MAX_LP_PER_BRIDGED_LS
73 fi
74 if [[ "$MAX_LP_PER_OVERLAY_LS" != "" ]]; then
75 iniset /$Q_PLUGIN_CONF_FILE nsx max_lp_per_overlay_ls $MAX_LP_PER_OVERLAY_LS
76 fi
77 if [[ "$FAILOVER_TIME" != "" ]]; then
78 iniset /$Q_PLUGIN_CONF_FILE nsx failover_time $FAILOVER_TIME
79 fi
80 if [[ "$CONCURRENT_CONNECTIONS" != "" ]]; then
81 iniset /$Q_PLUGIN_CONF_FILE nsx concurrent_connections $CONCURRENT_CONNECTIONS
82 fi
83
84 if [[ "$DEFAULT_TZ_UUID" != "" ]]; then
85 iniset /$Q_PLUGIN_CONF_FILE DEFAULT default_tz_uuid $DEFAULT_TZ_UUID
86 else
87 die $LINENO "The VMware NSX plugin won't work without a default transport zone."
88 fi
89 if [[ "$DEFAULT_L3_GW_SVC_UUID" != "" ]]; then
90 iniset /$Q_PLUGIN_CONF_FILE DEFAULT default_l3_gw_service_uuid $DEFAULT_L3_GW_SVC_UUID
91 Q_L3_ENABLED=True
92 Q_L3_ROUTER_PER_TENANT=True
93 iniset /$Q_PLUGIN_CONF_FILE nsx metadata_mode access_network
94 fi
95 if [[ "$DEFAULT_L2_GW_SVC_UUID" != "" ]]; then
96 iniset /$Q_PLUGIN_CONF_FILE DEFAULT default_l2_gw_service_uuid $DEFAULT_L2_GW_SVC_UUID
97 fi
98 # NSX_CONTROLLERS must be a comma separated string
99 if [[ "$NSX_CONTROLLERS" != "" ]]; then
100 iniset /$Q_PLUGIN_CONF_FILE DEFAULT nsx_controllers $NSX_CONTROLLERS
101 else
102 die $LINENO "The VMware NSX plugin needs at least an NSX controller."
103 fi
104 if [[ "$NSX_USER" != "" ]]; then
105 iniset /$Q_PLUGIN_CONF_FILE DEFAULT nsx_user $NSX_USER
106 fi
107 if [[ "$NSX_PASSWORD" != "" ]]; then
108 iniset /$Q_PLUGIN_CONF_FILE DEFAULT nsx_password $NSX_PASSWORD
109 fi
110 if [[ "$NSX_REQ_TIMEOUT" != "" ]]; then
111 iniset /$Q_PLUGIN_CONF_FILE DEFAULT req_timeout $NSX_REQ_TIMEOUT
112 fi
113 if [[ "$NSX_HTTP_TIMEOUT" != "" ]]; then
114 iniset /$Q_PLUGIN_CONF_FILE DEFAULT http_timeout $NSX_HTTP_TIMEOUT
115 fi
116 if [[ "$NSX_RETRIES" != "" ]]; then
117 iniset /$Q_PLUGIN_CONF_FILE DEFAULT retries $NSX_RETRIES
118 fi
119 if [[ "$NSX_REDIRECTS" != "" ]]; then
120 iniset /$Q_PLUGIN_CONF_FILE DEFAULT redirects $NSX_REDIRECTS
121 fi
122 if [[ "$AGENT_MODE" != "" ]]; then
123 iniset /$Q_PLUGIN_CONF_FILE nsx agent_mode $AGENT_MODE
124 if [[ "$AGENT_MODE" == "agentless" ]]; then
125 if [[ "$DEFAULT_SERVICE_CLUSTER_UUID" != "" ]]; then
126 iniset /$Q_PLUGIN_CONF_FILE DEFAULT default_service_cluster_uuid $DEFAULT_SERVICE_CLUSTER_UUID
127 else
128 die $LINENO "Agentless mode requires a service cluster."
129 fi
130 iniset /$Q_PLUGIN_CONF_FILE nsx_metadata metadata_server_address $Q_META_DATA_IP
131 fi
132 fi
133}
134
Ian Wienandaee18c72014-02-21 15:35:08 +1100135function neutron_plugin_setup_interface_driver {
armando-migliaccio05952e32014-01-05 07:59:06 -0800136 local conf_file=$1
137 iniset $conf_file DEFAULT interface_driver neutron.agent.linux.interface.OVSInterfaceDriver
138}
139
Ian Wienandaee18c72014-02-21 15:35:08 +1100140function has_neutron_plugin_security_group {
armando-migliaccio05952e32014-01-05 07:59:06 -0800141 # 0 means True here
142 return 0
143}
144
Ian Wienandaee18c72014-02-21 15:35:08 +1100145function neutron_plugin_check_adv_test_requirements {
armando-migliaccio05952e32014-01-05 07:59:06 -0800146 is_service_enabled q-dhcp && return 0
147}
148
149# Restore xtrace
150$MY_XTRACE