summaryrefslogtreecommitdiffstats
path: root/apex/common/constants.py
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2018-12-07 09:49:21 -0500
committerTim Rozet <trozet@redhat.com>2018-12-08 03:04:47 +0000
commitc4ac31069c875b7f0922963194954aff4a5bb644 (patch)
tree226b7e578e3e6fc2e6e3d9e448b1d56890d426c9 /apex/common/constants.py
parentf357aac22a1df2f10cca635c522e2397b2840f62 (diff)
Fix using ODL versions other than oxygen
Fixes a bug where oxygen was always being used even if a different ODL version was specified in the deploy settings. Also updates the valid ODL versions with fluorine and neon. JIRA: APEX-648 Change-Id: Ie49c28d1757cd7e57802d67e48904ce04864feaf Signed-off-by: Tim Rozet <trozet@redhat.com> (cherry picked from commit 46bf00b967844dc712dfe409e55fc5fe18fa119f)
Diffstat (limited to 'apex/common/constants.py')
-rw-r--r--apex/common/constants.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/apex/common/constants.py b/apex/common/constants.py
index 790a9e30..02fafbd0 100644
--- a/apex/common/constants.py
+++ b/apex/common/constants.py
@@ -46,7 +46,8 @@ THT_DOCKER_ENV_DIR = {
DEFAULT_OS_VERSION = 'queens'
DEFAULT_ODL_VERSION = 'oxygen'
-VALID_ODL_VERSIONS = ['carbon', 'nitrogen', 'oxygen', 'master']
+VALID_ODL_VERSIONS = ['carbon', 'nitrogen', 'oxygen', 'fluorine',
+ 'neon', 'master']
PUPPET_ODL_URL = 'https://git.opendaylight.org/gerrit/integration/packaging' \
'/puppet-opendaylight'
DEBUG_OVERCLOUD_PW = 'opnfvapex'