Merge "Add provision to specify java arguments to ODL" into stable/queens

This commit is contained in:
Zuul 2018-10-25 19:15:21 +00:00 committed by Gerrit Code Review
commit 0008ae451d
2 changed files with 12 additions and 0 deletions

View File

@ -87,6 +87,13 @@ parameters:
type: string
description: Specifies the default CA cert to use if TLS is used for
services in the internal network.
OpenDaylightJavaOpts:
default: ''
type: string
description: Specifies the Java options to run ODL with as a string.
Note, these options are in addition to the default Java
options set by the karaf/ODL boot scripts and IP version
based flag set by 'opendaylight' class.
parameter_groups:
- label: deprecated
@ -139,6 +146,7 @@ outputs:
- 8185
opendaylight::snat_mechanism: {get_param: OpenDaylightSNATMechanism}
opendaylight::log_mechanism: {get_param: OpenDaylightLogMechanism}
opendaylight::java_opts: {get_param: OpenDaylightJavaOpts}
-
if:
- internal_tls_enabled

View File

@ -0,0 +1,4 @@
---
features:
- |
Add provision to set java options like heap size configurations in ODL.