diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/nics-compute.yaml.jinja2 | 12 | ||||
-rw-r--r-- | build/nics-controller.yaml.jinja2 | 12 | ||||
-rw-r--r-- | build/opnfv-apex-common.spec | 13 | ||||
-rwxr-xr-x | build/undercloud.sh | 1 | ||||
-rw-r--r-- | build/variables.sh | 2 | ||||
-rw-r--r-- | build/virtual-environment.yaml | 17 |
6 files changed, 29 insertions, 28 deletions
diff --git a/build/nics-compute.yaml.jinja2 b/build/nics-compute.yaml.jinja2 index 12d90596..3a73bbd8 100644 --- a/build/nics-compute.yaml.jinja2 +++ b/build/nics-compute.yaml.jinja2 @@ -106,20 +106,12 @@ resources: {%- set nic_index = 2 %} {%- if 'private_network' in enabled_networks %} - - # Create a bridge which can also be used for VLAN-mode bridge mapping - type: ovs_bridge - name: br-tenant + type: interface + name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} use_dhcp: false addresses: - ip_netmask: {get_param: TenantIpSubnet} - members: - - - type: interface - name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} - use_dhcp: false - # force the MAC address of the bridge to this interface - primary: true {%- endif %} {%- if external_net_type == "interface" %} - diff --git a/build/nics-controller.yaml.jinja2 b/build/nics-controller.yaml.jinja2 index d135e2e5..d97ee394 100644 --- a/build/nics-controller.yaml.jinja2 +++ b/build/nics-controller.yaml.jinja2 @@ -104,20 +104,12 @@ resources: {%- set nic_index = 2 %} {%- if 'private_network' in enabled_networks %} - - # Create a bridge which can also be used for VLAN-mode bridge mapping - type: ovs_bridge - name: br-tenant + type: interface + name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} use_dhcp: false addresses: - ip_netmask: {get_param: TenantIpSubnet} - members: - - - type: interface - name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} - use_dhcp: false - # force the MAC address of the bridge to this interface - primary: true {%- endif %} - type: ovs_bridge diff --git a/build/opnfv-apex-common.spec b/build/opnfv-apex-common.spec index 8048dea8..0e44ebbc 100644 --- a/build/opnfv-apex-common.spec +++ b/build/opnfv-apex-common.spec @@ -24,6 +24,8 @@ https://wiki.opnfv.org/apex rst2html docs/installation-instructions/index.rst docs/installation-instructions.html rst2html docs/release-notes/release-notes.rst docs/release-notes.html +%global __python %{__python3} + %install mkdir -p %{buildroot}%{_bindir}/ install ci/deploy.sh %{buildroot}%{_bindir}/opnfv-deploy @@ -66,13 +68,8 @@ install config/inventory/pod_example_settings.yaml %{buildroot}%{_docdir}/opnfv/ %attr(755,root,root) %{_bindir}/opnfv-util %{_var}/opt/opnfv/lib/common-functions.sh %{_var}/opt/opnfv/lib/utility-functions.sh -%{_var}/opt/opnfv/lib/python/apex-python-utils.py -%{_var}/opt/opnfv/lib/python/apex-python-utils.pyo -%{_var}/opt/opnfv/lib/python/apex-python-utils.pyc -%{python3_sitelib}/apex/ip_utils.py -%{python3_sitelib}/apex/net_env.py -%{python3_sitelib}/apex/__init__.py -%{python3_sitelib}/apex/__pycache__/* +%{_var}/opt/opnfv/lib/python/ +%{python3_sitelib}/apex/ %{_var}/opt/opnfv/lib/installer/onos/onos_gw_mac_update.sh %{_sysconfdir}/opnfv-apex/os-nosdn-nofeature-ha.yaml %{_sysconfdir}/opnfv-apex/os-odl_l2-nofeature-ha.yaml @@ -90,6 +87,8 @@ install config/inventory/pod_example_settings.yaml %{buildroot}%{_docdir}/opnfv/ %doc %{_docdir}/opnfv/inventory.yaml.example %changelog +* Sun May 15 2016 Feng Pan <fpan@redhat.com> - 3.0-5 +- Fixes python3 dependency. * Sun May 8 2016 Feng Pan <fpan@redhat.com> - 3.0-4 - Adds dependency for python34-setuptools * Fri Apr 22 2016 Feng Pan <fpan@redhat.com> - 3.0-3 diff --git a/build/undercloud.sh b/build/undercloud.sh index 65462ec8..ed4f2b34 100755 --- a/build/undercloud.sh +++ b/build/undercloud.sh @@ -67,6 +67,7 @@ LIBGUESTFS_BACKEND=direct virt-customize \ --run-command "yum update -y openwsman*" \ --run-command "cp /usr/share/instack-undercloud/undercloud.conf.sample /home/stack/undercloud.conf && chown stack:stack /home/stack/undercloud.conf" \ --upload ../opnfv-environment.yaml:/home/stack/ \ + --upload ../virtual-environment.yaml:/home/stack/ \ -a undercloud.qcow2 popd > /dev/null diff --git a/build/variables.sh b/build/variables.sh index 9bb40a9c..115650da 100644 --- a/build/variables.sh +++ b/build/variables.sh @@ -9,5 +9,5 @@ ############################################################################## rdo_images_uri=https://ci.centos.org/artifacts/rdo/images/mitaka/delorean/stable/ -onos_release_uri=http://downloads.onosproject.org/release +onos_release_uri=https://dl.dropboxusercontent.com/u/7079970/ onos_release_file=onos-1.5.0.tar.gz diff --git a/build/virtual-environment.yaml b/build/virtual-environment.yaml new file mode 100644 index 00000000..6f1d0517 --- /dev/null +++ b/build/virtual-environment.yaml @@ -0,0 +1,17 @@ +parameter_defaults: + controllerExtraConfig: + # In releases before Mitaka, HeatWorkers doesn't modify + # num_engine_workers, so handle via heat::config + heat::config::heat_config: + DEFAULT/num_engine_workers: + value: 1 + heat::api_cloudwatch::enabled: false + heat::api_cfn::enabled: false + HeatWorkers: 1 + CeilometerWorkers: 1 + CinderWorkers: 1 + GlanceWorkers: 1 + KeystoneWorkers: 1 + NeutronWorkers: 1 + NovaWorkers: 1 + SwiftWorkers: 1 |