├── brooklyn-dist ├── release │ ├── .gitignore │ ├── gpg-agent.conf │ └── pull-request-reports │ │ ├── Gemfile │ │ └── pr_report.rb ├── archetypes │ └── quickstart │ │ └── src │ │ ├── main │ │ └── resources │ │ │ └── .gitignore │ │ ├── test │ │ └── resources │ │ │ └── projects │ │ │ └── integration-test-1 │ │ │ ├── goal.txt │ │ │ └── .gitignore │ │ └── brooklyn-sample │ │ └── src │ │ └── main │ │ ├── resources │ │ ├── sample-icon.png │ │ └── logback-custom.xml │ │ └── assembly │ │ └── files │ │ └── conf │ │ └── logback.xml ├── dist │ ├── licensing │ │ ├── .gitignore │ │ ├── projects-with-custom-licenses │ │ ├── extras-files │ │ └── licenses │ │ │ └── binary │ │ │ └── WTFPL │ └── src │ │ └── main │ │ ├── license │ │ ├── README.md │ │ └── files │ │ │ ├── NOTICE │ │ │ └── DISCLAIMER │ │ └── dist │ │ ├── bin │ │ └── .gitattributes │ │ ├── README.md │ │ └── conf │ │ └── logback.xml ├── NOTICE ├── .gitattributes ├── README.md └── .gitignore ├── brooklyn-docs ├── _build │ ├── config-guide-root.yml │ ├── serve-site.sh │ ├── config-style-latest.yml │ ├── tests │ │ └── jsonball │ │ │ ├── test_jsonball_file.json │ │ │ ├── test_jsonball_page.json │ │ │ ├── toc.json │ │ │ └── test_jsonball.md │ ├── config-guide-latest.yml │ ├── config-website-root.yml │ ├── config-exclude-root-index.yml │ ├── config-exclude-guide.yml │ ├── config-exclude-all-but-guide.yml │ ├── serve-public-site.sh │ ├── config-guide-version.yml │ ├── quick-make-few-javadoc.sh │ ├── config-production.yml │ └── config-subpath-brooklyn.yml ├── guide │ ├── yaml │ │ ├── test │ │ │ ├── example_yaml │ │ │ │ ├── entities │ │ │ │ │ ├── script1.sh │ │ │ │ │ ├── testsensor-entity.yaml │ │ │ │ │ ├── testcase-entity.yaml │ │ │ │ │ ├── paralleltestcase-entity.yaml │ │ │ │ │ ├── testhttpcall-entity.yaml │ │ │ │ │ ├── loopovergroupmembers-entity.yaml │ │ │ │ │ ├── testeffector-entity.yaml │ │ │ │ │ ├── infrastructuredeploymenttestcase-entity.yaml │ │ │ │ │ └── simpleshellcommandtest-entity.yaml │ │ │ │ └── testcases │ │ │ │ │ ├── sensor-test-snippet.yaml │ │ │ │ │ └── http-test-snippet.yaml │ │ │ └── images │ │ │ │ ├── getting-started-blueprint-test.png │ │ │ │ └── getting-started-blueprint-test-large.png │ │ ├── web-console-yaml.png │ │ ├── chef │ │ │ ├── chef-call-flow.png │ │ │ └── index.md │ │ ├── web-console-yaml-700.png │ │ ├── example_yaml │ │ │ ├── simple-appserver.yaml │ │ │ ├── vanilla-bash-netcat-reference.yaml │ │ │ ├── simple-vm.yaml │ │ │ ├── vanilla-bash-netcat-file.yaml │ │ │ ├── vanilla-bash-netcat.yaml │ │ │ ├── simple-appserver-with-location.yaml │ │ │ ├── appserver-configured.yaml │ │ │ ├── vanilla-bash-netcat-cluster.yaml │ │ │ ├── appserver-configured-in-config.yaml │ │ │ ├── simple-appserver-with-location-byon.yaml │ │ │ ├── cluster-vm.yaml │ │ │ ├── vanilla-bash-netcat-port.yaml │ │ │ ├── vanilla-bash-netcat-port-parameter.yaml │ │ │ ├── appserver-w-db.yaml │ │ │ ├── vanilla-bash-netcat-restarter.yaml │ │ │ ├── vanilla-bash-netcat-more-commands.yaml │ │ │ └── appserver-clustered-w-db-concise.yaml │ │ └── index.md │ ├── java │ │ ├── wt-starting.png │ │ ├── wt-starting-700.png │ │ ├── wt-tree-jboss-sensors.png │ │ ├── wt-deployed-application.png │ │ ├── wt-deployed-application-700.png │ │ ├── wt-tree-jboss-sensors-700.png │ │ └── index.md │ ├── start │ │ ├── images │ │ │ ├── my-web.png │ │ │ ├── my-web-large.png │ │ │ ├── my-web-summary.png │ │ │ ├── my-web-summary-large.png │ │ │ ├── my-db-activities-step1.png │ │ │ ├── my-db-activities-step2.png │ │ │ ├── my-db-activities-step3.png │ │ │ ├── my-web-cluster-starting.png │ │ │ ├── add-application-modal-yaml.png │ │ │ ├── my-db-activities-step1-large.png │ │ │ ├── my-db-activities-step2-large.png │ │ │ ├── my-db-activities-step3-large.png │ │ │ ├── my-web-cluster-stop-confirm.png │ │ │ ├── my-web-validating-app-endpoint.png │ │ │ ├── add-application-modal-yaml-large.png │ │ │ ├── my-web-cluster-stop-confirm-large.png │ │ │ ├── my-web-validating-app-endpoint-large.png │ │ │ ├── add-application-catalog-web-cluster-with-db.png │ │ │ ├── add-application-catalog-web-cluster-with-db-large.png │ │ │ ├── add-application-catalog-web-cluster-with-db-location.png │ │ │ └── add-application-catalog-web-cluster-with-db-location-large.png │ │ └── index.md │ ├── ops │ │ ├── gui │ │ │ ├── images │ │ │ │ ├── my-web.png │ │ │ │ ├── my-web-large.png │ │ │ │ ├── my-web-summary.png │ │ │ │ ├── home-app-starting.png │ │ │ │ ├── my-db-activities-step1.png │ │ │ │ ├── my-db-activities-step2.png │ │ │ │ ├── my-db-activities-step3.png │ │ │ │ ├── my-web-summary-large.png │ │ │ │ ├── home-app-starting-large.png │ │ │ │ ├── my-web-cluster-starting.png │ │ │ │ ├── add-application-modal-yaml.png │ │ │ │ ├── my-web-cluster-stop-confirm.png │ │ │ │ ├── my-db-activities-step1-large.png │ │ │ │ ├── my-db-activities-step2-large.png │ │ │ │ ├── my-db-activities-step3-large.png │ │ │ │ ├── add-application-modal-yaml-large.png │ │ │ │ ├── my-web-validating-app-endpoint.png │ │ │ │ ├── my-web-cluster-stop-confirm-large.png │ │ │ │ ├── my-web-validating-app-endpoint-large.png │ │ │ │ ├── add-application-catalog-web-cluster-with-db.png │ │ │ │ ├── add-application-catalog-web-cluster-with-db-large.png │ │ │ │ ├── add-application-catalog-web-cluster-with-db-location.png │ │ │ │ └── add-application-catalog-web-cluster-with-db-location-large.png │ │ │ └── index.md │ │ ├── catalog │ │ │ ├── mysql-in-catalog.png │ │ │ ├── images │ │ │ │ └── add-to-catalog.png │ │ │ └── mysql-in-catalog-w700.png │ │ ├── troubleshooting │ │ │ ├── images │ │ │ │ ├── failed-task.png │ │ │ │ ├── jmx-sensors.png │ │ │ │ ├── external-error.png │ │ │ │ ├── jmx-sensors-all.png │ │ │ │ ├── script-failure.png │ │ │ │ ├── failed-task-large.png │ │ │ │ ├── jmx-sensors-large.png │ │ │ │ ├── external-error-large.png │ │ │ │ ├── resource-exception.png │ │ │ │ ├── script-failure-large.png │ │ │ │ ├── jmx-sensors-all-large.png │ │ │ │ └── resource-exception-large.png │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ └── index.md │ ├── concepts │ │ ├── brooklyn-flow-websequencediagrams.com.png │ │ ├── brooklyn-flow-websequencediagrams.com-w400.png │ │ ├── policies.md │ │ └── index.md │ ├── dev │ │ └── env │ │ │ ├── index.md │ │ │ └── ide │ │ │ └── eclipse.include.md │ ├── misc │ │ ├── javadoc │ │ │ └── index.md │ │ └── index.md │ ├── index.md │ └── glossary.json ├── favicon.ico ├── style │ ├── img │ │ ├── ok.png │ │ ├── bridge.png │ │ ├── brooklyn.gif │ │ ├── feather.png │ │ ├── warning.png │ │ ├── clipboard.png │ │ ├── irc-256-black.png │ │ ├── irc-256-green.png │ │ ├── divider-quicklinks.gif │ │ ├── github-1024-black.png │ │ ├── github-256-black.png │ │ ├── github-256-green.png │ │ ├── twitter-256-black.png │ │ ├── twitter-256-green.png │ │ ├── twitter-4096-black.png │ │ ├── bridge-large-no-title.png │ │ ├── clipboard-green-click.png │ │ ├── clipboard-green-hover.png │ │ ├── clipboard-green-normal.png │ │ ├── apache-brooklyn-logo-244px-wide.png │ │ └── apache-brooklyn-logo-817px-wide.png │ ├── deps │ │ ├── font-awesome-4.2.0 │ │ │ ├── _LICENSE │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── larger.less │ │ │ │ ├── core.less │ │ │ │ ├── list.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── stacked.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ └── path.less │ │ │ └── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _path.scss │ │ │ │ └── _rotated-flipped.scss │ │ ├── octicons │ │ │ ├── octicons.eot │ │ │ ├── octicons.ttf │ │ │ ├── octicons.woff │ │ │ ├── octicons-local.ttf │ │ │ ├── README.md │ │ │ └── LICENSE.txt │ │ ├── README.md │ │ ├── jquery-ui │ │ │ └── images │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ └── bootstrap-fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── js │ │ └── _readme.txt │ └── css │ │ ├── _tooltips.scss │ │ ├── website.scss │ │ ├── _landing.scss │ │ ├── _search.scss │ │ ├── _util.scss │ │ └── _footer.scss ├── _includes │ ├── feature-image.html │ ├── feature-item.html │ ├── list-children.html │ ├── feature-item-end.html │ └── footer.html ├── website │ ├── developers │ │ ├── fork-new.png │ │ ├── fork-after.png │ │ ├── fork-before.png │ │ ├── pull-request.png │ │ ├── committers │ │ │ ├── index.md │ │ │ └── release-process │ │ │ │ ├── fix-release.md │ │ │ │ └── environment-variables.md │ │ └── code-standards.md │ ├── learnmore │ │ └── features │ │ │ ├── ops-rest.png │ │ │ ├── ops-console.png │ │ │ ├── java-hierarchy.png │ │ │ ├── blueprint-compose.png │ │ │ ├── blueprint-machine-specs.png │ │ │ ├── index.md │ │ │ ├── blueprinting.md │ │ │ └── policy-based-mgmt.md │ ├── documentation │ │ ├── other-docs.md │ │ └── index.md │ ├── community │ │ └── irc.md │ └── meta │ │ └── sitemap.md ├── _extra │ ├── big_examples │ │ ├── global-web-fabric │ │ │ ├── console-map.png │ │ │ ├── console-map-w700.png │ │ │ ├── geopaas-deployed-app.png │ │ │ ├── geopaas-deployed-app-w700.png │ │ │ ├── console-geoscaling-details.png │ │ │ └── console-geoscaling-details-w700.png │ │ ├── nosql-cassandra │ │ │ └── index.md │ │ ├── webcluster │ │ │ └── index.md │ │ ├── webcluster.md │ │ ├── simple-web-cluster.md │ │ ├── index.md │ │ └── toc.json │ ├── simple_java_examples │ │ └── example_files │ │ │ ├── tomcat_simple.java │ │ │ ├── tomcat_multi-location.java │ │ │ └── tomcat_nginx.java │ └── update-docs.md ├── NOTICE ├── .gitattributes ├── Gemfile ├── .gitignore └── index.md ├── brooklyn-library ├── examples │ ├── simple-nosql-cluster │ │ └── .gitignore │ ├── webapps │ │ ├── hello-world-sql │ │ │ ├── .gitignore │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── webapp │ │ │ │ └── images │ │ │ │ ├── bridge-small.png │ │ │ │ └── BrooklynBridge3Large.png │ │ └── hello-world-webapp │ │ │ ├── .gitignore │ │ │ └── src │ │ │ └── main │ │ │ └── webapp │ │ │ └── images │ │ │ ├── bridge-small.png │ │ │ ├── BrooklynBridge3Large.png │ │ │ └── bridge-large-no-title.png │ ├── simple-messaging-pubsub │ │ └── .gitignore │ ├── global-web-fabric │ │ └── .gitignore │ └── simple-web-cluster │ │ ├── .gitignore │ │ └── src │ │ └── main │ │ └── resources │ │ └── org │ │ └── apache │ │ └── brooklyn │ │ └── demo │ │ └── glossy-3d-blue-web-icon.png ├── sandbox │ └── mobile-app │ │ └── src │ │ └── main │ │ └── webapp │ │ └── assets │ │ └── mobile │ │ ├── libs │ │ ├── angular-1.2.19 │ │ │ ├── version.txt │ │ │ ├── version.json │ │ │ ├── angular-csp.css │ │ │ └── angular-cookies.min.js │ │ ├── angular-translate │ │ │ ├── bower.json │ │ │ ├── README.md │ │ │ └── .bower.json │ │ ├── angular-translate-storage-local │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── angular-translate-storage-local.min.js │ │ │ └── .bower.json │ │ ├── angular-translate-storage-cookie │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── angular-translate-storage-cookie.min.js │ │ │ ├── angular-translate-storage-cookie.js │ │ │ └── .bower.json │ │ ├── mcasimir-mobile-angular-ui-be39011 │ │ │ └── dist │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ └── angular-translate-loader-static-files │ │ │ ├── bower.json │ │ │ ├── README.md │ │ │ ├── angular-translate-loader-static-files.min.js │ │ │ └── .bower.json │ │ └── images │ │ └── brooklyn-logo.png ├── software │ ├── nosql │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── org │ │ │ │ └── apache │ │ │ │ │ └── brooklyn │ │ │ │ │ └── entity │ │ │ │ │ └── nosql │ │ │ │ │ ├── couchdb │ │ │ │ │ ├── couch.uri │ │ │ │ │ └── couch.ini │ │ │ │ │ ├── mongodb │ │ │ │ │ ├── default.conf │ │ │ │ │ └── default-mongod.conf │ │ │ │ │ ├── riak │ │ │ │ │ └── riak.png │ │ │ │ │ ├── cassandra │ │ │ │ │ └── cassandra-rackdc.properties │ │ │ │ │ ├── redis │ │ │ │ │ ├── redis.conf │ │ │ │ │ └── slave.conf │ │ │ │ │ └── solr │ │ │ │ │ └── solr.xml │ │ │ │ ├── redis-logo.png │ │ │ │ ├── solr-logo.png │ │ │ │ ├── couchdb-logo.png │ │ │ │ ├── mongodb-logo.png │ │ │ │ ├── cassandra-logo.png │ │ │ │ └── couchbase-logo.png │ │ │ └── test │ │ │ └── resources │ │ │ ├── solr │ │ │ ├── example.tgz │ │ │ └── example │ │ │ │ └── core.properties │ │ │ ├── test-mongodb-router.conf │ │ │ ├── test-mongodb-configserver.conf │ │ │ └── test-mongodb.conf │ ├── network │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── isc-logo.png │ ├── osgi │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ └── karaf-logo.png │ │ │ └── test │ │ │ └── resources │ │ │ └── hello-world.jar │ ├── webapp │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── jboss_logo.png │ │ │ │ ├── jetty-logo.png │ │ │ │ ├── nginx-logo.jpeg │ │ │ │ ├── nodejs-logo.png │ │ │ │ ├── tomcat-logo.png │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── brooklyn │ │ │ │ └── entity │ │ │ │ └── webapp │ │ │ │ └── sample-java-keystore.jks │ │ │ └── test │ │ │ └── resources │ │ │ └── ssl │ │ │ └── certs │ │ │ └── localhost │ │ │ ├── info.txt │ │ │ └── server.csr │ ├── messaging │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── RabbitMQLogo.png │ │ │ ├── qpid-logo.jpeg │ │ │ ├── redis-logo.jpeg │ │ │ ├── activemq-logo.png │ │ │ └── org │ │ │ └── apache │ │ │ └── brooklyn │ │ │ └── entity │ │ │ └── messaging │ │ │ ├── kafka │ │ │ ├── kafka-google-doorway.jpg │ │ │ └── zookeeper.properties │ │ │ └── rabbit │ │ │ └── rabbitmq.config │ └── database │ │ └── src │ │ └── main │ │ └── resources │ │ ├── mysql-logo-110x57.png │ │ ├── mariadb-logo-180x119.png │ │ ├── postgresql-logo-200px.png │ │ └── org │ │ └── apache │ │ └── brooklyn │ │ └── entity │ │ └── database │ │ └── mariadb │ │ └── my.cnf ├── qa │ ├── src │ │ ├── main │ │ │ └── resources │ │ │ │ └── hello-world.war │ │ └── test │ │ │ └── projects │ │ │ └── downstream-parent-test │ │ │ └── README │ └── log-exclusions.txt ├── NOTICE ├── .gitattributes ├── README.md └── .gitignore ├── brooklyn-server ├── rest │ ├── rest-api │ │ └── src │ │ │ └── test │ │ │ └── resources │ │ │ └── fixtures │ │ │ ├── service-state.json │ │ │ ├── api-error-no-details.json │ │ │ ├── location.json │ │ │ ├── entity-only-type.json │ │ │ ├── api-error-basic.json │ │ │ ├── location-without-credential.json │ │ │ ├── entity.json │ │ │ ├── location-summary.json │ │ │ ├── sensor-current-state.json │ │ │ ├── location-list.json │ │ │ ├── sensor-summary.json │ │ │ ├── effector-summary.json │ │ │ ├── application-spec.json │ │ │ ├── catalog-application.json │ │ │ ├── server-version.json │ │ │ ├── task-summary-list.json │ │ │ ├── ha-summary.json │ │ │ ├── entity-summary.json │ │ │ ├── entity-summary-list.json │ │ │ └── application.json │ └── rest-server │ │ └── src │ │ ├── test │ │ └── resources │ │ │ └── brooklyn-test-logo.jpg │ │ └── main │ │ └── resources │ │ └── not-a-jar-file.txt ├── core │ └── src │ │ ├── test │ │ └── resources │ │ │ ├── server.ks │ │ │ ├── hello-world.war │ │ │ ├── hello-world-no-mapping.war │ │ │ ├── org │ │ │ └── apache │ │ │ │ └── brooklyn │ │ │ │ ├── core │ │ │ │ └── test │ │ │ │ │ └── rebind │ │ │ │ │ └── sample-app-in-catalog │ │ │ │ │ └── brooklyn-AppInCatalog.jar │ │ │ │ └── location │ │ │ │ └── basic │ │ │ │ └── sample_id_rsa.pub │ │ │ └── brooklyn │ │ │ └── util │ │ │ └── crypto │ │ │ ├── sample_rsa.pem.pub │ │ │ ├── sample_rsa_passphrase.pem.pub │ │ │ ├── sample_dsa.pem.pub │ │ │ └── sample_dsa.pem │ │ └── main │ │ └── resources │ │ └── brooklyn │ │ └── empty.catalog.bom ├── launcher │ └── src │ │ └── test │ │ └── resources │ │ ├── client.ks │ │ ├── client.ts │ │ ├── server.ks │ │ └── server.ts ├── karaf │ └── features │ │ └── src │ │ └── main │ │ └── resources │ │ └── .gitignore ├── NOTICE ├── .gitattributes ├── server-cli │ └── src │ │ ├── main │ │ └── license │ │ │ ├── files │ │ │ ├── NOTICE │ │ │ └── DISCLAIMER │ │ │ └── README.md │ │ └── test │ │ └── license │ │ └── files │ │ ├── NOTICE │ │ └── DISCLAIMER ├── utils │ ├── rt-osgi │ │ └── src │ │ │ └── test │ │ │ ├── resources │ │ │ └── brooklyn │ │ │ │ └── osgi │ │ │ │ ├── brooklyn-osgi-test-a_0.1.0.jar │ │ │ │ ├── brooklyn-test-osgi-entities.jar │ │ │ │ ├── brooklyn-test-osgi-more-entities_0.1.0.jar │ │ │ │ ├── brooklyn-test-osgi-more-entities_0.2.0.jar │ │ │ │ └── brooklyn-test-osgi-more-entities_evil-twin_0.2.0.jar │ │ │ └── dependencies │ │ │ └── osgi │ │ │ └── entities │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── org │ │ │ └── apache │ │ │ └── brooklyn │ │ │ └── test │ │ │ └── osgi │ │ │ └── entities │ │ │ └── icon.gif │ └── jmx │ │ └── jmxmp-ssl-agent │ │ └── src │ │ └── main │ │ └── license │ │ ├── DISCLAIMER.shaded │ │ └── NOTICE.shaded ├── README.md ├── .gitignore └── camp │ └── camp-brooklyn │ └── README.md ├── brooklyn-ui ├── src │ ├── main │ │ ├── webapp │ │ │ ├── favicon.ico │ │ │ └── assets │ │ │ │ ├── img │ │ │ │ ├── fire.png │ │ │ │ ├── bridge.png │ │ │ │ ├── brooklyn.png │ │ │ │ ├── document.png │ │ │ │ ├── toggle-small.png │ │ │ │ ├── folder-horizontal.png │ │ │ │ ├── icon-status-onfire.png │ │ │ │ ├── magnifying-glass.gif │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── icon-status-running.png │ │ │ │ ├── icon-status-starting.gif │ │ │ │ ├── icon-status-stopped.png │ │ │ │ ├── icon-status-stopping.gif │ │ │ │ ├── toggle-small-expand.png │ │ │ │ ├── magnifying-glass-right.png │ │ │ │ ├── glyphicons-halflings-green.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── icon-status-running-onfire.png │ │ │ │ ├── icon-status-stopped-onfire.png │ │ │ │ ├── magnifying-glass-right-icon.png │ │ │ │ ├── glyphicons-halflings-bright-green.png │ │ │ │ └── glyphicons-halflings-dark-green.png │ │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── throbber.gif │ │ │ │ ├── back_enabled.png │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── brooklyn-logo.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── main-menu-tab.png │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── addApplication-plus.png │ │ │ │ ├── application-icon-add.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── main-menu-tab-active.png │ │ │ │ ├── main-menu-tab-hover.png │ │ │ │ ├── nav-tabs-background.png │ │ │ │ ├── sort_desc_disabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── addApplication-plus-hover.png │ │ │ │ ├── application-icon-refresh.png │ │ │ │ ├── roundedSummary-background.png │ │ │ │ ├── application-icon-add-hover.png │ │ │ │ ├── brooklyn-header-background.png │ │ │ │ └── application-icon-refresh-hover.png │ │ │ │ ├── swagger-ui │ │ │ │ ├── images │ │ │ │ │ ├── throbber.gif │ │ │ │ │ ├── wordnik_api.png │ │ │ │ │ ├── explorer_icons.png │ │ │ │ │ └── pet_store_api.png │ │ │ │ └── fonts │ │ │ │ │ ├── droid-sans-v6-latin-700.eot │ │ │ │ │ ├── droid-sans-v6-latin-700.ttf │ │ │ │ │ ├── droid-sans-v6-latin-700.woff │ │ │ │ │ ├── droid-sans-v6-latin-700.woff2 │ │ │ │ │ ├── droid-sans-v6-latin-regular.eot │ │ │ │ │ ├── droid-sans-v6-latin-regular.ttf │ │ │ │ │ ├── droid-sans-v6-latin-regular.woff │ │ │ │ │ └── droid-sans-v6-latin-regular.woff2 │ │ │ │ └── js │ │ │ │ └── libs │ │ │ │ └── jquery.wiggle.min.js │ │ └── license │ │ │ ├── files │ │ │ ├── NOTICE │ │ │ └── DISCLAIMER │ │ │ └── README.md │ ├── build │ │ ├── .gitattributes │ │ ├── optimize-css.json │ │ └── optimize-js.json │ └── test │ │ └── license │ │ ├── NOTICE │ │ └── DISCLAIMER ├── NOTICE ├── .gitattributes ├── .gitignore └── README.md ├── NOTICE ├── brooklyn ├── NOTICE ├── .gitattributes └── .gitignore ├── .gitattributes └── .gitignore /brooklyn-dist/release/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | tmp 3 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-guide-root.yml: -------------------------------------------------------------------------------- 1 | path: 2 | guide: "" 3 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/serve-site.sh: -------------------------------------------------------------------------------- 1 | ruby -run -e httpd _site/ -p 4000 2 | -------------------------------------------------------------------------------- /brooklyn-library/examples/simple-nosql-cluster/.gitignore: -------------------------------------------------------------------------------- 1 | resources/lib/ -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-sql/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /brooklyn-library/examples/simple-messaging-pubsub/.gitignore: -------------------------------------------------------------------------------- 1 | resources/lib/ -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-style-latest.yml: -------------------------------------------------------------------------------- 1 | path: 2 | style: /v/latest/style 3 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/tests/jsonball/test_jsonball_file.json: -------------------------------------------------------------------------------- 1 | { "a": "file" } 2 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/service-state.json: -------------------------------------------------------------------------------- 1 | running -------------------------------------------------------------------------------- /brooklyn-dist/release/gpg-agent.conf: -------------------------------------------------------------------------------- 1 | default-cache-ttl 7200 2 | max-cache-ttl 86400 3 | -------------------------------------------------------------------------------- /brooklyn-dist/archetypes/quickstart/src/main/resources/.gitignore: -------------------------------------------------------------------------------- 1 | archetype-resources 2 | -------------------------------------------------------------------------------- /brooklyn-dist/dist/licensing/.gitignore: -------------------------------------------------------------------------------- 1 | LICENSE.autogenerated 2 | notices.autogenerated 3 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/script1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo hello world -------------------------------------------------------------------------------- /brooklyn-dist/archetypes/quickstart/src/test/resources/projects/integration-test-1/goal.txt: -------------------------------------------------------------------------------- 1 | install -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-guide-latest.yml: -------------------------------------------------------------------------------- 1 | path: 2 | guide: /v/latest 3 | website: "" 4 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-website-root.yml: -------------------------------------------------------------------------------- 1 | path: 2 | website: "" 3 | guide: "/v/latest" 4 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-exclude-root-index.yml: -------------------------------------------------------------------------------- 1 | exclude: ['/Gemfile*','/README.md','/index.md'] 2 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-1.2.19/version.txt: -------------------------------------------------------------------------------- 1 | 1.2.19 -------------------------------------------------------------------------------- /brooklyn-dist/archetypes/quickstart/src/test/resources/projects/integration-test-1/.gitignore: -------------------------------------------------------------------------------- 1 | reference 2 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-exclude-guide.yml: -------------------------------------------------------------------------------- 1 | exclude: ['/Gemfile*','/README.md','/index.md','/guide/'] 2 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/tests/jsonball/test_jsonball_page.json: -------------------------------------------------------------------------------- 1 | {% assign x = "page" %} 2 | { "a": "{{ x }}" } 3 | -------------------------------------------------------------------------------- /brooklyn-docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/favicon.ico -------------------------------------------------------------------------------- /brooklyn-dist/dist/licensing/projects-with-custom-licenses: -------------------------------------------------------------------------------- 1 | ../../brooklyn-ui 2 | ../../brooklyn-server/server-cli 3 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-exclude-all-but-guide.yml: -------------------------------------------------------------------------------- 1 | exclude: ['/Gemfile*','/README.md','/index.md','/website/'] 2 | -------------------------------------------------------------------------------- /brooklyn-docs/style/img/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/ok.png -------------------------------------------------------------------------------- /brooklyn-dist/dist/src/main/license/README.md: -------------------------------------------------------------------------------- 1 | See /usage/dist/licensing/README.md for an explanation of this directory. 2 | 3 | -------------------------------------------------------------------------------- /brooklyn-docs/_includes/feature-image.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/serve-public-site.sh: -------------------------------------------------------------------------------- 1 | ruby -run -e httpd ${BROOKLYN_SITE_DIR-../../incubator-brooklyn-site-public} -p 4000 2 | -------------------------------------------------------------------------------- /brooklyn-docs/style/img/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/bridge.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/brooklyn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/brooklyn.gif -------------------------------------------------------------------------------- /brooklyn-docs/style/img/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/feather.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/warning.png -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/api-error-no-details.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "explanatory message" 3 | } -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/location.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"localhost", 3 | "spec":"localhost" 4 | } -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/_LICENSE: -------------------------------------------------------------------------------- 1 | License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 2 | -------------------------------------------------------------------------------- /brooklyn-docs/style/img/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/clipboard.png -------------------------------------------------------------------------------- /brooklyn-library/examples/global-web-fabric/.gitignore: -------------------------------------------------------------------------------- 1 | brooklyn-example-global-web-fabric/ 2 | brooklyn-example-global-web-fabric.tar.gz -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/wt-starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/java/wt-starting.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/irc-256-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/irc-256-black.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/irc-256-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/irc-256-green.png -------------------------------------------------------------------------------- /brooklyn-library/examples/simple-web-cluster/.gitignore: -------------------------------------------------------------------------------- 1 | brooklyn-example-simple-web-cluster/ 2 | brooklyn-example-simple-web-cluster.tar.gz 3 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web.png -------------------------------------------------------------------------------- /brooklyn-ui/src/build/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | nodejs text eol=lf 3 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/wt-starting-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/java/wt-starting-700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/web-console-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/yaml/web-console-yaml.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/octicons/octicons.eot -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/octicons/octicons.ttf -------------------------------------------------------------------------------- /brooklyn-docs/style/img/divider-quicklinks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/divider-quicklinks.gif -------------------------------------------------------------------------------- /brooklyn-docs/style/img/github-1024-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/github-1024-black.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/github-256-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/github-256-black.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/github-256-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/github-256-green.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/twitter-256-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/twitter-256-black.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/twitter-256-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/twitter-256-green.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/twitter-4096-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/twitter-4096-black.png -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/fork-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/developers/fork-new.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/chef/chef-call-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/yaml/chef/chef-call-flow.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/octicons/octicons.woff -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/fork-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/developers/fork-after.png -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/fork-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/developers/fork-before.png -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/entity-only-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"org.apache.brooklyn.entity.java.VanillaJavaApp" 3 | } 4 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/fire.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/wt-tree-jboss-sensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/java/wt-tree-jboss-sensors.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-summary.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/web-console-yaml-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/yaml/web-console-yaml-700.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/bridge-large-no-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/bridge-large-no-title.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/clipboard-green-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/clipboard-green-click.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/clipboard-green-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/clipboard-green-hover.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/clipboard-green-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/clipboard-green-normal.png -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/developers/pull-request.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/couchdb/couch.uri: -------------------------------------------------------------------------------- 1 | [#ftl] 2 | http://${driver.hostname}:${entity.httpPort?c}/ -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/server.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/core/src/test/resources/server.ks -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/bridge.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/brooklyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/brooklyn.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/document.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/wt-deployed-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/java/wt-deployed-application.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/catalog/mysql-in-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/catalog/mysql-in-catalog.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-summary.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/ops-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/learnmore/features/ops-rest.png -------------------------------------------------------------------------------- /brooklyn-server/launcher/src/test/resources/client.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/launcher/src/test/resources/client.ks -------------------------------------------------------------------------------- /brooklyn-server/launcher/src/test/resources/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/launcher/src/test/resources/client.ts -------------------------------------------------------------------------------- /brooklyn-server/launcher/src/test/resources/server.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/launcher/src/test/resources/server.ks -------------------------------------------------------------------------------- /brooklyn-server/launcher/src/test/resources/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/launcher/src/test/resources/server.ts -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/favicon.ico -------------------------------------------------------------------------------- /brooklyn-dist/release/pull-request-reports/Gemfile: -------------------------------------------------------------------------------- 1 | #ruby=ruby-2.1.2 2 | #ruby-gemset=brooklyn-release-helpers 3 | 4 | source 'https://rubygems.org' 5 | gem 'github_api' 6 | -------------------------------------------------------------------------------- /brooklyn-docs/_includes/feature-item.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
{{ include.title }}
4 |
5 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/wt-deployed-application-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/java/wt-deployed-application-700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/wt-tree-jboss-sensors-700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/java/wt-tree-jboss-sensors-700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/home-app-starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/home-app-starting.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/README.md: -------------------------------------------------------------------------------- 1 | 2 | This directory contains third-party dependencies. Originals are downloaded from the locations described in /_config.yml. 3 | 4 | -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/ops-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/learnmore/features/ops-console.png -------------------------------------------------------------------------------- /brooklyn-library/qa/src/main/resources/hello-world.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/qa/src/main/resources/hello-world.war -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/hello-world.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/core/src/test/resources/hello-world.war -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/api-error-basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "explanatory message", 3 | "details": "accompanying details" 4 | } -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/sort_asc.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/sort_both.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/sort_desc.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/throbber.gif -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/toggle-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/toggle-small.png -------------------------------------------------------------------------------- /brooklyn-dist/dist/licensing/extras-files: -------------------------------------------------------------------------------- 1 | ../../brooklyn-ui/src/main/license/source-inclusions.yaml:../../brooklyn-server/server-cli/src/main/license/source-inclusions.yaml 2 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/catalog/images/add-to-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/catalog/images/add-to-catalog.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/catalog/mysql-in-catalog-w700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/catalog/mysql-in-catalog-w700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-summary-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-summary-large.png -------------------------------------------------------------------------------- /brooklyn-docs/style/js/_readme.txt: -------------------------------------------------------------------------------- 1 | underscore files are kept here because the path is referenced by catalog items. 2 | TODO regenerate catalog with correct path (in deps/). 3 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/back_enabled.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-db-activities-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-db-activities-step1.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-db-activities-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-db-activities-step2.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-db-activities-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-db-activities-step3.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-summary-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-summary-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-db-activities-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-db-activities-step1.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-db-activities-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-db-activities-step2.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-db-activities-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-db-activities-step3.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-cluster-starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-cluster-starting.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/apache-brooklyn-logo-244px-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/apache-brooklyn-logo-244px-wide.png -------------------------------------------------------------------------------- /brooklyn-docs/style/img/apache-brooklyn-logo-817px-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/img/apache-brooklyn-logo-817px-wide.png -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/java-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/learnmore/features/java-hierarchy.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/mongodb/default.conf: -------------------------------------------------------------------------------- 1 | # Default Brooklyn configuration for a MongoDB process. 2 | quiet = false 3 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/Sorting icons.psd -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/back_disabled.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/brooklyn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/brooklyn-logo.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/forward_enabled.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/main-menu-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/main-menu-tab.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/folder-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/folder-horizontal.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-onfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-onfire.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/magnifying-glass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/magnifying-glass.gif -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/home-app-starting-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/home-app-starting-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-cluster-starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-cluster-starting.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/failed-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/failed-task.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/add-application-modal-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/add-application-modal-yaml.png -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/blueprint-compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/learnmore/features/blueprint-compose.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/forward_disabled.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-running.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-starting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-starting.gif -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-stopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-stopped.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-stopping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-stopping.gif -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/toggle-small-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/toggle-small-expand.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/add-application-modal-yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/add-application-modal-yaml.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-cluster-stop-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-cluster-stop-confirm.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/external-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/external-error.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors-all.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/script-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/script-failure.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-db-activities-step1-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-db-activities-step1-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-db-activities-step2-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-db-activities-step2-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-db-activities-step3-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-db-activities-step3-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-cluster-stop-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-cluster-stop-confirm.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/simple-appserver.yaml: -------------------------------------------------------------------------------- 1 | name: simple-appserver 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server 5 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /brooklyn-library/software/network/src/main/resources/isc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/network/src/main/resources/isc-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/redis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/redis-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/solr-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/solr-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/osgi/src/main/resources/karaf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/osgi/src/main/resources/karaf-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/osgi/src/test/resources/hello-world.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/osgi/src/test/resources/hello-world.jar -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/main/resources/jboss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/webapp/src/main/resources/jboss_logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/main/resources/jetty-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/webapp/src/main/resources/jetty-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/test/resources/ssl/certs/localhost/info.txt: -------------------------------------------------------------------------------- 1 | created following instructions at http://www.akadia.com/services/ssh_test_certificate.html 2 | for localhost 3 | -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/hello-world-no-mapping.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/core/src/test/resources/hello-world-no-mapping.war -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/location-without-credential.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"localhost", 3 | "spec":"localhost", 4 | "config":{"identity":"bob"} 5 | } -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/addApplication-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/addApplication-plus.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/application-icon-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/application-icon-add.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/back_enabled_hover.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/main-menu-tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/main-menu-tab-active.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/main-menu-tab-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/main-menu-tab-hover.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/nav-tabs-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/nav-tabs-background.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/magnifying-glass-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/magnifying-glass-right.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-dist/dist/src/main/dist/bin/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | brooklyn text eol=lf 3 | cloud-explorer text eol=lf 4 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/global-web-fabric/console-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/_extra/big_examples/global-web-fabric/console-map.png -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/nosql-cassandra/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Cassandra Clusters 4 | toc: /guide/toc.json 5 | --- 6 | 7 | {% readj cassandra.include.md %} 8 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/webcluster/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Elastic Web Cluster 4 | toc: /guide/toc.json 5 | --- 6 | 7 | {% readj webcluster.include.md %} 8 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-db-activities-step1-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-db-activities-step1-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-db-activities-step2-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-db-activities-step2-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-db-activities-step3-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-db-activities-step3-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/failed-task-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/failed-task-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-validating-app-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-validating-app-endpoint.png -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/blueprint-machine-specs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/website/learnmore/features/blueprint-machine-specs.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/couchdb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/couchdb-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/mongodb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/mongodb-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/test/resources/solr/example.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/test/resources/solr/example.tgz -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/main/resources/nginx-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/webapp/src/main/resources/nginx-logo.jpeg -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/main/resources/nodejs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/webapp/src/main/resources/nodejs-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/main/resources/tomcat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/webapp/src/main/resources/tomcat-logo.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/images/wordnik_api.png -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-guide-version.yml: -------------------------------------------------------------------------------- 1 | path: 2 | # BROOKLYN_VERSION_BELOW 3 | guide: /v/0.9.0-SNAPSHOT 4 | # BROOKLYN_VERSION_BELOW 5 | style: /v/0.9.0-SNAPSHOT/style 6 | website: "" 7 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/tests/jsonball/toc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "title": "Test Jsonball", 3 | "file": "test_jsonball.html" }, 4 | { "title": "Home", 5 | "file": "{{ site.path.guide }}/index.html" } 6 | ] 7 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/concepts/brooklyn-flow-websequencediagrams.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/concepts/brooklyn-flow-websequencediagrams.com.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/add-application-modal-yaml-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/add-application-modal-yaml-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-validating-app-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-validating-app-endpoint.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/external-error-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/external-error-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/resource-exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/resource-exception.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/script-failure-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/script-failure-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/add-application-modal-yaml-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/add-application-modal-yaml-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-cluster-stop-confirm-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-cluster-stop-confirm-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/images/getting-started-blueprint-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/yaml/test/images/getting-started-blueprint-test.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/RabbitMQLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/messaging/src/main/resources/RabbitMQLogo.png -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/qpid-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/messaging/src/main/resources/qpid-logo.jpeg -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/redis-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/messaging/src/main/resources/redis-logo.jpeg -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/cassandra-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/cassandra-logo.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/couchbase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/couchbase-logo.png -------------------------------------------------------------------------------- /brooklyn-server/karaf/features/src/main/resources/.gitignore: -------------------------------------------------------------------------------- 1 | # We need a placeholder for src/main/resources to 2 | # prevent the m2e plugin to complain about missing folder 3 | !.gitignore 4 | 5 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/addApplication-plus-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/addApplication-plus-hover.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/application-icon-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/application-icon-refresh.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/roundedSummary-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/roundedSummary-background.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-green.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-running-onfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-running-onfire.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/icon-status-stopped-onfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/icon-status-stopped-onfire.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/magnifying-glass-right-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/magnifying-glass-right-icon.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/images/explorer_icons.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/images/pet_store_api.png -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/global-web-fabric/console-map-w700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/_extra/big_examples/global-web-fabric/console-map-w700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-cluster-stop-confirm-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-cluster-stop-confirm-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors-all-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/jmx-sensors-all-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/my-web-validating-app-endpoint-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/my-web-validating-app-endpoint-large.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/activemq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/messaging/src/main/resources/activemq-logo.png -------------------------------------------------------------------------------- /brooklyn-ui/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/application-icon-add-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/application-icon-add-hover.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/brooklyn-header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/brooklyn-header-background.png -------------------------------------------------------------------------------- /brooklyn/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-dist/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-docs/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/global-web-fabric/geopaas-deployed-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/_extra/big_examples/global-web-fabric/geopaas-deployed-app.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/concepts/brooklyn-flow-websequencediagrams.com-w400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/concepts/brooklyn-flow-websequencediagrams.com-w400.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/my-web-validating-app-endpoint-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/my-web-validating-app-endpoint-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/images/resource-exception-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/troubleshooting/images/resource-exception-large.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/bootstrap-fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/font-awesome-4.2.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /brooklyn-library/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate", 3 | "version": "2.2.0", 4 | "main": "./angular-translate.js" 5 | } 6 | -------------------------------------------------------------------------------- /brooklyn-library/software/database/src/main/resources/mysql-logo-110x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/database/src/main/resources/mysql-logo-110x57.png -------------------------------------------------------------------------------- /brooklyn-server/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-server/src/test/resources/brooklyn-test-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/rest/rest-server/src/test/resources/brooklyn-test-logo.jpg -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/images/application-icon-refresh-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/images/application-icon-refresh-hover.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-bright-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-bright-green.png -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-dark-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/img/glyphicons-halflings-dark-green.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/images/getting-started-blueprint-test-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/yaml/test/images/getting-started-blueprint-test-large.png -------------------------------------------------------------------------------- /brooklyn-library/software/database/src/main/resources/mariadb-logo-180x119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/database/src/main/resources/mariadb-logo-180x119.png -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/global-web-fabric/geopaas-deployed-app-w700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/_extra/big_examples/global-web-fabric/geopaas-deployed-app-w700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db.png -------------------------------------------------------------------------------- /brooklyn-library/software/database/src/main/resources/postgresql-logo-200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/database/src/main/resources/postgresql-logo-200px.png -------------------------------------------------------------------------------- /brooklyn-ui/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.eot -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.ttf -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.woff -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-700.woff2 -------------------------------------------------------------------------------- /brooklyn/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-dist/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-docs/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/global-web-fabric/console-geoscaling-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/_extra/big_examples/global-web-fabric/console-geoscaling-details.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/style/deps/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /brooklyn-library/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-server/.gitattributes: -------------------------------------------------------------------------------- 1 | #Don't auto-convert line endings for shell scripts on Windows (breaks the scripts) 2 | * text=auto 3 | *.sh text eol=lf 4 | *.bat text eol=crlf 5 | *.ps1 text eol=crlf 6 | *.ini text eol=crlf 7 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.eot -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf -------------------------------------------------------------------------------- /brooklyn-ui/src/test/license/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db-large.png -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/entity.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name":"Vanilla Java App", 4 | "type":"org.apache.brooklyn.entity.java.VanillaJavaApp", 5 | "config":{} 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/location-summary.json: -------------------------------------------------------------------------------- 1 | { 2 | "id":"123", 3 | "name":"localhost", 4 | "spec":"localhost", 5 | "links":{ 6 | "self":"/v1/locations/123" 7 | } 8 | } -------------------------------------------------------------------------------- /brooklyn-ui/src/main/license/files/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.woff -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-ui/src/main/webapp/assets/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2 -------------------------------------------------------------------------------- /brooklyn-dist/dist/src/main/license/files/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/quick-make-few-javadoc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | export BROOKLYN_JAVADOC_SOURCE_PATHS="../../api/src/main/java" 4 | echo LIMITING build to $BROOKLYN_JAVADOC_SOURCE_PATHS for speed 5 | ./make-javadoc.sh 6 | 7 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/global-web-fabric/console-geoscaling-details-w700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/_extra/big_examples/global-web-fabric/console-geoscaling-details-w700.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db-large.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-reference.yaml: -------------------------------------------------------------------------------- 1 | name: Netcat Type Reference Example 2 | location: localhost 3 | services: 4 | - type: netcat-example 5 | message: hello from netcat using a registered type 6 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/sensor-current-state.json: -------------------------------------------------------------------------------- 1 | { 2 | "service.state":"running", 3 | "jmx.context":"jmx/context", 4 | "tomcat.shutdownport":"8081", 5 | "service.isUp":"true" 6 | } 7 | -------------------------------------------------------------------------------- /brooklyn-dist/archetypes/quickstart/src/brooklyn-sample/src/main/resources/sample-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-dist/archetypes/quickstart/src/brooklyn-sample/src/main/resources/sample-icon.png -------------------------------------------------------------------------------- /brooklyn-docs/Gemfile: -------------------------------------------------------------------------------- 1 | #ruby=ruby-2.1.2 2 | #ruby-gemset=incubator-brooklyn-site 3 | 4 | source 'https://rubygems.org' 5 | ruby '2.1.2' 6 | 7 | gem 'jekyll' 8 | gem 'therubyracer' 9 | gem 'html-proofer' 10 | gem 'json' 11 | 12 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db-location.png -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: GUI Guide 4 | children: 5 | - running.md 6 | - blueprints.md 7 | - managing.md 8 | - policies.md 9 | --- 10 | 11 | {% include list-children.html %} 12 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db-location.png -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/octicons/README.md: -------------------------------------------------------------------------------- 1 | If you intend to install Octicons locally, install `octicons-local.ttf`. It should appear as “github-octicons” in your font list. It is specially designed not to conflict with GitHub's web fonts. 2 | -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-sql/src/main/webapp/images/bridge-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/examples/webapps/hello-world-sql/src/main/webapp/images/bridge-small.png -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/images/brooklyn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/images/brooklyn-logo.png -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-webapp/src/main/webapp/images/bridge-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/examples/webapps/hello-world-webapp/src/main/webapp/images/bridge-small.png -------------------------------------------------------------------------------- /brooklyn-server/server-cli/src/main/license/files/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-server/server-cli/src/test/license/files/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-osgi-test-a_0.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-osgi-test-a_0.1.0.jar -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-production.yml: -------------------------------------------------------------------------------- 1 | # in production we always set the URL and dependencies should come from the remote source 2 | 3 | url: https://brooklyn.apache.org 4 | url_root: https://brooklyn.apache.org 5 | 6 | dependency_mode: remote 7 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db-location-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/start/images/add-application-catalog-web-cluster-with-db-location-large.png -------------------------------------------------------------------------------- /brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-entities.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-entities.jar -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db-location-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-docs/guide/ops/gui/images/add-application-catalog-web-cluster-with-db-location-large.png -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-sql/src/main/webapp/images/BrooklynBridge3Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/examples/webapps/hello-world-sql/src/main/webapp/images/BrooklynBridge3Large.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/riak/riak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/riak/riak.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/test/resources/test-mongodb-router.conf: -------------------------------------------------------------------------------- 1 | # MongoDB configuration file 2 | # See http://docs.mongodb.org/manual/reference/configuration-options/ 3 | 4 | # Makes servers extra verbose 5 | verbose = v 6 | vvvvv = true 7 | -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-webapp/src/main/webapp/images/BrooklynBridge3Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/examples/webapps/hello-world-webapp/src/main/webapp/images/BrooklynBridge3Large.png -------------------------------------------------------------------------------- /brooklyn-library/examples/webapps/hello-world-webapp/src/main/webapp/images/bridge-large-no-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/examples/webapps/hello-world-webapp/src/main/webapp/images/bridge-large-no-title.png -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/test/resources/test-mongodb-configserver.conf: -------------------------------------------------------------------------------- 1 | # MongoDB configuration file 2 | # See http://docs.mongodb.org/manual/reference/configuration-options/ 3 | 4 | # Makes servers extra verbose 5 | verbose = v 6 | vvvvv = true 7 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate/README.md: -------------------------------------------------------------------------------- 1 | # bower-angular-translate 2 | 3 | angular-translate bower package 4 | 5 | ### Installation 6 | 7 | ```` 8 | $ bower install angular-translate 9 | ```` 10 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/simple-vm.yaml: -------------------------------------------------------------------------------- 1 | name: simple-vm 2 | services: 3 | - type: org.apache.brooklyn.entity.software.base.EmptySoftwareProcess 4 | name: VM 5 | provisioning.properties: 6 | minRam: 8192mb 7 | minCores: 4 8 | minDisk: 100gb 9 | -------------------------------------------------------------------------------- /brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-more-entities_0.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-more-entities_0.1.0.jar -------------------------------------------------------------------------------- /brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-more-entities_0.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-more-entities_0.2.0.jar -------------------------------------------------------------------------------- /brooklyn-docs/_includes/list-children.html: -------------------------------------------------------------------------------- 1 | {% comment %} 2 | TODO style this much better 3 | {% endcomment %} 4 | 5 |
-------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/testcases/sensor-test-snippet.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestSensor 2 | name: Check webappcluster isUp 3 | targetId: webappcluster 4 | sensor: service.isUp 5 | timeout: 10m 6 | assert: 7 | - equals: true -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/testsensor-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestSensor 2 | name: Check tomcat isUp 3 | target: $brooklyn:component("tomcat") 4 | sensor: service.isUp 5 | timeout: 10m 6 | assert: 7 | - equals: true -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/main/resources/org/apache/brooklyn/entity/webapp/sample-java-keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/webapp/src/main/resources/org/apache/brooklyn/entity/webapp/sample-java-keystore.jks -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/location-list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id":"123", 4 | "name":"localhost", 5 | "spec":"localhost", 6 | "links":{ 7 | "self":"/v1/locations/123" 8 | } 9 | } 10 | ] -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/webcluster.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Elastic Web Cluster 4 | toc: /guide/toc.json 5 | --- 6 | 7 | 8 | 9 | {% readj webcluster/webcluster.include.md %} 10 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/start/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Getting Started 4 | children: 5 | - running.md 6 | - blueprints.md 7 | - managing.md 8 | - policies.md 9 | - concept-quickstart.md 10 | --- 11 | 12 | {% include list-children.html %} 13 | 14 | 15 | -------------------------------------------------------------------------------- /brooklyn-docs/website/documentation/other-docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Other Resources 3 | layout: website-normal 4 | children: 5 | - { path: glossary.md } 6 | - { path: ../meta/versions.md } 7 | - { path: ../meta/sitemap.md } 8 | --- 9 | 10 | {% include list-children.html %} 11 | -------------------------------------------------------------------------------- /brooklyn-library/examples/simple-web-cluster/src/main/resources/org/apache/brooklyn/demo/glossy-3d-blue-web-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/examples/simple-web-cluster/src/main/resources/org/apache/brooklyn/demo/glossy-3d-blue-web-icon.png -------------------------------------------------------------------------------- /brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-more-entities_evil-twin_0.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/utils/rt-osgi/src/test/resources/brooklyn/osgi/brooklyn-test-osgi-more-entities_evil-twin_0.2.0.jar -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/simple-web-cluster.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Elastic Web Cluster 4 | toc: /guide/toc.json 5 | --- 6 | 7 | 8 | 9 | {% readj webcluster/webcluster.include.md %} 10 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/dev/env/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dev Environment 3 | layout: website-normal 4 | breadcrumbs: 5 | - /website/documentation/index.md 6 | - ../index.md 7 | - index.md 8 | children: 9 | - maven-build.md 10 | - ide/ 11 | --- 12 | 13 | {% include list-children.html %} 14 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/testcase-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestCase 2 | brooklyn.children: 3 | - type: org.apache.brooklyn.entity.database.mysql.MySqlNode 4 | ... 5 | - type: org.apache.brooklyn.test.framework.TestSensor 6 | ... -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/sensor-summary.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"redis.uptime", 3 | "type":"Integer", 4 | "description":"Description", 5 | "links":{ 6 | "self":"/v1/applications/redis-app/entities/redis-ent/sensors/redis.uptime" 7 | } 8 | } -------------------------------------------------------------------------------- /brooklyn-docs/_build/config-subpath-brooklyn.yml: -------------------------------------------------------------------------------- 1 | # to test for absolute reference problems, prefix each of the paths and set the baseurl 2 | 3 | path: 4 | style: /brooklyn/style 5 | guide: /brooklyn/v/latest 6 | website: /brooklyn 7 | v: /brooklyn/v 8 | 9 | baseurl: /brooklyn 10 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-file.yaml: -------------------------------------------------------------------------------- 1 | name: Simple Netcat Example From File 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 5 | name: Simple Netcat Server 6 | download.url: file:///tmp/netcat-server.tgz 7 | -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/org/apache/brooklyn/entity/messaging/kafka/kafka-google-doorway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/software/messaging/src/main/resources/org/apache/brooklyn/entity/messaging/kafka/kafka-google-doorway.jpg -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/org/apache/brooklyn/entity/messaging/rabbit/rabbitmq.config: -------------------------------------------------------------------------------- 1 | [ 2 | <#if entity.enableManagementPlugin> 3 | {rabbit, [{loopback_users, []}]}, 4 | {rabbitmq_mochiweb, [{listeners, [{mgmt, [{port, ${entity.managementPort?c}}]}]}]} 5 | 6 | ]. -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/org/apache/brooklyn/core/test/rebind/sample-app-in-catalog/brooklyn-AppInCatalog.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/core/src/test/resources/org/apache/brooklyn/core/test/rebind/sample-app-in-catalog/brooklyn-AppInCatalog.jar -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-local/README.md: -------------------------------------------------------------------------------- 1 | # bower-angular-translate-storage-local 2 | 3 | angular-translate-cookie-local bower package 4 | 5 | ### Installation 6 | 7 | ```` 8 | $ bower install angular-translate-storage-local 9 | ```` 10 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/effector-summary.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"stop", 3 | "returnType":"void", 4 | "parameters":[], 5 | "description":"Effector description", 6 | "links":{ 7 | "self":"/v1/applications/redis-app/entities/redis-ent/effectors/stop" 8 | } 9 | } -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-cookie/README.md: -------------------------------------------------------------------------------- 1 | # bower-angular-translate-storage-cookie 2 | 3 | angular-translate-cookie-storage bower package 4 | 5 | ### Installation 6 | 7 | ```` 8 | $ bower install angular-translate-storage-cookie 9 | ```` 10 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-cookie/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-storage-cookie", 3 | "version": "2.2.0", 4 | "main": "./angular-translate-storage-cookie.js", 5 | "dependencies": { 6 | "angular-translate": "~2.2.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /brooklyn-server/utils/rt-osgi/src/test/dependencies/osgi/entities/src/main/resources/org/apache/brooklyn/test/osgi/entities/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-server/utils/rt-osgi/src/test/dependencies/osgi/entities/src/main/resources/org/apache/brooklyn/test/osgi/entities/icon.gif -------------------------------------------------------------------------------- /brooklyn-ui/src/main/license/README.md: -------------------------------------------------------------------------------- 1 | 2 | This directory contains files to generate the custom license for this project. 3 | The files/ subdir contains the artifacts which are included in the JAR, some 4 | autogenerated by the dist/licensing scripts. 5 | 6 | See usage/dist/licensing/README.md for more information. 7 | 8 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/paralleltestcase-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.ParallelTestCase 2 | brooklyn.children: 3 | - type: org.apache.brooklyn.entity.database.mysql.MySqlNode 4 | ... 5 | - type: org.apache.brooklyn.entity.webapp.ControlledDynamicWebAppCluster 6 | ... -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat.yaml: -------------------------------------------------------------------------------- 1 | name: Simple Netcat Server Example 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 5 | name: Simple Netcat Server 6 | launch.command: | 7 | echo hello | nc -l 4321 & 8 | echo $! > $PID_FILE 9 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/testhttpcall-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestHttpCall 2 | name: Check HTTP Response Status Code 3 | url: $brooklyn:component("tomcat").attributeWhenReady("webapp.url") 4 | timeout: 60s 5 | applyAssertionTo: status 6 | assert: 7 | - isEqualTo: 200 -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/simple-appserver-with-location.yaml: -------------------------------------------------------------------------------- 1 | name: simple-appserver-with-location 2 | location: 3 | jclouds:aws-ec2: 4 | region: us-east-1 5 | identity: AKA_YOUR_ACCESS_KEY_ID 6 | credential: 7 | services: 8 | - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server 9 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-loader-static-files/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-loader-static-files", 3 | "version": "2.2.0", 4 | "main": "./angular-translate-loader-static-files.js", 5 | "dependencies": { 6 | "angular-translate": "~2.2.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/incubator-brooklyn/HEAD/brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/mcasimir-mobile-angular-ui-be39011/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /brooklyn-server/server-cli/src/main/license/README.md: -------------------------------------------------------------------------------- 1 | 2 | This directory contains files to generate the custom license for this project. 3 | The files/ subdir contains the artifacts which are included in the JAR, some 4 | autogenerated by the dist/licensing scripts. 5 | 6 | See usage/dist/licensing/README.md for more information. 7 | 8 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-loader-static-files/README.md: -------------------------------------------------------------------------------- 1 | # bower-angular-translate-loader-static-files 2 | 3 | angular-translate-loader-static-files bower package 4 | 5 | ### Installation 6 | 7 | ```` 8 | $ bower install angular-translate-loader-static-files 9 | ```` 10 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/mongodb/default-mongod.conf: -------------------------------------------------------------------------------- 1 | # Default configuration for a mongod process. The use of noprealloc and smallfiles 2 | # mean this configuration file should not be used in a production environment. 3 | 4 | quiet = false 5 | 6 | noprealloc = true 7 | smallfiles = true 8 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/misc/javadoc/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: API Reference 4 | toc: ../../toc.json 5 | --- 6 | 7 | *Javadoc is not available as part of this build.* 8 | 9 | Please see the [source code]({{site.path.guide}}/dev/code) to view javadoc. 10 | 11 | 12 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/loopovergroupmembers-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.LoopOverGroupMembersTestCase 2 | target: $brooklyn:component("infrastructure").component("child", "DockerHosts") 3 | testSpec: 4 | $brooklyn:entitySpec: 5 | type: org.apache.brooklyn.test.framework.TestSensor 6 | ... -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/committers/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Committer Guide 4 | children: 5 | - merging-contributed-code.md 6 | - release-process/index.md 7 | --- 8 | 9 | These pages contain information that is relevant to people with "committer" status in our project. 10 | 11 | {% include list-children.html %} 12 | -------------------------------------------------------------------------------- /brooklyn-server/README.md: -------------------------------------------------------------------------------- 1 | 2 | # [![**Brooklyn**](https://brooklyn.apache.org/style/img/apache-brooklyn-logo-244px-wide.png)](http://brooklyn.apache.org/) 3 | 4 | ### Apache Brooklyn Server Sub-Project 5 | 6 | This repo contains the core elements to run a Brooklyn server, 7 | from the API and utils through to the core implementation and the REST server. 8 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/appserver-configured.yaml: -------------------------------------------------------------------------------- 1 | name: appserver-configured 2 | services: 3 | - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server 4 | war: http://search.maven.org/remotecontent?filepath=io/brooklyn/example/brooklyn-example-hello-world-sql-webapp/0.6.0/brooklyn-example-hello-world-sql-webapp-0.6.0.war 5 | httpPort: 8080 6 | -------------------------------------------------------------------------------- /brooklyn-docs/_includes/feature-item-end.html: -------------------------------------------------------------------------------- 1 | 2 | {% if include.img %} 3 | {% comment %} 4 | does not work to do: { % include feature-image.html src='{{ include.img }}' % } 5 | so we repeat that snippet :( 6 | {% endcomment %} 7 | 8 |
9 | 10 |
11 | 12 | {% endif %} 13 | 14 |
-------------------------------------------------------------------------------- /brooklyn-dist/README.md: -------------------------------------------------------------------------------- 1 | 2 | # [![**Brooklyn**](https://brooklyn.apache.org/style/img/apache-brooklyn-logo-244px-wide.png)](http://brooklyn.apache.org/) 3 | 4 | ### Distribution Sub-Project for Apache Brooklyn 5 | 6 | This repo contains modules for creating the distributable binary 7 | combining the `server`, the `ui`, and other elements in other Brooklyn repos. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/octicons/LICENSE.txt: -------------------------------------------------------------------------------- 1 | (c) 2012-2014 GitHub 2 | 3 | When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos) 4 | 5 | Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) 6 | Applies to all font files 7 | 8 | Code License: MIT (http://choosealicense.com/licenses/mit/) 9 | Applies to all other files 10 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-local/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-storage-local", 3 | "version": "2.2.0", 4 | "main": "./angular-translate-storage-local.js", 5 | "dependencies": { 6 | "angular-translate": "~2.2.0", 7 | "angular-translate-storage-cookie": "~2.2.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/cassandra/cassandra-rackdc.properties: -------------------------------------------------------------------------------- 1 | # See http://www.datastax.com/docs/1.1/cluster_architecture/replication 2 | # Note publicip/privateip added for use by custom MultiCloudSnitch 3 | dc=${entity.datacenterName} 4 | rack=${entity.rackName} 5 | publicip=${entity.publicIp} 6 | privateip=${entity.privateIp} 7 | -------------------------------------------------------------------------------- /brooklyn-library/qa/src/test/projects/downstream-parent-test/README: -------------------------------------------------------------------------------- 1 | A successful build of this project (`mvn clean verify`) means that projects that 2 | use brooklyn-downstream-parent can be loaded into Brooklyn's catalogue by default. 3 | 4 | If the build fails there is almost certainly something wrong with the parent and 5 | the wider consumers of Brooklyn will probably face similar problems. 6 | -------------------------------------------------------------------------------- /brooklyn-library/README.md: -------------------------------------------------------------------------------- 1 | 2 | # [![**Brooklyn**](https://brooklyn.apache.org/style/img/apache-brooklyn-logo-244px-wide.png)](http://brooklyn.apache.org/) 3 | 4 | ### Library of Entities for Apache Brooklyn 5 | 6 | This sub-project contains various entities not *needed* for Brooklyn, 7 | but useful in practice as building blocks, including entities for webapps, 8 | datastores, and more. 9 | 10 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-1.2.19/version.json: -------------------------------------------------------------------------------- 1 | {"raw":"v1.2.19","major":1,"minor":2,"patch":19,"prerelease":[],"build":[],"version":"1.2.19","codeName":"precognitive-flashbacks","full":"1.2.19","cdn":{"raw":"v1.2.18","major":1,"minor":2,"patch":18,"prerelease":[],"build":[],"version":"1.2.18","isStable":true,"docsUrl":"http://code.angularjs.org/1.2.18/docs"}} -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-cluster.yaml: -------------------------------------------------------------------------------- 1 | name: Netcat Cluster Example 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.group.DynamicCluster 5 | memberSpec: 6 | $brooklyn:entitySpec: 7 | type: netcat-example 8 | message: hello from cluster member 9 | netcat.port: 8000+ 10 | initialSize: 3 11 | restartMode: parallel 12 | -------------------------------------------------------------------------------- /brooklyn-dist/release/pull-request-reports/pr_report.rb: -------------------------------------------------------------------------------- 1 | #ruby 2 | 3 | require 'CSV' 4 | require 'github_api' 5 | 6 | gh = Github.new 7 | 8 | CSV.open("pr_report.tsv", "wb", { :col_sep => "\t" }) do |csv| 9 | gh.pull_requests.list('apache', 'incubator-brooklyn'). 10 | select { |pr| pr.state == "open" }. 11 | each { |pr| csv << [ pr.number, pr.title, pr.created_at, pr.user.login ] } 12 | end 13 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/appserver-configured-in-config.yaml: -------------------------------------------------------------------------------- 1 | name: appserver-configured-in-config 2 | services: 3 | - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server 4 | brooklyn.config: 5 | wars.root: http://search.maven.org/remotecontent?filepath=io/brooklyn/example/brooklyn-example-hello-world-sql-webapp/0.6.0/brooklyn-example-hello-world-sql-webapp-0.6.0.war 6 | http.port: 8080 7 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/simple-appserver-with-location-byon.yaml: -------------------------------------------------------------------------------- 1 | name: simple-appserver-with-location-byon 2 | location: 3 | byon: 4 | user: brooklyn 5 | privateKeyFile: ~/.ssh/brooklyn.pem 6 | hosts: 7 | - 192.168.0.18 8 | - 192.168.0.19 9 | services: 10 | - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server 11 | location: 12 | byon:(hosts="127.0.0.1") 13 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/redis/redis.conf: -------------------------------------------------------------------------------- 1 | # Redis configuration file 2 | 3 | # Start as daemon 4 | daemonize yes 5 | pidfile ${driver.runDir}/pid.txt 6 | 7 | # Set port and optional bind address 8 | port ${entity.redisPort?c} 9 | # bind ${entity.address} 10 | 11 | # Configure logging 12 | loglevel verbose 13 | logfile ${driver.runDir}/redis.log 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | 32 | ignored 33 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/cluster-vm.yaml: -------------------------------------------------------------------------------- 1 | name: cluster-vm 2 | services: 3 | - type: org.apache.brooklyn.entity.group.DynamicCluster 4 | initialSize: 5 5 | memberSpec: 6 | $brooklyn:entitySpec: 7 | type: org.apache.brooklyn.entity.software.base.EmptySoftwareProcess 8 | name: VM 9 | provisioning.properties: 10 | minRam: 8g 11 | minCores: 4 12 | minDisk: 100g 13 | -------------------------------------------------------------------------------- /brooklyn/.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | 32 | ignored 33 | -------------------------------------------------------------------------------- /brooklyn-server/.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | 32 | ignored 33 | -------------------------------------------------------------------------------- /brooklyn-docs/style/css/_tooltips.scss: -------------------------------------------------------------------------------- 1 | /* TOOLTIPS 2 | ----------------------------------------------------------------------- */ 3 | 4 | .tooltip .tooltip-inner { 5 | color: $text_color; 6 | background-color: $white_dd; 7 | font-weight: 500; 8 | } 9 | .tooltip.top .tooltip-arrow { 10 | border-top-color: $white_dd; 11 | } 12 | .tooltip.bottom .tooltip-arrow { 13 | border-bottom-color: $white_dd; 14 | } 15 | -------------------------------------------------------------------------------- /brooklyn-library/.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | 32 | ignored 33 | -------------------------------------------------------------------------------- /brooklyn-ui/.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | 32 | ignored 33 | /build/ 34 | -------------------------------------------------------------------------------- /brooklyn-dist/.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | *.vagrant/ 32 | 33 | ignored 34 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/cli/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Client CLI Reference 4 | children: 5 | - cli-ref-guide.md 6 | - cli-usage-guide.md 7 | --- 8 | 9 | {% include list-children.html %} 10 | 11 | **NOTE:** These documents are for using the Brooklyn Client CLI to access a running Brooklyn Server. For 12 | information on starting on a Brooklyn Server, refer to [Server CLI Reference](../server-cli-reference.html). 13 | -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Features 4 | children: 5 | - { section: Blueprinting } 6 | - { section: Policy-based Management } 7 | - { section: Operations } 8 | - { section: Java } 9 | --- 10 | 11 |
12 | 13 | {% readj blueprinting.md %} 14 | {% readj policy-based-mgmt.md %} 15 | {% readj operations.md %} 16 | {% readj java.md %} 17 | 18 |
19 | -------------------------------------------------------------------------------- /brooklyn-dist/archetypes/quickstart/src/brooklyn-sample/src/main/resources/logback-custom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /brooklyn-docs/style/css/website.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | {% include base-scss.scss %} 5 | 6 | $style_dir: "{{ site.path.style }}"; 7 | 8 | @import 'util'; 9 | @import 'basic'; 10 | @import 'tooltips'; 11 | @import 'code_blocks'; 12 | @import 'menu'; 13 | @import 'search'; 14 | @import 'footer'; 15 | @import 'main_container'; 16 | 17 | @import 'archive_warning'; 18 | @import 'landing'; 19 | @import 'blueprint_tour'; 20 | @import 'feature_list'; 21 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/simple_java_examples/example_files/tomcat_simple.java: -------------------------------------------------------------------------------- 1 | // TODO Untested code; see brooklyn-example for better maintained examples! 2 | public class TomcatServerApp extends AbstractApplication { 3 | @Override 4 | public void init() { 5 | addChild(EntitySpec.create(TomcatServer.class) 6 | .configure("httpPort", "8080+") 7 | .configure("war", "/path/to/booking-mvc.war"))); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/testeffector-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestEffector 2 | name: Invoke Deploy Effector 3 | target: $brooklyn:component("tomcat") 4 | effector: deploy 5 | timeout: 5m 6 | params: 7 | url: http://search.maven.org/remotecontent?filepath=io/brooklyn/example/brooklyn-example-hello-world-sql-webapp/0.6.0/brooklyn-example-hello-world-sql-webapp-0.6.0.war 8 | targetName: newcontext -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/couchdb/couch.ini: -------------------------------------------------------------------------------- 1 | [#ftl] 2 | # 3 | [couchdb] 4 | database_dir = ${driver.runDir} 5 | view_index_dir = ${driver.runDir} 6 | uri_file = ${driver.runDir}/couch.uri 7 | 8 | [httpd] 9 | port = ${entity.httpPort?c} 10 | bind_address = 0.0.0.0 11 | 12 | [ssl] 13 | port = ${entity.httpsPort?c} 14 | 15 | [log] 16 | file = ${driver.runDir}/couch.log 17 | level = info 18 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/brooklyn/util/crypto/sample_rsa.pem.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCo1Th0NB7A58X/39i7AbHb2jFtJpP+3KwCewDIC4/hxGBBW/ERP7jvq1vM4Uxk6PEhoNQwU7yVLdakguK3zWkr3nfwyEiYa4zmdWal7z2bifsIbjv6KVj8cz4biXt1olYITAlqNK0WJnnby/yMF+QPA0heHHX3Ary4xC76KxNaSPdsS6QDz1YbkX+fNCMTbxDa0myXBytZXDmEGe1owRbObVSefw/WgF+Rs6Z4DsqQ6rJ2SE+sDG/3kyKBhEgni7ZGZKZwSgwpegWdD56JaTFzB1CjZiNw7d6gSd+4cnboAVQ7HseLoQwnUqueruMM6D6VaHft9MRRuyzlg/o+PsQt alex@almacretin.local 2 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/troubleshooting/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Troubleshooting 3 | layout: website-normal 4 | children: 5 | - { path: overview.md, title: Overview } 6 | - { path: deployment.md, title: Deployment } 7 | - { path: connectivity.md, title: Server Connectivity } 8 | - { path: softwareprocess.md, title: SoftwareProcess Entities } 9 | - { path: going-deep-in-java-and-logs.md, title: Going Deep in Java and Logs } 10 | --- 11 | 12 | {% include list-children.html %} 13 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * angular-translate - v2.2.0 - 2014-06-03 3 | * http://github.com/PascalPrecht/angular-translate 4 | * Copyright (c) 2014 ; Licensed MIT 5 | */ 6 | angular.module("pascalprecht.translate").factory("$translateCookieStorage",["$cookieStore",function(a){var b={get:function(b){return a.get(b)},set:function(b,c){a.put(b,c)}};return b}]); -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/brooklyn/util/crypto/sample_rsa_passphrase.pem.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwC7tzBRImaQKTMwrE/PV3VjJVDhpyTf2Wijip9y2E14q81Jo94e7lwxz2B7WhsDWd+elOokgbDEs7vnsFMMgIUyWG2iaXj2mugzc/M5XF/vxEwfojb5VkkIGc7uT8RmO31Iu9WwBZHvsxib4kvK+jra+UcxGACN5q/8+RgSTJdGdCvqOFvMZf+ne6l4LFsABPUi6Mp2vZMYKWiyHUgcoug+bJlF6qvZfuW0G7AQzCAmapQwHNHNBqI8saeDwvciKOPehn94pky4ioqnrV2GPWu+cGqI9djjhN3G9GlHj6Pwgv09wpMgr+kgQtEnVX3SKE7PgbihsgLE6xsWKV+7K/ alex@almacretin.local 2 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/org/apache/brooklyn/location/basic/sample_id_rsa.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDSs866/WtVeGtJplKcDZ9KFIWnz/eScb9S6yzxmiNRbiT4RON1W5jOgf+28BpipNS7GoHk6k2A6BSlLTaGo5a03/eJhx8m0Ed7h6790xJ9xBcpqxRlqVC2/bMX3nkQwfuNnSrhM+KQ5L+1H+A8EN7rEcaPA+kHsl3Z1pTRWAkPsz1I4gttENuKXDVemDI6zgLojd+2VwfWcD21Apx0VDTCZYBevS6WLNgygDLdU6bfhcDBP+jDWyCkYrtjA8tsG/VAjhIp+8eL06Fw0EE6hdMTcbe+DoSIoZpqbcqnXsQ7rSKrgIQRz7cUGTklDSkBfZKx/GoBIdjtByltCmEX6OVH alex@almacretin.local 2 | -------------------------------------------------------------------------------- /brooklyn-ui/README.md: -------------------------------------------------------------------------------- 1 | 2 | # [![**Brooklyn**](https://brooklyn.apache.org/style/img/apache-brooklyn-logo-244px-wide.png)](http://brooklyn.apache.org/) 3 | 4 | ### Apache Brooklyn UI Sub-Project 5 | 6 | This repo contains the JS GUI for Apache Brooklyn. 7 | 8 | It is pure Javascript, but for legacy reasons it expects the REST endpoint at the same endpoint, 9 | so currently the easiest way to run it is using the BrooklynJavascriptGuiLauncher java launcher 10 | in `brooklyn-server`. 11 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/ops/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Operations 3 | layout: website-normal 4 | children: 5 | - server-cli-reference.md 6 | - cli/ 7 | - gui/ 8 | - brooklyn_properties.md 9 | - locations/ 10 | - persistence/ 11 | - high-availability.md 12 | - catalog/ 13 | - rest.md 14 | - logging.md 15 | - externalized-configuration.md 16 | - requirements.md 17 | - production-installation.md 18 | - security-guidelines.md 19 | - troubleshooting/ 20 | --- 21 | 22 | {% include list-children.html %} 23 | -------------------------------------------------------------------------------- /brooklyn-docs/.gitignore: -------------------------------------------------------------------------------- 1 | \#*\# 2 | *~ 3 | *.bak 4 | *.swp 5 | *.swo 6 | .DS_Store 7 | 8 | atlassian-ide-plugin.xml 9 | *.class 10 | 11 | target/ 12 | test-output/ 13 | 14 | .project 15 | .classpath 16 | .settings/ 17 | .metadata/ 18 | 19 | .idea/ 20 | *.iml 21 | 22 | nbactions.xml 23 | nb-configuration.xml 24 | 25 | prodDb.* 26 | 27 | *.log 28 | brooklyn*.log.* 29 | 30 | *brooklyn-persisted-state/ 31 | 32 | ignored 33 | _site 34 | _config_local.yml 35 | .sass-cache 36 | style/js/catalog/items.js 37 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/redis/slave.conf: -------------------------------------------------------------------------------- 1 | # Redis configuration file 2 | 3 | # Start as daemon 4 | daemonize yes 5 | pidfile ${driver.runDir}/pid.txt 6 | 7 | # Set port and optional bind address 8 | port ${entity.redisPort?c} 9 | # bind ${entity.address} 10 | 11 | # Slave configuration 12 | slaveof ${entity.master.address} ${entity.master.redisPort?c} 13 | 14 | # Configure logging 15 | loglevel verbose 16 | logfile ${driver.runDir}/redis.log 17 | -------------------------------------------------------------------------------- /brooklyn-library/software/messaging/src/main/resources/org/apache/brooklyn/entity/messaging/kafka/zookeeper.properties: -------------------------------------------------------------------------------- 1 | [#ftl] 2 | # 3 | 4 | ## 5 | # KafkaZookeeper configuration template for Brooklyn 6 | ## 7 | 8 | # the directory where the snapshot is stored. 9 | dataDir=${driver.runDir}/zookeeper 10 | # the port at which the clients will connect 11 | clientPort=${entity.zookeeperPort?c} 12 | # disable the per-ip limit on the number of connections since this is a non-production config 13 | maxClientCnxns=0 14 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /brooklyn-dist/dist/src/main/dist/README.md: -------------------------------------------------------------------------------- 1 | 2 | # [![**Brooklyn**](https://brooklyn.apache.org/style/img/apache-brooklyn-logo-244px-wide.png)](http://brooklyn.apache.org/) 3 | 4 | ### Apache Brooklyn 5 | 6 | This is the distribution of Apache Brooklyn. 7 | 8 | As a quick start, run: 9 | 10 | ./bin/brooklyn launch 11 | 12 | For server CLI info, use: 13 | 14 | ./bin/brooklyn help 15 | 16 | And to learn more, including the full user's guide, visit [brooklyn.apache.org](http://brooklyn.apache.org/). 17 | 18 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/application-spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"myapp", 3 | "entities":[ 4 | { 5 | "name":"Vanilla Java App", 6 | "type":"org.apache.brooklyn.entity.java.VanillaJavaApp", 7 | "config":{ 8 | "initialSize":"1", 9 | "creationScriptUrl":"http://my.brooklyn.io/storage/foo.sql" 10 | } 11 | } 12 | ], 13 | "locations":[ 14 | "/v1/locations/1" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/code-standards.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Code Standards 4 | --- 5 | 6 | Without being too restrictive about how you have to code as part of Brooklyn, 7 | there are some style points that really make life easier when sharing code 8 | among ourselves: 9 | 10 | * Use spaces (not tabs!) with 4 spaces indentation 11 | * Keep line length <=128 12 | * Don't reformat code or organize imports unless there's very good 13 | reason (this makes history and merges much harder) 14 | 15 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-port.yaml: -------------------------------------------------------------------------------- 1 | name: Netcat Example with Port Opened 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 5 | name: Simple Netcat Server 6 | launch.command: | 7 | echo hello | nc -l 4321 & 8 | echo $! > $PID_FILE 9 | 10 | brooklyn.config: 11 | # matching the regex `.*\.port` will cause the port to be opened 12 | # if in a cloud where configurable security groups are available 13 | netcat.port: 4321 14 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/dev/env/ide/eclipse.include.md: -------------------------------------------------------------------------------- 1 | - Groovy Plugin: GRECLIPSE from 2 | [dist.springsource.org/snapshot/GRECLIPSE/e4.5/](http://dist.springsource.org/snapshot/GRECLIPSE/e4.5/); 3 | Be sure to include Groovy 2.3 compiler support and Maven-Eclipse (m2e) support. 4 | More details including download sites for other versions can be found at the [Groovy Eclipse Plugin site](http://docs.groovy-lang.org/latest/html/documentation/#section-groovyeclipse). 5 | 6 | - TestNG Plugin: beust TestNG from [beust.com/eclipse](http://beust.com/eclipse) 7 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/catalog-application.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "com.example.app:1.1", 3 | "type": "com.example.app", 4 | "name": "My example application", 5 | "version": "1.1", 6 | "description": "My awesome example application, as a catalog item", 7 | "planYaml": "services:\n- type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess\n launch.command: echo \"Launch application\"\n checkRunning.command: echo \"Check running application\"", 8 | "iconUrl": "http://my.example.com/icon.png" 9 | } -------------------------------------------------------------------------------- /brooklyn-docs/_extra/update-docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Updating the Docs 4 | toc: /guide/toc.json 5 | --- 6 | 7 | 8 | 9 | The Brooklyn docs live in the **docs** project in the Brooklyn codebase. 10 | It's built using standard jekyll/markdown with a few extensions. 11 | 12 | Instructions for building and working with docs are in a `README.md` file 13 | in that folder; for the most recent version of instructions click 14 | [here](https://github.com/apache/incubator-brooklyn/tree/master/docs/README.md). 15 | -------------------------------------------------------------------------------- /brooklyn-docs/_build/tests/jsonball/test_jsonball.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Test Jsonball 4 | --- 5 | 6 | {% jsonball j from data { "a": "data" } %} 7 | from data: j.a is {{ j.a }} (should be data) 8 | 9 | {% assign v = '{ "a": "var" }' %} 10 | {% jsonball j from var v %} 11 | from var: j.a is {{ j.a }} (should be var) 12 | 13 | {% jsonball j from file test_jsonball_file.json %} 14 | from file: j.a is {{ j.a }} (should be file) 15 | 16 | {% jsonball j from page test_jsonball_page.json %} 17 | from page: j.a is {{ j.a }} (should be page) 18 | 19 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Examples 4 | toc: /guide/toc.json 5 | --- 6 | 7 | We currently have the following examples on the site: 8 | 9 | {% capture ltocs %}{% readj toc.json %}{% endcapture %} 10 | {% jsonball ltoc from var ltocs %} 11 | 12 | {% for x in ltoc %} 13 | * {{ x.title }} 14 | {% endfor %} 15 | 16 | There are examples in the code also, just check out the examples/ project. 17 | 18 | **Have one of your own?** [Add it here!]({{site.path.guide}}/dev/tips/update-docs.html) 19 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/infrastructuredeploymenttestcase-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.InfrastructureDeploymentTestCase 2 | brooklyn.config: 3 | infrastructure.deployment.location.sensor: entity.dynamicLocation 4 | infrastructure.deployment.spec: 5 | $brooklyn:entitySpec: 6 | - type: docker-cloud-calico 7 | ... 8 | infrastructure.deployment.entity.specs: 9 | - $brooklyn:entitySpec: 10 | type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 11 | ... -------------------------------------------------------------------------------- /brooklyn-docs/guide/concepts/policies.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Policies 3 | layout: website-normal 4 | toc: ../guide_toc.json 5 | categories: [use, guide, defining-applications] 6 | --- 7 | 8 | Policies perform the active management enabled by Brooklyn. Entities can have zero or more ``Policy`` instances attached to them. 9 | 10 | Policies can subscribe to sensors from entities or run periodically, and 11 | when they run they can perform calculations, look up other values, and if deemed necessary invoke effectors or emit sensor values from the entity with which they are associated. 12 | -------------------------------------------------------------------------------- /brooklyn-ui/src/test/license/DISCLAIMER: -------------------------------------------------------------------------------- 1 | 2 | Apache Brooklyn is an effort undergoing incubation at The Apache Software Foundation (ASF), 3 | sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until 4 | a further review indicates that the infrastructure, communications, and decision making process 5 | have stabilized in a manner consistent with other successful ASF projects. While incubation 6 | status is not necessarily a reflection of the completeness or stability of the code, it does 7 | indicate that the project has yet to be fully endorsed by the ASF. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/committers/release-process/fix-release.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Fix on the release branch 4 | navgroup: developers 5 | --- 6 | 7 | Make whatever changes are necessary on the release branch, supported by discussions on the mailing list. 8 | 9 | Repeat the instructions to [make release artifacts](make-release-artifacts.html). 10 | 11 | Remember that after the release is done, you should cherry-pick the changes to a new feature branch based on `master` 12 | and open a pull request, so that the next version will incorporate the bug fixes. 13 | 14 | -------------------------------------------------------------------------------- /brooklyn-dist/dist/licensing/licenses/binary/WTFPL: -------------------------------------------------------------------------------- 1 | WTF Public License 2 | 3 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE, Version 2, December 2004 4 | 5 | Copyright (C) 2004 Sam Hocevar 6 | 7 | Everyone is permitted to copy and distribute verbatim or modified 8 | copies of this license document, and changing it is allowed as long 9 | as the name is changed. 10 | 11 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 12 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 13 | 14 | 0. You just DO WHAT THE FUCK YOU WANT TO. 15 | 16 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/license/files/DISCLAIMER: -------------------------------------------------------------------------------- 1 | 2 | Apache Brooklyn is an effort undergoing incubation at The Apache Software Foundation (ASF), 3 | sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until 4 | a further review indicates that the infrastructure, communications, and decision making process 5 | have stabilized in a manner consistent with other successful ASF projects. While incubation 6 | status is not necessarily a reflection of the completeness or stability of the code, it does 7 | indicate that the project has yet to be fully endorsed by the ASF. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-dist/archetypes/quickstart/src/brooklyn-sample/src/main/assembly/files/conf/logback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /brooklyn-dist/dist/src/main/license/files/DISCLAIMER: -------------------------------------------------------------------------------- 1 | 2 | Apache Brooklyn is an effort undergoing incubation at The Apache Software Foundation (ASF), 3 | sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until 4 | a further review indicates that the infrastructure, communications, and decision making process 5 | have stabilized in a manner consistent with other successful ASF projects. While incubation 6 | status is not necessarily a reflection of the completeness or stability of the code, it does 7 | indicate that the project has yet to be fully endorsed by the ASF. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: YAML Blueprints 3 | layout: website-normal 4 | children: 5 | - creating-yaml.md 6 | - setting-locations.md 7 | - configuring-vms.md 8 | - clusters.md 9 | - multiple-services.md 10 | - clusters-and-policies.md 11 | - blueprinting-tips.md 12 | - custom-entities.md 13 | - winrm/ 14 | - chef/ 15 | - test/ 16 | - advanced-example.md 17 | - { path: yaml-reference.md, title: YAML Blueprint Reference } 18 | - { link: 'https://github.com/brooklyncentral/blueprint-library', title: 'GitHub Blueprint Library' } 19 | --- 20 | 21 | 22 | {% include list-children.html %} 23 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/server-version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.7.0-SNAPSHOT", 3 | "buildSha1": "cb4f0a3af2f5042222dd176edc102bfa64e7e0b5", 4 | "buildBranch":"versions", 5 | "features":[ 6 | { 7 | "name": "Sample Brooklyn Project com.acme.sample:brooklyn-sample v0.1.0-SNAPSHOT", 8 | "symbolicName":"com.acme.sample.brooklyn-sample", 9 | "version":"0.1.0.SNAPSHOT", 10 | "lastModified":"523305000", 11 | "Brooklyn-Feature-Build-Id":"e0fee1adf795c84eec4735f039503eb18d9c35cc" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/task-summary-list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "entityId":"VzK45RFC", 4 | "entityDisplayName":"tomcat", 5 | "displayName":"start", 6 | "description":"invoking start on tomcat", 7 | "id":"n24NC63Nsu", 8 | "rawSubmitTimeUtc":1348663165550, 9 | "submitTimeUtc":"2012-09-26 12:39:25", 10 | "startTimeUtc":"2012-09-26 12:39:25", 11 | "endTimeUtc":"2012-09-26 12:39:33", 12 | "currentStatus":"Ended normally", 13 | "detailedStatus":"Ended normally after 7940 ms\nResult: null" 14 | } 15 | ] -------------------------------------------------------------------------------- /brooklyn-server/server-cli/src/main/license/files/DISCLAIMER: -------------------------------------------------------------------------------- 1 | 2 | Apache Brooklyn is an effort undergoing incubation at The Apache Software Foundation (ASF), 3 | sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until 4 | a further review indicates that the infrastructure, communications, and decision making process 5 | have stabilized in a manner consistent with other successful ASF projects. While incubation 6 | status is not necessarily a reflection of the completeness or stability of the code, it does 7 | indicate that the project has yet to be fully endorsed by the ASF. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-server/server-cli/src/test/license/files/DISCLAIMER: -------------------------------------------------------------------------------- 1 | 2 | Apache Brooklyn is an effort undergoing incubation at The Apache Software Foundation (ASF), 3 | sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until 4 | a further review indicates that the infrastructure, communications, and decision making process 5 | have stabilized in a manner consistent with other successful ASF projects. While incubation 6 | status is not necessarily a reflection of the completeness or stability of the code, it does 7 | indicate that the project has yet to be fully endorsed by the ASF. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/ha-summary.json: -------------------------------------------------------------------------------- 1 | { 2 | "links": {}, 3 | "masterId": "kDp39gAv", 4 | "nodes": { 5 | "kDp39gAv": { 6 | "nodeId": "kDp39gAv", 7 | "nodeUri": "http://10.30.40.50:8081/", 8 | "status": "MASTER", 9 | "timestampUtc": 1400257858796 10 | }, 11 | "lHNCTtZ4": { 12 | "nodeId": "lHNCTtZ4", 13 | "nodeUri": "http://10.30.40.60:8081/", 14 | "status": "STANDBY", 15 | "timestampUtc": 1400257858796 16 | } 17 | }, 18 | "ownId": "kDp39gAv" 19 | } -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate", 3 | "version": "2.2.0", 4 | "main": "./angular-translate.js", 5 | "homepage": "https://github.com/PascalPrecht/bower-angular-translate", 6 | "_release": "2.2.0", 7 | "_resolution": { 8 | "type": "version", 9 | "tag": "2.2.0", 10 | "commit": "21e6f3f41d53a53b627f3947b8e17dfb2ba26a74" 11 | }, 12 | "_source": "git://github.com/PascalPrecht/bower-angular-translate.git", 13 | "_target": "~2.2.0", 14 | "_originalSource": "angular-translate", 15 | "_direct": true 16 | } -------------------------------------------------------------------------------- /brooklyn-server/utils/jmx/jmxmp-ssl-agent/src/main/license/DISCLAIMER.shaded: -------------------------------------------------------------------------------- 1 | 2 | Apache Brooklyn is an effort undergoing incubation at The Apache Software Foundation (ASF), 3 | sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until 4 | a further review indicates that the infrastructure, communications, and decision making process 5 | have stabilized in a manner consistent with other successful ASF projects. While incubation 6 | status is not necessarily a reflection of the completeness or stability of the code, it does 7 | indicate that the project has yet to be fully endorsed by the ASF. 8 | 9 | -------------------------------------------------------------------------------- /brooklyn-dist/dist/src/main/dist/conf/logback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /brooklyn-docs/website/community/irc.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: IRC 4 | --- 5 | 6 | Join channel `#brooklyncentral` on the [Freenode](https://freenode.net/) IRC 7 | network for instant chat with the Brooklyn community. Use your favourite IRC client, or use the embedded IRC web chat 8 | client here: 9 | 10 | 11 | 12 | Many of the Brooklyn dev team can be found here. Note that the team 13 | is predominantly Europe-based, and channel activity is usually centered 14 | around European daylight hours. 15 | -------------------------------------------------------------------------------- /brooklyn-ui/src/build/optimize-css.json: -------------------------------------------------------------------------------- 1 | ({ 2 | cssIn: "${project.build.webapp}/assets/css/styles.css", 3 | out: "${project.build.webapp}/assets/css/styles.min.css", 4 | 5 | // CSS optimization options are: 6 | // - "standard": @import inlining, comment removal and line returns. 7 | // - "standard.keepLines": like "standard" but keeps line returns. 8 | // - "standard.keepComments": keeps the file comments, but removes line returns. 9 | // - "standard.keepComments.keepLines": keeps the file comments and line returns. 10 | // - "none": skip CSS optimizations. 11 | optimizeCss: "standard" 12 | }) 13 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/big_examples/toc.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "title": "Elastic Web Cluster", 3 | "file": "{{ site.path.guide }}/use/examples/webcluster/index.html" }, 4 | { "title": "Global Web Fabric", 5 | "file": "{{ site.path.guide }}/use/examples/global-web-fabric/index.html" }, 6 | { "title": "Whirr Hadoop Cluster", 7 | "file": "{{ site.path.guide }}/use/examples/whirrhadoop/index.html" }, 8 | { "title": "Publish-Subscribe Messaging", 9 | "file": "{{ site.path.guide }}/use/examples/messaging/index.html" }, 10 | { "title": "Cassandra Cluster", 11 | "file": "{{ site.path.guide }}/use/examples/nosql-cassandra/index.html" } 12 | 13 | ] 14 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/entity-summary.json: -------------------------------------------------------------------------------- 1 | {"id":"zQsqdXzi", 2 | "name":"MyTomcat", 3 | "type":"org.apache.brooklyn.entity.webapp.tomcat.TomcatServer", 4 | "links":{ 5 | "self":"/v1/applications/tesr/entities/zQsqdXzi", 6 | "catalog":"/v1/catalog/entities/org.apache.brooklyn.entity.webapp.tomcat.TomcatServer", 7 | "application":"/v1/applications/tesr", 8 | "children":"/v1/applications/tesr/entities/zQsqdXzi/children", 9 | "effectors":"fixtures/effector-summary-list.json", 10 | "sensors":"fixtures/sensor-summary-list.json", 11 | "activities":"fixtures/task-summary-list.json" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /brooklyn-docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Brooklyn Website and Docs (dev build) 4 | --- 5 | 6 | This page is not copied into release builds. It is here as a convenience when doing dev builds. 7 | 8 | Consider looking at: 9 | 10 | * the brooklyn website 11 | * the brooklyn user guide (version 0.9.0-SNAPSHOT) 12 | 13 | Also see the file README.md in this directory. 14 | 15 | For reference, this build uses the following variables: 16 | 17 | * url root: `{{ site.url_root }}` 18 | * path map: `{{ site.path }}` 19 | 20 | -------------------------------------------------------------------------------- /brooklyn-docs/style/css/_landing.scss: -------------------------------------------------------------------------------- 1 | 2 | /* LANDING PAGE 3 | ----------------------------------------------------------------------- */ 4 | 5 | .jumbotron { 6 | margin-top: 18px; 7 | } 8 | 9 | #apachebrooklynbanner { 10 | background-image: url("../img/apache-brooklyn-logo-817px-wide.png"); 11 | background-repeat: no-repeat; 12 | background-position: center; 13 | width: 817px; 14 | height: 99px; 15 | margin-bottom: 50px; 16 | } 17 | 18 | div.feather.landing { 19 | overflow: visible; 20 | max-height: 10px; 21 | img { 22 | width: 200px; 23 | margin-left: 40px; 24 | margin-top: 0px; 25 | } 26 | } -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/brooklyn/util/crypto/sample_dsa.pem.pub: -------------------------------------------------------------------------------- 1 | ssh-dss AAAAB3NzaC1kc3MAAACBAPlg7nrwY3ommAhFI30pQVokOlbYbUMpzyQyYuYqY+fDeKVHsinBFty+TLhhbOTTEVUMKQvmi+f19pDiUZgi8Q95+BqfUX0P3HXVqFgSXtZy831DjevZxAvewmk7WHTg9UUyndab2XgquS1g3oeXtKtkNQXh3jl4zllucTnJ7BPlAAAAFQC45U7RCRmzAcaFUKV2Y6/e9j3wGwAAAIA9venFhMjA5k49sByqXBusu6qu3xG9393p3iDw5MnaBWAzvfDre49uXfffb8Nw4mKxYVBt1Ov5CeUEH1hTPYBzBDvn8BWv87HlclBxTW+q6lKJM5fASglrHeVTX0CEE8u+VVgX+1WEen4ImrlDV07OmP6wS+5Gq7i9iNeaMxlKoAAAAIEAlNaYFN2KABgJiT/VLEjHRXCXVIHPNbpj7Dm4ZsLNG8uB1y53j+HVUN2CDPDp9jVFIL8O3cMU7hVicjns94PYFllqaJDBhAgn9zHUkLF+ou84w48s7tPnV/ENNf9+44AGCxRB6FAas0d8rVPNG7TPC0uutP14E7EfzTa2ldiHmDU= alex@almacretin.local 2 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: User Guide 3 | layout: website-normal 4 | breadcrumbs: 5 | - /website/documentation/index.md 6 | - index.md 7 | children: 8 | - { path: /guide/start/index.md } 9 | - { path: /guide/misc/download.md } 10 | - { path: /guide/concepts/index.md } 11 | - { path: /guide/yaml/index.md } 12 | - { path: /guide/java/index.md } 13 | - { path: /guide/ops/index.md } 14 | - { path: /guide/misc/index.md } 15 | --- 16 | 17 | This is the Brooklyn User Guide for v{{ site.brooklyn-version }}: 18 | 19 | {% include list-children.html %} 20 | 21 | If you are working with the Brooklyn codebase itself, also see the [Developer Guide](dev/) for this version. 22 | -------------------------------------------------------------------------------- /brooklyn-ui/src/build/optimize-js.json: -------------------------------------------------------------------------------- 1 | ({ 2 | // The entry point to the application. Brooklyn's is in config.js. 3 | name: "config", 4 | baseUrl: "${project.build.webapp}/assets/js", 5 | mainConfigFile: "${project.build.webapp}/assets/js/config.js", 6 | paths: { 7 | // Include paths to external resources (e.g. on a CDN) here. 8 | 9 | // Optimiser looks for js/requireLib.js by default. 10 | "requireLib": "libs/require" 11 | }, 12 | 13 | // Place the optimised file in target//assets. 14 | out: "${project.build.webapp}/assets/js/gui.all.min.js", 15 | 16 | // Set to "none" to skip minification 17 | optimize: "uglify" 18 | }) 19 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/entity-summary-list.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type":"org.apache.brooklyn.entity.webapp.tomcat.TomcatServer", 4 | "links":{ 5 | "self":"/v1/applications/tesr/entities/zQsqdXzi", 6 | "catalog":"/v1/catalog/entities/org.apache.brooklyn.entity.webapp.tomcat.TomcatServer", 7 | "application":"/v1/applications/tesr", 8 | "children":"/v1/applications/tesr/entities/zQsqdXzi/entities", 9 | "effectors":"fixtures/effector-summary-list.json", 10 | "sensors":"fixtures/sensor-summary-list.json", 11 | "activities":"fixtures/task-summary-list.json" 12 | } 13 | } 14 | ] 15 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/main/resources/org/apache/brooklyn/entity/nosql/solr/solr.xml: -------------------------------------------------------------------------------- 1 | [#ftl] 2 | 3 | 4 | 4 5 | 6 | 7 | ${driver.hostname} 8 | ${entity.solrPort?c} 9 | solr 10 | 15000 11 | true 12 | 13 | 14 | 16 | 0 17 | 0 18 | 19 | 20 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-1.2.19/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-block-transitions { 16 | transition:0s all!important; 17 | -webkit-transition:0s all!important; 18 | } 19 | 20 | /* show the element during a show/hide animation when the 21 | * animation is ongoing, but the .ng-hide class is active */ 22 | .ng-hide-add-active, .ng-hide-remove { 23 | display: block!important; 24 | } 25 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-loader-static-files/angular-translate-loader-static-files.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * angular-translate - v2.2.0 - 2014-06-03 3 | * http://github.com/PascalPrecht/angular-translate 4 | * Copyright (c) 2014 ; Licensed MIT 5 | */ 6 | angular.module("pascalprecht.translate").factory("$translateStaticFilesLoader",["$q","$http",function(a,b){return function(c){if(!c||!angular.isString(c.prefix)||!angular.isString(c.suffix))throw new Error("Couldn't load static files, no prefix or suffix specified!");var d=a.defer();return b({url:[c.prefix,c.key,c.suffix].join(""),method:"GET",params:""}).success(function(a){d.resolve(a)}).error(function(){d.reject(c.key)}),d.promise}}]); -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-cookie/angular-translate-storage-cookie.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * angular-translate - v2.2.0 - 2014-06-03 3 | * http://github.com/PascalPrecht/angular-translate 4 | * Copyright (c) 2014 ; Licensed MIT 5 | */ 6 | angular.module('pascalprecht.translate').factory('$translateCookieStorage', [ 7 | '$cookieStore', 8 | function ($cookieStore) { 9 | var $translateCookieStorage = { 10 | get: function (name) { 11 | return $cookieStore.get(name); 12 | }, 13 | set: function (name, value) { 14 | $cookieStore.put(name, value); 15 | } 16 | }; 17 | return $translateCookieStorage; 18 | } 19 | ]); -------------------------------------------------------------------------------- /brooklyn-server/utils/jmx/jmxmp-ssl-agent/src/main/license/NOTICE.shaded: -------------------------------------------------------------------------------- 1 | Apache Brooklyn 2 | Copyright 2014-2015 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | ----------------------------------------------------------------------------- 8 | 9 | This package incorporates the binaries of Project OpenDMK, JMX(TM) Remote API 10 | RI, Optional Packages. 11 | 12 | Per the requirements of paragraph 3.1 of the COMMON DEVELOPMENT AND 13 | DISTRIBUTION LICENSE (CDDL)Version 1.0, please be informed that the source 14 | code for the OpenDMK portions of this package may be obtained from: 15 | https://opendmk.java.net/download/index.html 16 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-port-parameter.yaml: -------------------------------------------------------------------------------- 1 | name: Netcat Example with Parameter 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 5 | name: Simple Netcat Server 6 | launch.command: | 7 | echo $MESSAGE | nc -l $NETCAT_PORT & 8 | echo $! > $PID_FILE 9 | 10 | env: 11 | MESSAGE: $brooklyn:config("message") 12 | NETCAT_PORT: $brooklyn:attributeWhenReady("netcat.port") 13 | 14 | brooklyn.parameters: 15 | - name: message 16 | description: a message to send to the caller 17 | default: hello 18 | - name: netcat.port 19 | type: port 20 | description: the port netcat should run on 21 | default: 4321+ 22 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-local/angular-translate-storage-local.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * angular-translate - v2.2.0 - 2014-06-03 3 | * http://github.com/PascalPrecht/angular-translate 4 | * Copyright (c) 2014 ; Licensed MIT 5 | */ 6 | angular.module("pascalprecht.translate").factory("$translateLocalStorage",["$window","$translateCookieStorage",function(a,b){var c=function(){var b;return{get:function(c){return b||(b=a.localStorage.getItem(c)),b},set:function(c,d){b=d,a.localStorage.setItem(c,d)}}}(),d="localStorage"in a&&null!==a.localStorage;if(d){var e="pascalprecht.translate.storageTest";try{a.localStorage.setItem(e,"foo"),a.localStorage.removeItem(e)}catch(f){d=!1}}var g=d?c:b;return g}]); -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/chef/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Chef in YAML Blueprints 3 | layout: website-normal 4 | children: 5 | - about-chef.md 6 | - creating-blueprints.md 7 | - writing-chef.md 8 | - advanced-chef-integration.md 9 | --- 10 | 11 | This guide describes how Brooklyn entities can be easily created from Chef cookbooks. 12 | As of this writing (May 2014) some of the integration points are under active development, 13 | and comments are welcome. 14 | A plan for the full integration is online [here](https://docs.google.com/a/cloudsoftcorp.com/document/d/18ZwzmncbJgJeQjnSvMapTWg6N526cvGMz5jaqdkxMf8). 15 | 16 | This guide assumes you are familiar with the basics of [creating YAML blueprints](../). 17 | 18 | {% include list-children.html %} 19 | -------------------------------------------------------------------------------- /brooklyn-docs/style/css/_search.scss: -------------------------------------------------------------------------------- 1 | /* SEARCH 2 | ----------------------------------------------------------------------- */ 3 | 4 | div.search_right { 5 | float: right; 6 | @include transform('translateY(-12px)'); 7 | padding-right: 5%; 8 | padding-bottom: 18px; 9 | font-size: 75%; 10 | .searchform { 11 | width: 240px; 12 | margin: 0; 13 | padding: 5px 5px 0 0; 14 | overflow: hidden; 15 | text-align: right; 16 | } 17 | .searchinput { 18 | width: 227px; 19 | background: #ffffff; 20 | border: 1px solid #b1b7c2; 21 | -moz-border-radius: 2px; 22 | border-radius: 2px; 23 | color: #c8ccd5; 24 | padding: 3px; 25 | } 26 | .searchinput:focus { 27 | color: $blackish; 28 | } 29 | } -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-api/src/test/resources/fixtures/application.json: -------------------------------------------------------------------------------- 1 | { 2 | "id":"myapp_id", 3 | "spec":{ 4 | "name":"myapp", 5 | "entities":[ 6 | { 7 | "name":"Vanilla Java App", 8 | "type":"org.apache.brooklyn.entity.java.VanillaJavaApp", 9 | "config":{ 10 | "initialSize":"1", 11 | "creationScriptUrl":"http://my.brooklyn.io/storage/foo.sql" 12 | } 13 | } 14 | ], 15 | "locations":["/v1/locations/1"] 16 | }, 17 | "status":"STARTING", 18 | "links":{ 19 | "self":"/v1/applications/myapp", 20 | "entities":"fixtures/entity-summary-list.json" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /brooklyn-docs/website/meta/sitemap.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Site Map 4 | --- 5 | 6 |
7 | 8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | {% assign visited = "" | split: "|" %} 16 | {% assign site_items = "" | split: "|" %} 17 |
    18 | {% for item in site.data.menu %} 19 | {% push site_items item %} 20 | {% include sitemap-item.html %} 21 | {% endfor %} 22 |
23 | 24 |
25 | 26 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-cookie/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-storage-cookie", 3 | "version": "2.2.0", 4 | "main": "./angular-translate-storage-cookie.js", 5 | "dependencies": { 6 | "angular-translate": "~2.2.0" 7 | }, 8 | "homepage": "https://github.com/PascalPrecht/bower-angular-translate-storage-cookie", 9 | "_release": "2.2.0", 10 | "_resolution": { 11 | "type": "version", 12 | "tag": "2.2.0", 13 | "commit": "f3b6dfcc8882f2aa23f6e18daf19acafccfdcd6e" 14 | }, 15 | "_source": "git://github.com/PascalPrecht/bower-angular-translate-storage-cookie.git", 16 | "_target": "~2.2.0", 17 | "_originalSource": "angular-translate-storage-cookie" 18 | } -------------------------------------------------------------------------------- /brooklyn-docs/guide/java/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Java Blueprints 3 | title_in_menu: Java Blueprints 4 | layout: website-normal 5 | children: 6 | - archetype.md 7 | - defining-and-deploying.md 8 | - topology-dependencies-management-policies.md 9 | - common-usage.md 10 | - entity.md 11 | - entities.md 12 | - policies.md 13 | - policy.md 14 | - service-state.md 15 | - entitlements.md 16 | --- 17 | 18 | Java blueprints are much more powerful than YAML but is also rather more difficult. 19 | Advanced Java skills are required. 20 | 21 | {% include list-children.html %} 22 | 23 | Brooklyn makes it easy to describe the structure and management of sophisticated distributed applications, and then it makes it easy to launch them in a cloud, with on-going automated management. 24 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /brooklyn-server/core/src/test/resources/brooklyn/util/crypto/sample_dsa.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PRIVATE KEY----- 2 | MIIBuwIBAAKBgQD5YO568GN6JpgIRSN9KUFaJDpW2G1DKc8kMmLmKmPnw3ilR7Ip 3 | wRbcvky4YWzk0xFVDCkL5ovn9faQ4lGYIvEPefgan1F9D9x11ahYEl7WcvN9Q43r 4 | 2cQL3sJpO1h04PVFMp3Wm9l4KrktYN6Hl7SrZDUF4d45eM5ZbnE5yewT5QIVALjl 5 | TtEJGbMBxoVQpXZjr972PfAbAoGAPb3pxYTIwOZOPbAcqlwbrLuqrt8Rvd/d6d4g 6 | 8OTJ2gVgM73w63uPbl3332/DcOJisWFQbdTr+QnlBB9YUz2AcwQ75/AVr/Ox5XJQ 7 | cU1vqupSiTOXwEoJax3lU19AhBPLvlVYF/tVhHp+CJq5Q1dOzpj+sEvuRqu4vYjX 8 | mjMZSqACgYEAlNaYFN2KABgJiT/VLEjHRXCXVIHPNbpj7Dm4ZsLNG8uB1y53j+HV 9 | UN2CDPDp9jVFIL8O3cMU7hVicjns94PYFllqaJDBhAgn9zHUkLF+ou84w48s7tPn 10 | V/ENNf9+44AGCxRB6FAas0d8rVPNG7TPC0uutP14E7EfzTa2ldiHmDUCFAoDi809 11 | YBgT/l2rb8p5zsHeP0Z/ 12 | -----END DSA PRIVATE KEY----- 13 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /brooklyn-library/software/database/src/main/resources/org/apache/brooklyn/entity/database/mariadb/my.cnf: -------------------------------------------------------------------------------- 1 | [client] 2 | port = ${driver.port?c} 3 | socket = /tmp/mysql.sock.${entity.socketUid}.${driver.port?c} 4 | user = root 5 | password = ${entity.password} 6 | 7 | # Here follows entries for some specific programs 8 | 9 | # The MariaDB server, which (confusingly) uses MySQL terminology for backwards compatibility 10 | [mysqld] 11 | port = ${driver.port?c} 12 | socket = /tmp/mysql.sock.${entity.socketUid}.${driver.port?c} 13 | basedir = ${driver.baseDir} 14 | datadir = ${driver.dataDir} 15 | bind-address = 0.0.0.0 16 | # skip-networking 17 | 18 | # Custom configuration options 19 | ${driver.mariaDbServerOptionsString} 20 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/misc/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # BROOKLYN_VERSION_BELOW 3 | title: Other 0.9.0-SNAPSHOT Resources 4 | layout: website-normal 5 | children: 6 | - { title: Javadoc, path: javadoc/ } 7 | - download.md 8 | - release-notes.md 9 | - migrate-to-0.8.0.md 10 | - known-issues.md 11 | - { path: ../dev/, title_in_menu: "Developer Guide" } 12 | - { path: /website/documentation/, title_in_menu: "All Documentation", menu_customization: { force_inactive: true } } 13 | --- 14 | 15 | Further documentation specific to this version of Brooklyn includes: 16 | 17 | {% for item in page.menu %} 18 | * [{{ item.title_in_menu }}]({{ item.url }}) 19 | {% endfor %} 20 | 21 | Also see the [other versions]({{ site.path.website }}/meta/versions.html) or [general documentation]({{ site.path.website }}/documentation/). 22 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/blueprinting.md: -------------------------------------------------------------------------------- 1 | 2 | ### Blueprinting 3 | 4 | 5 | {% include feature-item.html title="Composable blueprints" %} 6 | 7 | A YAML service spec can refer to other blueprints, 8 | either in the catalog or by URL, 9 | and can supply custom configuration. 10 | 11 | {% include feature-image.html src="blueprint-compose.png" %} 12 | {% include feature-item-end.html %} 13 | 14 | 15 | 16 | {% include feature-item.html title="Portable machines specs -- or location-specific identifiers" img="blueprint-machine-specs.png" %} 17 | 18 |

19 | Define machine specs using portable constraints, 20 | or, when you need to, use specific imageId, hardware profiles, and more 21 |

22 | 23 | {% include feature-item-end.html img="blueprint-machine-specs.png" %} 24 | 25 | -------------------------------------------------------------------------------- /brooklyn-docs/website/documentation/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Documentation 4 | children: 5 | - /guide/ 6 | - /guide/dev/ 7 | - ../meta/versions.md 8 | - other-docs.md 9 | --- 10 | 11 | {% comment %} 12 | TODO add a bunch more here 13 | 14 | TODO add FAQ 15 | {% endcomment %} 16 | 17 | ## Official User Guide 18 | 19 | Our main user manual is organised by release version. Please pick the version that you are using: 20 | 21 | - [{{ site.brooklyn-stable-version }}]({{ site.path.v }}/latest) - 22 | This is the latest stable version. 23 | 24 | - [Older versions]({{ site.path.website }}/meta/versions.html) 25 | 26 | 27 | ## Other Docs 28 | 29 | Other mini-docs are available [here](other-docs.html), 30 | or see the [Learn More]({{ site.path.website }}/learnmore) section of the site. 31 | -------------------------------------------------------------------------------- /brooklyn-docs/style/deps/font-awesome-4.2.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-loader-static-files/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-loader-static-files", 3 | "version": "2.2.0", 4 | "main": "./angular-translate-loader-static-files.js", 5 | "dependencies": { 6 | "angular-translate": "~2.2.0" 7 | }, 8 | "homepage": "https://github.com/PascalPrecht/bower-angular-translate-loader-static-files", 9 | "_release": "2.2.0", 10 | "_resolution": { 11 | "type": "version", 12 | "tag": "2.2.0", 13 | "commit": "6f0cbc619d478b371000aab3a0720bf93b556a63" 14 | }, 15 | "_source": "git://github.com/PascalPrecht/bower-angular-translate-loader-static-files.git", 16 | "_target": "~2.2.0", 17 | "_originalSource": "angular-translate-loader-static-files", 18 | "_direct": true 19 | } -------------------------------------------------------------------------------- /brooklyn-docs/guide/glossary.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "term": "location, !location:", 4 | "description": "A server or resource to which Apache Brooklyn can deploy applications" 5 | }, 6 | { 7 | "term": "blueprint", 8 | "description": "A descriptor or pattern which describes how Apache Brooklyn should deploy applications" 9 | }, 10 | { 11 | "term": "entity", 12 | "description": "A software package or service Apache Brooklyn can interact with" 13 | }, 14 | { 15 | "term": "sensor, !sensor", 16 | "description": "A sensor is a property of an Apache Brooklyn entity, updated in real-time" 17 | }, 18 | { 19 | "term": "effector", 20 | "description": "Effectors are tools Apache Brooklyn provides, that allow you to manipulate the live entities within an application" 21 | } 22 | ] -------------------------------------------------------------------------------- /brooklyn-docs/style/css/_util.scss: -------------------------------------------------------------------------------- 1 | /* GENERAL UTILS 2 | ----------------------------------------------------------------------- */ 3 | 4 | @mixin flex() { 5 | display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ 6 | display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */ 7 | display: -ms-flexbox; /* TWEENER - IE 10 */ 8 | display: -webkit-flex; /* NEW - Chrome */ 9 | display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ 10 | } 11 | 12 | @mixin transform($tfn) { 13 | -webkit-transform: #{$tfn}; 14 | -moz-transform: #{$tfn}; 15 | -o-transform: #{$tfn}; 16 | transform: #{$tfn}; 17 | } 18 | 19 | @mixin flip() { 20 | filter: FlipH; 21 | @include transform('scaleX(-1)'); 22 | -ms-filter: "FlipH"; 23 | } 24 | 25 | .flip { 26 | @include flip; 27 | } 28 | -------------------------------------------------------------------------------- /brooklyn-ui/src/main/webapp/assets/js/libs/jquery.wiggle.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Wiggle 3 | Author: WonderGroup, Jordan Thomas 4 | URL: http://labs.wondergroup.com/demos/mini-ui/index.html 5 | License: MIT (http://en.wikipedia.org/wiki/MIT_License) 6 | */ 7 | jQuery.fn.wiggle=function(o){var d={speed:50,wiggles:3,travel:5,callback:null};var o=jQuery.extend(d,o);return this.each(function(){var cache=this;var wrap=jQuery(this).wrap('
').css("position","relative");var calls=0;for(i=1;i<=o.wiggles;i++){jQuery(this).animate({left:"-="+o.travel},o.speed).animate({left:"+="+o.travel*2},o.speed*2).animate({left:"-="+o.travel},o.speed,function(){calls++;if(jQuery(cache).parent().hasClass('wiggle-wrap')){jQuery(cache).parent().replaceWith(cache);} 8 | if(calls==o.wiggles&&jQuery.isFunction(o.callback)){o.callback();}});}});}; -------------------------------------------------------------------------------- /brooklyn-docs/guide/concepts/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Brooklyn Concepts 3 | title_in_menu: Brooklyn Concepts 4 | layout: website-normal 5 | children: 6 | - entities.md 7 | - application-parent-membership.md 8 | - configuration-sensor-effectors.md 9 | - lifecycle-managementcontext.md 10 | - dependent-configuration.md 11 | - location.md 12 | - policies.md 13 | - execution.md 14 | - stop-start-restart-behaviour.md 15 | --- 16 | 17 | This introduces brooklyn and describes how it simplifies the deployment and management of big applications. It is 18 | intended for people who are using brooklyn-supported application components (such as web/app servers, data stores) 19 | to be able to use brooklyn to easily start their application in multiple locations with off-the-shelf management 20 | policies. 21 | 22 | {% include list-children.html %} 23 | -------------------------------------------------------------------------------- /brooklyn-docs/style/css/_footer.scss: -------------------------------------------------------------------------------- 1 | /* FOOTER 2 | ----------------------------------------------------------------------- */ 3 | 4 | /* sticky footer */ 5 | html { 6 | position: relative; 7 | min-height: 100%; 8 | } 9 | 10 | @media (min-width: 1200px) { 11 | .slightlyNarrowContainer { 12 | width: 970px; 13 | } 14 | } 15 | 16 | div#footer { 17 | position: absolute; 18 | bottom: 0; 19 | width: 100%; 20 | padding-top: 1em; 21 | padding-bottom: 1em; 22 | background-color: $white_f5; 23 | text-align: center; 24 | font-size: 80%; 25 | } 26 | .octicon-footer { 27 | color: $footer_icon_gray; 28 | font-size: 130%; 29 | position: relative; 30 | top: 2px; 31 | padding-left: 6px; 32 | } 33 | a:hover .octicon-footer { 34 | color: $brooklyn_green; 35 | } 36 | 37 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-translate-storage-local/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-storage-local", 3 | "version": "2.2.0", 4 | "main": "./angular-translate-storage-local.js", 5 | "dependencies": { 6 | "angular-translate": "~2.2.0", 7 | "angular-translate-storage-cookie": "~2.2.0" 8 | }, 9 | "homepage": "https://github.com/PascalPrecht/bower-angular-translate-storage-local", 10 | "_release": "2.2.0", 11 | "_resolution": { 12 | "type": "version", 13 | "tag": "2.2.0", 14 | "commit": "1b2fbfc31ce70e3e75e0037f759b60fd92b46bd8" 15 | }, 16 | "_source": "git://github.com/PascalPrecht/bower-angular-translate-storage-local.git", 17 | "_target": "~2.2.0", 18 | "_originalSource": "angular-translate-storage-local", 19 | "_direct": true 20 | } -------------------------------------------------------------------------------- /brooklyn-library/software/webapp/src/test/resources/ssl/certs/localhost/server.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIB1TCCAT4CAQAwgZQxCzAJBgNVBAYTAlVLMREwDwYDVQQIEwhTY290bGFuZDES 3 | MBAGA1UEBxMJRWRpbmJ1cmdoMREwDwYDVQQKEwhCcm9va2x5bjEQMA4GA1UECxMH 4 | dGVzdGluZzESMBAGA1UEAxMJbG9jYWxob3N0MSUwIwYJKoZIhvcNAQkBFhZhbGV4 5 | QGNsb3Vkc29mdGNvcnAuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCn 6 | U81a+KER+LywUHjrRiDoItUJHltkAiIL//E6Pt2sqi21GsfMUT8UMfQmM0ro0J+g 7 | 5eLl9hsnognuLTc8Lct9Oqqtm/TpXYptBLR7ZIIePwYWegfCGyZF6n1a6mIaqCmR 8 | CvxKxajH18sCdOnXeEQ8OZ5p4SBtGrAaRgzy+KYk4QIDAQABoAAwDQYJKoZIhvcN 9 | AQEFBQADgYEAMqAWd3CufEhM1/Lg8NFTojqpNzAcVLcg5hQfiC5KDwgI+VCsP5kl 10 | sbuVRt5YmNrUIHB36gWiQj8k48fpNg1MbeZXYQXsqolnhzncHOV6jiJDjBO4Sadi 11 | iG2iRnR42aWXinqNCKD9eSPq1QG9zT4PZwMm4aw/4Xxqcoh+Tx1Qpss= 12 | -----END CERTIFICATE REQUEST----- 13 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/test/resources/test-mongodb.conf: -------------------------------------------------------------------------------- 1 | # MongoDB configuration file 2 | # See http://docs.mongodb.org/manual/reference/configuration-options/ 3 | 4 | # Makes servers extra verbose 5 | verbose = v 6 | vvvvv = true 7 | 8 | # Use less disk space for tests: 9 | # - smallfiles reduces the initial size of data files. 10 | # - noprealloc means don't create sparse files on startup 11 | # - oplogSize is the maximum size in megabytes for the replication operation log 12 | # (and defaults to 5% of available disk space). 13 | smallfiles = true 14 | noprealloc = true 15 | oplogSize = 32 16 | 17 | # Explicitly disable journalling on both 32 and 64 bit systems. By default: 18 | # - journal is false on 32 and true on 64 bit systems. 19 | # - nojournal is true on 32 and false on 64 bit systems. 20 | journal = false 21 | nojournal = true -------------------------------------------------------------------------------- /brooklyn-server/camp/camp-brooklyn/README.md: -------------------------------------------------------------------------------- 1 | 2 | Depends on brooklyncentral/camp-server 3 | 4 | ---- 5 | Licensed to the Apache Software Foundation (ASF) under one 6 | or more contributor license agreements. See the NOTICE file 7 | distributed with this work for additional information 8 | regarding copyright ownership. The ASF licenses this file 9 | to you under the Apache License, Version 2.0 (the 10 | "License"); you may not use this file except in compliance 11 | with the License. You may obtain a copy of the License at 12 | 13 | http://www.apache.org/licenses/LICENSE-2.0 14 | 15 | Unless required by applicable law or agreed to in writing, 16 | software distributed under the License is distributed on an 17 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 18 | KIND, either express or implied. See the License for the 19 | specific language governing permissions and limitations 20 | under the License. -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/entities/simpleshellcommandtest-entity.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestCase 2 | name: testcase1 3 | targetId: testprocess 4 | brooklyn.children: 5 | - type: org.apache.brooklyn.entity.webapp.tomcat.TomcatServer 6 | id: testprocess 7 | 8 | - type: org.apache.brooklyn.test.framework.SimpleShellCommandTest 9 | command: ps -ef 10 | assertStatus: 11 | equals: 0 12 | assertOut: 13 | contains: tomcat 14 | assertErr: 15 | isEmpty: true 16 | 17 | - type: org.apache.brooklyn.test.framework.SimpleShellCommandTest 18 | downloadUrl: https://raw.githubusercontent.com/apache/incubator-brooklyn/master/docs/guide/yaml/test/entities/script1.sh 19 | assertStatus: 20 | equals: 0 21 | assertOut: 22 | equals: hello world 23 | assertErr: 24 | isEmpty: true 25 | -------------------------------------------------------------------------------- /brooklyn-docs/_extra/simple_java_examples/example_files/tomcat_multi-location.java: -------------------------------------------------------------------------------- 1 | // TODO Untested code; see brooklyn-example for better maintained examples! 2 | public class TomcatFabricApp extends AbstractApplication { 3 | @Override 4 | public void init() { 5 | addChild(EntitySpec.create(DynamicFabric.class) 6 | .configure("displayName", "WebFabric") 7 | .configure("displayNamePrefix", "") 8 | .configure("displayNameSuffix", " web cluster") 9 | .configure("memberSpec", EntitySpec.create(ControlledDynamicWebAppCluster.class) 10 | .configure("initialSize", 2) 11 | .configure("memberSpec", : EntitySpec.create(TomcatServer.class) 12 | .configure("httpPort", "8080+") 13 | .configure("war", "/path/to/booking-mvc.war")))); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/appserver-w-db.yaml: -------------------------------------------------------------------------------- 1 | name: appserver-w-db 2 | services: 3 | - type: org.apache.brooklyn.entity.webapp.jboss.JBoss7Server 4 | name: AppServer HelloWorld 5 | brooklyn.config: 6 | wars.root: http://search.maven.org/remotecontent?filepath=io/brooklyn/example/brooklyn-example-hello-world-sql-webapp/0.6.0/brooklyn-example-hello-world-sql-webapp-0.6.0.war 7 | http.port: 8080+ 8 | java.sysprops: 9 | brooklyn.example.db.url: $brooklyn:formatString("jdbc:%s%s?user=%s\\&password=%s", 10 | component("db").attributeWhenReady("datastore.url"), "visitors", "brooklyn", "br00k11n") 11 | - type: org.apache.brooklyn.entity.database.mysql.MySqlNode 12 | id: db 13 | name: DB HelloWorld Visitors 14 | brooklyn.config: 15 | datastore.creation.script.url: https://github.com/apache/incubator-brooklyn/raw/master/usage/launcher/src/test/resources/visitors-creation-script.sql 16 | -------------------------------------------------------------------------------- /brooklyn-docs/_includes/footer.html: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-restarter.yaml: -------------------------------------------------------------------------------- 1 | name: Netcat Example with Restarter Policy 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 5 | id: netcat-server 6 | name: Simple Netcat Server 7 | launch.command: | 8 | echo hello | nc -l 4321 & 9 | echo $! > $PID_FILE 10 | brooklyn.enrichers: 11 | - type: org.apache.brooklyn.policy.ha.ServiceFailureDetector 12 | brooklyn.config: 13 | # wait 15s after service fails before propagating failure 14 | serviceFailedStabilizationDelay: 15s 15 | brooklyn.policies: 16 | - type: org.apache.brooklyn.policy.ha.ServiceRestarter 17 | brooklyn.config: 18 | # repeated failures in a time window can cause the restarter to abort, 19 | # propagating the failure; a time window of 0 will mean it always restarts! 20 | failOnRecurringFailuresInThisDuration: 0 21 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/test/example_yaml/testcases/http-test-snippet.yaml: -------------------------------------------------------------------------------- 1 | - type: org.apache.brooklyn.test.framework.TestHttpCall 2 | name: Check HTTP Response Status Code 3 | url: > 4 | $brooklyn:formatString("http://%s:%s/newcontext/", 5 | $brooklyn:component("webappcluster").attributeWhenReady("host.address"), 6 | $brooklyn:component("webappcluster").attributeWhenReady("proxy.http.port")) 7 | timeout: 10m 8 | applyAssertionTo: status 9 | assert: 10 | - equals: 200 11 | - type: org.apache.brooklyn.test.framework.TestHttpCall 12 | name: Check HTTP Response Body 13 | url: > 14 | $brooklyn:formatString("http://%s:%s/newcontext/", 15 | $brooklyn:component("webappcluster").attributeWhenReady("host.address"), 16 | $brooklyn:component("webappcluster").attributeWhenReady("proxy.http.port")) 17 | timeout: 10m 18 | applyAssertionTo: body 19 | assert: 20 | - matches: "(?s).*Br[o]{2}klyn Deployed.*" -------------------------------------------------------------------------------- /brooklyn-docs/website/developers/committers/release-process/environment-variables.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: website-normal 3 | title: Environment variables for the release 4 | navgroup: developers 5 | --- 6 | 7 | Many example commands in this section using variable names as placeholders for information that will vary between 8 | releases. To allow these example commands to run unmodified, set these environment variables appropriately. 9 | 10 | {% highlight bash %} 11 | # The version currently set on the master branch (BROOKLYN_VERSION_BELOW) 12 | OLD_MASTER_VERSION=0.9.0-SNAPSHOT 13 | # The next version to be set on the master branch 14 | NEW_MASTER_VERSION=0.NNN+1.0-SNAPSHOT 15 | 16 | # The version we are releasing now. While Brooklyn is in the Apache Incubator, this must be suffixed `-incubating`. 17 | VERSION_NAME=0.NNN.0-incubating 18 | 19 | # The release candidate number we are making now. 20 | RC_NUMBER=1 21 | {% endhighlight %} 22 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/vanilla-bash-netcat-more-commands.yaml: -------------------------------------------------------------------------------- 1 | name: Netcat Example with Explicit Check and Stop Commands 2 | location: localhost 3 | services: 4 | - type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess 5 | name: Simple Netcat Server 6 | launch.command: | 7 | echo hello | nc -l 4321 & 8 | echo $! > $PID_FILE 9 | 10 | # The following overrides demonstrate the use of a custom shell environment as well as 11 | # check-running and stop commands. These are optional; default behavior will "do the 12 | # right thing" with the pid file automatically. 13 | 14 | env: { CHECK_MARKER: "checkRunning", STOP_MARKER: "stop" } 15 | checkRunning.command: echo $CHECK_MARKER >> DATE && test -f "$PID_FILE" && ps -p `cat $PID_FILE` >/dev/null 16 | stop.command: echo $STOP_MARKER >> DATE && test -f "$PID_FILE" && { kill -9 `cat $PID_FILE`; rm /tmp/vanilla.pid; } 17 | -------------------------------------------------------------------------------- /brooklyn-library/sandbox/mobile-app/src/main/webapp/assets/mobile/libs/angular-1.2.19/angular-cookies.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.2.19 3 | (c) 2010-2014 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(e,b){var c={},g={},h,k=!1,l=f.copy,m=f.isUndefined;b.addPollFn(function(){var a=b.cookies();h!=a&&(h=a,l(a,g),l(a,c),k&&e.$apply())})();k=!0;e.$watch(function(){var a,d,e;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)d=c[a],f.isString(d)||(d=""+d,c[a]=d),d!==g[a]&&(b.cookies(a,d),e=!0);if(e)for(a in d=b.cookies(),c)c[a]!==d[a]&&(m(d[a])?delete c[a]:c[a]=d[a])});return c}]).factory("$cookieStore", 7 | ["$cookies",function(e){return{get:function(b){return(b=e[b])?f.fromJson(b):b},put:function(b,c){e[b]=f.toJson(c)},remove:function(b){delete e[b]}}}])})(window,window.angular); 8 | //# sourceMappingURL=angular-cookies.min.js.map 9 | -------------------------------------------------------------------------------- /brooklyn-server/core/src/main/resources/brooklyn/empty.catalog.bom: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | # 18 | brooklyn.catalog: {} -------------------------------------------------------------------------------- /brooklyn-library/qa/log-exclusions.txt: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | GrailsUtil.*is deprecated please use 19 | echo.*WARNING 20 | -------------------------------------------------------------------------------- /brooklyn-library/software/nosql/src/test/resources/solr/example/core.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | # 19 | name=example -------------------------------------------------------------------------------- /brooklyn-docs/website/learnmore/features/policy-based-mgmt.md: -------------------------------------------------------------------------------- 1 | ### Policy-Based Management 2 | 3 | 4 | {% include feature-item.html title="Live metrics" %} 5 | 6 | Collect live metrics for use in policies, 7 | either from metric stores or directly using REST, JMX, SSH, and more. 8 | 9 | {% include feature-item-end.html %} 10 | 11 | 12 | 13 | {% include feature-item.html title="Management policies" %} 14 |

15 | Choose from built-in policies including auto-scaling, failover, and follow-the-sun, 16 | or create new policies to perform custom runtime management. 17 |

18 | 19 |

20 | Use config keys to customize the policies to suit your systems, right in the YAML blueprint. 21 |

22 | {% include feature-item-end.html %} 23 | 24 | 25 | {% include feature-item.html title="Dynamic reconfiguration" %} 26 | Reconfigure policies, suspend them, or add new ones on-the-fly 27 | through the REST API. 28 | {% include feature-item-end.html %} 29 | -------------------------------------------------------------------------------- /brooklyn-server/rest/rest-server/src/main/resources/not-a-jar-file.txt: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | Test loading of malformed jar file -------------------------------------------------------------------------------- /brooklyn-docs/_extra/simple_java_examples/example_files/tomcat_nginx.java: -------------------------------------------------------------------------------- 1 | // TODO Untested code; see brooklyn-example for better maintained examples! 2 | public class TomcatClusterWithNginxApp extends AbstractApplication { 3 | @Override 4 | public void init() { 5 | addChild(EntitySpec.create(NginxController.class) 6 | .configure("domain", "brooklyn.geopaas.org") 7 | .configure("port", "8000+") 8 | .configure("portNumberSensor", Attributes.HTTP_PORT)); 9 | 10 | addChild(EntitySpec.create(ControlledDynamicWebAppCluster.class) 11 | .configure("controller", nginxController) 12 | .configure("memberSpec", : EntitySpec.create(TomcatServer.class) 13 | .configure("httpPort", "8080+") 14 | .configure("war", "/path/to/booking-mvc.war")) 15 | .configure("initialSize", 2)); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /brooklyn-docs/guide/yaml/example_yaml/appserver-clustered-w-db-concise.yaml: -------------------------------------------------------------------------------- 1 | name: appserver-clustered-w-db-concise 2 | services: 3 | - type: org.apache.brooklyn.entity.webapp.ControlledDynamicWebAppCluster 4 | initialSize: 2 5 | brooklyn.config: 6 | wars.root: http://search.maven.org/remotecontent?filepath=io/brooklyn/example/brooklyn-example-hello-world-sql-webapp/0.6.0/brooklyn-example-hello-world-sql-webapp-0.6.0.war 7 | http.port: 8080+ 8 | java.sysprops: 9 | brooklyn.example.db.url: $brooklyn:formatString("jdbc:%s%s?user=%s\\&password=%s", 10 | component("db").attributeWhenReady("datastore.url"), "visitors", "brooklyn", "br00k11n") 11 | - type: org.apache.brooklyn.entity.database.mysql.MySqlNode 12 | id: db 13 | name: DB HelloWorld Visitors 14 | brooklyn.config: 15 | datastore.creation.script.url: https://github.com/apache/incubator-brooklyn/raw/master/usage/launcher/src/test/resources/visitors-creation-script.sql 16 | --------------------------------------------------------------------------------