diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-06-22 17:05:16 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-06-22 17:05:16 -0400 |
commit | e14a02086c9119532f9153c78346d5c1d6789ca9 (patch) | |
tree | 05b612b7b008fc947dc2a11e315df70b1d045afd /odlsli/src/main/resources | |
parent | 6f0c0101dcb421c75a1a49bea02d1dc7479ef7d1 (diff) |
Improve odlsli startup time
Improved odlsli startup time by moving feature installation to build
time, using ansible-opendaylight.
Change-Id: I3f846da70e9aa0b8ce818ff83811c1b52aef1436
Issue-ID: CCSDK-285
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
Diffstat (limited to 'odlsli/src/main/resources')
-rw-r--r-- | odlsli/src/main/resources/install_ccsdk.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/odlsli/src/main/resources/install_ccsdk.yml b/odlsli/src/main/resources/install_ccsdk.yml new file mode 100644 index 00000000..c478bfea --- /dev/null +++ b/odlsli/src/main/resources/install_ccsdk.yml @@ -0,0 +1,15 @@ +--- +- hosts: all + become: yes + roles: + - role: ansible-opendaylight + # ODL is already installed, so no need to specify installation method. Specify extra features to install + extra_features: + - odl-restconf-all + - odl-mdsal-all + - odl-mdsal-apidocs + - odl-daexim-all + - ccsdk-sli-core-all + - ccsdk-sli-adaptors-all + - ccsdk-sli-northbound-all + - ccsdk-sli-plugins-all
\ No newline at end of file |