Uplift to Fuel 10 and OpenStack Newton
- Change repo branches to point to stable/newton - Fix inject plugins script Change-Id: Ia3622f7123d79f59f9d45efeef7f6982b54f5038
This commit is contained in:
parent
ec80a6b545
commit
fefc32d6ba
@ -14,7 +14,7 @@ Requirements
|
||||
|
||||
| Requirement | Version/Comment |
|
||||
|----------------------------------|-----------------|
|
||||
| Mirantis OpenStack compatibility | 8.0 |
|
||||
| Mirantis OpenStack compatibility | 10.0 |
|
||||
|
||||
Recommendations
|
||||
---------------
|
||||
@ -76,5 +76,4 @@ Contributors
|
||||
nikolas.hermanns@ericsson.com
|
||||
mskalski@mirantis.com
|
||||
tim.irnich@ericsson.com
|
||||
|
||||
|
||||
rski@intracom-telecom.com
|
||||
|
@ -14,9 +14,7 @@ if [ -e conf_file ]; then
|
||||
exit 1
|
||||
fi
|
||||
if ! grep -q "$service_plugin" $conf_file ; then
|
||||
service_plugins_v1=$(grep "^service_plugins" $conf_file | awk {'print $3'})
|
||||
service_plugins_v2=$(grep "^service_plugins" $conf_file | awk {'print $2'})
|
||||
service_plugins=${service_plugins_v1:-$service_plugins_v2}
|
||||
service_plugins=$(grep "^service_plugins" $conf_file)
|
||||
sed -i "s/$service_plugins/$service_plugins,$service_plugin/" $conf_file
|
||||
fi
|
||||
|
||||
|
@ -3,11 +3,11 @@ name: bgpvpn
|
||||
# Human-readable name for your plugin
|
||||
title: BGPVPN plugin
|
||||
# Plugin version
|
||||
version: '0.9.0'
|
||||
version: '1.0.0'
|
||||
# Description
|
||||
description: 'This plugin provides BGPVPN extension for neutron.'
|
||||
# Required fuel version
|
||||
fuel_version: ['9.0']
|
||||
fuel_version: ['10.0']
|
||||
# Specify license of your plugin
|
||||
licenses: ['Apache License Version 2.0']
|
||||
# Specify author or company name
|
||||
@ -21,7 +21,7 @@ groups: ['network']
|
||||
# The plugin is compatible with releases in the list
|
||||
releases:
|
||||
- os: ubuntu
|
||||
version: mitaka-9.0
|
||||
version: newton-10.0
|
||||
mode: ['ha', 'multinode']
|
||||
deployment_scripts_path: deployment_scripts/
|
||||
repository_path: repositories/ubuntu
|
||||
|
@ -8,13 +8,11 @@ set -eux
|
||||
# Networking bgpvpn
|
||||
NETWORKING_BGPVPN_REPO=${NETWORKING_BGPVPN_REPO:-https://github.com/openstack/networking-bgpvpn.git}
|
||||
|
||||
# This commit https://github.com/openstack/networking-bgpvpn/commit/98d038079ee9004ac1032741c5b61e057e9118fc
|
||||
# breaks builds of deb package using fpm, point to one behind
|
||||
NETWORKING_BGPVPN_BRANCH=${NETWORKING_BGPVPN_BRANCH:-4b92d0cbe43097e1e86f2b7716f958c16a4e00e3}
|
||||
NETWORKING_BGPVPN_BRANCH=${NETWORKING_BGPVPN_BRANCH:-stable/newton}
|
||||
|
||||
#Networking odl
|
||||
NETWORKING_ODL_REPO=${NETWORKING_ODL_REPO:-https://github.com/openstack/networking-odl.git}
|
||||
NETWORKING_ODL_BRANCH=${NETWORKING_ODL_BRANCH:-stable/mitaka}
|
||||
NETWORKING_ODL_BRANCH=${NETWORKING_ODL_BRANCH:-stable/newton}
|
||||
|
||||
# For which systems odl package should be build
|
||||
BUILD_FOR=${BUILD_FOR:-ubuntu}
|
||||
|
Loading…
Reference in New Issue
Block a user