Updated fuel adapter (ODL) 55/48855/1
authorGuillermo Herrero <guillermo.herrero@enea.com>
Tue, 26 Sep 2017 09:38:42 +0000 (11:38 +0200)
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>
Wed, 13 Dec 2017 22:38:50 +0000 (22:38 +0000)
Change-Id: I4ff233460bb4fbd88277f2798f5f6380ff3b367d
Signed-off-by: Guillermo Herrero <guillermo.herrero@enea.com>
(cherry picked from commit eeb38b5a9e900d2e0e1e52276f6b2e533eee4b1c)

config/installers/fuel/pod_config.yml.j2

index 370a3b9..5406d76 100644 (file)
@@ -5,6 +5,9 @@
     {%- set net_public = conf['net_config']['public']['network'] -%}
     {%- set vlan_mgmt = conf['net_config']['mgmt']['vlan'] -%}
     {%- set vlan_private = conf['net_config']['private']['vlan'] -%}
+    {%- if conf.net_config.public.dns is defined -%}
+        {%- set dns_public = conf['net_config']['public']['dns'] -%}
+    {%- endif -%}
 {%- else -%}
     {%- set net_admin = '192.168.11.0' -%}
     {%- set net_mgmt = '172.16.10.0' -%}
@@ -14,9 +17,7 @@
     {%- set vlan_private = '302' -%}
 {%- endif -%}
 
-{%- if conf.net_config.public.dns is defined -%}
-    {%- set dns_public = conf['net_config']['public']['dns'] -%}
-{%- else -%}
+{%- if dns_public is not defined -%}
     {%- set dns_public = [ '8.8.8.8', '8.8.4.4' ] -%}
 {%- endif -%}
 
@@ -72,11 +73,13 @@ parameters:
     opnfv_openstack_compute_node01_external_address: {{ net_public | ipaddr_index('101') }}
     opnfv_openstack_compute_node02_external_address: {{ net_public | ipaddr_index('102') }}
 
+    opnfv_opendaylight_server_node01_single_address: {{ net_mgmt | ipaddr_index('111') }}
+
     opnfv_name_servers: {{ dns_public }}
     opnfv_dns_server01: '{{ dns_public[0] }}'
 
-    opnfv_net_mgmt_vlan: {{ conf['net_config']['mgmt']['vlan'] }}
-    opnfv_net_tenant_vlan: {{ conf['net_config']['private']['vlan'] }}
+    opnfv_net_mgmt_vlan: {{ vlan_mgmt }}
+    opnfv_net_tenant_vlan: {{ vlan_private }}
 
     opnfv_maas_node01_architecture: '{{ conf['nodes'][0]['node']['arch'] | dpkg_arch }}/generic'
     opnfv_maas_node01_power_address: {{ conf['nodes'][0]['remote_management']['address'] }}