├── LICENSE ├── README.md ├── config ├── blobs.yml ├── dev.yml └── final.yml ├── jobs ├── mongodb_broker │ ├── monit │ ├── spec │ └── templates │ │ ├── bin │ │ ├── mongodb_broker_ctl │ │ └── monit_debugger │ │ ├── config │ │ ├── application-mvc.properties.erb │ │ ├── datasource.properties.erb │ │ ├── logback.xml.erb │ │ └── mongodb_broker.yml.erb │ │ ├── data │ │ └── properties.sh.erb │ │ └── helpers │ │ ├── ctl_setup.sh │ │ └── ctl_utils.sh ├── mongodb_broker_deregistrar │ ├── monit │ ├── spec │ └── templates │ │ └── errand.sh.erb ├── mongodb_broker_registrar │ ├── monit │ ├── spec │ └── templates │ │ └── errand.sh.erb ├── mongodb_config │ ├── monit │ ├── spec │ └── templates │ │ ├── bin │ │ ├── createUser.js.erb │ │ ├── initReplSet.js.erb │ │ ├── mongodb_config_ctl.erb │ │ ├── post-start.erb │ │ └── pre-start │ │ ├── config │ │ ├── mongod_configsvr.conf.erb │ │ ├── mongod_noAuth.conf.erb │ │ └── security_key.erb │ │ ├── data │ │ └── properties.sh.erb │ │ └── helpers │ │ ├── ctl_setup.sh │ │ └── ctl_utils.sh ├── mongodb_master │ ├── monit │ ├── spec │ └── templates │ │ ├── bin │ │ ├── createUser.js.erb │ │ ├── initReplSet.js.erb │ │ ├── mongodb_master_ctl.erb │ │ ├── post-start.erb │ │ └── pre-start │ │ ├── config │ │ ├── mongod_noAuth.conf.erb │ │ ├── mongod_repl.conf.erb │ │ └── security_key.erb │ │ ├── data │ │ └── properties.sh.erb │ │ └── helpers │ │ ├── ctl_setup.sh │ │ └── ctl_utils.sh ├── mongodb_shard │ ├── monit │ ├── spec │ └── templates │ │ ├── bin │ │ ├── createUser.js.erb │ │ ├── initShardSet.js.erb │ │ ├── mongodb_shard_ctl.erb │ │ ├── post-start.erb │ │ └── pre-start │ │ ├── config │ │ ├── mongod_noAuth.conf.erb │ │ ├── mongod_shard.conf.erb │ │ └── security_key.erb │ │ ├── data │ │ └── properties.sh.erb │ │ └── helpers │ │ ├── ctl_setup.sh │ │ └── ctl_utils.sh └── mongodb_slave │ ├── monit │ ├── spec │ └── templates │ ├── bin │ ├── mongodb_slave_ctl │ ├── post-start.erb │ └── pre-start │ ├── config │ ├── mongod_repl.conf.erb │ └── security_key.erb │ ├── data │ └── properties.sh.erb │ └── helpers │ ├── ctl_setup.sh │ └── ctl_utils.sh └── packages ├── cli ├── packaging └── spec ├── java7 ├── packaging └── spec ├── mongodb ├── packaging └── spec └── mongodb_broker ├── packaging └── spec /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/README.md -------------------------------------------------------------------------------- /config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /config/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/config/dev.yml -------------------------------------------------------------------------------- /config/final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/config/final.yml -------------------------------------------------------------------------------- /jobs/mongodb_broker/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/monit -------------------------------------------------------------------------------- /jobs/mongodb_broker/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/spec -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/bin/mongodb_broker_ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/bin/mongodb_broker_ctl -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/bin/monit_debugger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/bin/monit_debugger -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/config/application-mvc.properties.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/config/datasource.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/config/datasource.properties.erb -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/config/logback.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/config/logback.xml.erb -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/config/mongodb_broker.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/config/mongodb_broker.yml.erb -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/data/properties.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/data/properties.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/helpers/ctl_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/helpers/ctl_setup.sh -------------------------------------------------------------------------------- /jobs/mongodb_broker/templates/helpers/ctl_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker/templates/helpers/ctl_utils.sh -------------------------------------------------------------------------------- /jobs/mongodb_broker_deregistrar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/mongodb_broker_deregistrar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker_deregistrar/spec -------------------------------------------------------------------------------- /jobs/mongodb_broker_deregistrar/templates/errand.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker_deregistrar/templates/errand.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_broker_registrar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/mongodb_broker_registrar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker_registrar/spec -------------------------------------------------------------------------------- /jobs/mongodb_broker_registrar/templates/errand.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_broker_registrar/templates/errand.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/monit -------------------------------------------------------------------------------- /jobs/mongodb_config/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/spec -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/bin/createUser.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/bin/createUser.js.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/bin/initReplSet.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/bin/initReplSet.js.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/bin/mongodb_config_ctl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/bin/mongodb_config_ctl.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/bin/post-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/bin/post-start.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/bin/pre-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/bin/pre-start -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/config/mongod_configsvr.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/config/mongod_configsvr.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/config/mongod_noAuth.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/config/mongod_noAuth.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/config/security_key.erb: -------------------------------------------------------------------------------- 1 | <%= p('mongodb.key')%> 2 | -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/data/properties.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/data/properties.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/helpers/ctl_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/helpers/ctl_setup.sh -------------------------------------------------------------------------------- /jobs/mongodb_config/templates/helpers/ctl_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_config/templates/helpers/ctl_utils.sh -------------------------------------------------------------------------------- /jobs/mongodb_master/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/monit -------------------------------------------------------------------------------- /jobs/mongodb_master/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/spec -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/bin/createUser.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/bin/createUser.js.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/bin/initReplSet.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/bin/initReplSet.js.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/bin/mongodb_master_ctl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/bin/mongodb_master_ctl.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/bin/post-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/bin/post-start.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/bin/pre-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/bin/pre-start -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/config/mongod_noAuth.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/config/mongod_noAuth.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/config/mongod_repl.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/config/mongod_repl.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/config/security_key.erb: -------------------------------------------------------------------------------- 1 | <%= p('mongodb.key')%> 2 | -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/data/properties.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/data/properties.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/helpers/ctl_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/helpers/ctl_setup.sh -------------------------------------------------------------------------------- /jobs/mongodb_master/templates/helpers/ctl_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_master/templates/helpers/ctl_utils.sh -------------------------------------------------------------------------------- /jobs/mongodb_shard/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/monit -------------------------------------------------------------------------------- /jobs/mongodb_shard/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/spec -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/bin/createUser.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/bin/createUser.js.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/bin/initShardSet.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/bin/initShardSet.js.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/bin/mongodb_shard_ctl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/bin/mongodb_shard_ctl.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/bin/post-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/bin/post-start.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/bin/pre-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/bin/pre-start -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/config/mongod_noAuth.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/config/mongod_noAuth.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/config/mongod_shard.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/config/mongod_shard.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/config/security_key.erb: -------------------------------------------------------------------------------- 1 | <%= p('mongodb.key')%> 2 | -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/data/properties.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/data/properties.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/helpers/ctl_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/helpers/ctl_setup.sh -------------------------------------------------------------------------------- /jobs/mongodb_shard/templates/helpers/ctl_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_shard/templates/helpers/ctl_utils.sh -------------------------------------------------------------------------------- /jobs/mongodb_slave/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/monit -------------------------------------------------------------------------------- /jobs/mongodb_slave/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/spec -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/bin/mongodb_slave_ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/bin/mongodb_slave_ctl -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/bin/post-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/bin/post-start.erb -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/bin/pre-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/bin/pre-start -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/config/mongod_repl.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/config/mongod_repl.conf.erb -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/config/security_key.erb: -------------------------------------------------------------------------------- 1 | <%= p('mongodb.key')%> 2 | -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/data/properties.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/data/properties.sh.erb -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/helpers/ctl_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/helpers/ctl_setup.sh -------------------------------------------------------------------------------- /jobs/mongodb_slave/templates/helpers/ctl_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/jobs/mongodb_slave/templates/helpers/ctl_utils.sh -------------------------------------------------------------------------------- /packages/cli/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/cli/packaging -------------------------------------------------------------------------------- /packages/cli/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/cli/spec -------------------------------------------------------------------------------- /packages/java7/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/java7/packaging -------------------------------------------------------------------------------- /packages/java7/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/java7/spec -------------------------------------------------------------------------------- /packages/mongodb/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/mongodb/packaging -------------------------------------------------------------------------------- /packages/mongodb/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/mongodb/spec -------------------------------------------------------------------------------- /packages/mongodb_broker/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/mongodb_broker/packaging -------------------------------------------------------------------------------- /packages/mongodb_broker/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-MONGODB-SHARD-RELEASE/HEAD/packages/mongodb_broker/spec --------------------------------------------------------------------------------