Add provision to specify java arguments to ODL

Java options like heap size configuration needs
tweaking for large scale deployments. Allow
customizing those values from TripleO.

puppet-opendaylight will configure these values
in ODL. Corresponding puppet-opendaylight patch is
https://git.opendaylight.org/gerrit/#/c/68491

Change-Id: I99e08314dedfcc71a776423ac3c6c282237cc0c2
Closes-Bug: #1794073
(cherry picked from commit 865e8b574c)
This commit is contained in:
Janki Chhatbar 2018-09-24 13:47:11 +02:00
parent d482d68c62
commit 7bb9fdb97b
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.