Merge "Exposing the ability to enable/disable the repository"

This commit is contained in:
Jenkins 2017-07-21 08:07:57 +00:00 committed by Gerrit Code Review
commit 11058c85dd
2 changed files with 10 additions and 0 deletions

View File

@ -58,6 +58,10 @@ parameters:
default: {}
description: Parameters specific to the role
type: json
OpenDaylightManageRepositories:
description: Whether to manage the OpenDaylight repository
type: boolean
default: false
outputs:
role_data:
@ -72,6 +76,7 @@ outputs:
opendaylight::enable_dhcp: {get_param: OpenDaylightEnableDHCP}
opendaylight::odl_bind_ip: {get_param: [ServiceNetMap, OpendaylightApiNetwork]}
opendaylight::nb_connection_protocol: {get_param: OpenDaylightConnectionProtocol}
opendaylight::manage_repositories: {get_param: OpenDaylightManageRepositories}
tripleo.opendaylight_api.firewall_rules:
'137 opendaylight api':
dport:

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Adding the ability to disable the OpenDaylight upstream repository.
Introducing the OpenDaylightManageRepositories parameter.