-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated to describe Brooklyn OSGi installation
the `brooklyn.sh` code is still present but not referred to in docs, as non-OSGi is now deprecated in Apache Brooklyn
- Loading branch information
Showing
3 changed files
with
66 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
brooklyn-tosca - karaf/init | ||
=== | ||
|
||
[](https://travis-ci.org/cloudsoft/brooklyn-tosca) | ||
|
||
## Overview | ||
|
||
This project builds a plugin to [Apache Brooklyn](http://brooklyn.io) | ||
to understand [OASIS TOSCA](https://www.oasis-open.org/committees/tosca/) plans, | ||
using [Alien4Cloud](http://alien4cloud.github.io). | ||
|
||
It can be run as a standalone file, launching Brooklyn, or the JAR dropped in to your own Brooklyn. | ||
|
||
|
||
## Build Notes | ||
|
||
Consult the instructions in the root ancestor project for build instructions. | ||
|
||
|
||
## Running | ||
|
||
Once the project is built: | ||
|
||
1. Install the `jar` bundle from the `target/` of this project to the Apache Brooklyn Karaf server | ||
|
||
2. Add the [Alien4Cloud configuration file](../../brooklyn-tosca-dist/src/main/assembly/files/conf/alien4cloud-config.yml) | ||
to the Apache Brooklyn Karaf `etc/` folder. | ||
|
||
3. Add the following to the Apache Brooklyn Karaf `system.properties` file (also in `etc/`): | ||
|
||
``` | ||
brooklyn.experimental.feature.tosca=true | ||
alien4cloud-config.file=${karaf.etc}/alien4cloud-config.yml | ||
``` | ||
|
||
4. Start (or restart) Apache Brooklyn. The Tosca code bundle initializes only when necessary, so visit the Brooklyn server in a browser to trigger ahead of time. Initialization may take a couple minutes. | ||
|
||
That's it. You can now run TOSCA files from Apache Brooklyn! | ||
|