├── LICENSE ├── README.md ├── config ├── blobs.yml ├── dev.yml ├── final.yml └── private.yml ├── jobs ├── cubrid │ ├── monit │ ├── spec │ └── templates │ │ ├── .cubrid.sh.erb │ │ ├── cubrid.conf.erb │ │ ├── cubrid_broker.conf.erb │ │ ├── cubrid_broker_init.sql.erb │ │ ├── cubrid_ctl.erb │ │ ├── pre-start.erb │ │ └── ssh │ │ ├── certificate.pub.erb │ │ └── private_key.pem.erb ├── cubrid_broker │ ├── monit │ ├── spec │ └── templates │ │ ├── bin │ │ ├── cubrid_broker_ctl │ │ ├── monit_debugger │ │ └── pre-start.erb │ │ ├── config │ │ ├── application-mvc.properties.erb │ │ ├── cubrid_broker.yml.erb │ │ ├── datasource.properties.erb │ │ └── logback.xml.erb │ │ ├── data │ │ └── properties.sh.erb │ │ ├── helpers │ │ ├── ctl_setup.sh │ │ └── ctl_utils.sh │ │ └── ssh │ │ └── private_key.pem.erb ├── cubrid_broker_deregistrar │ ├── monit │ ├── spec │ └── templates │ │ └── errand.sh.erb └── cubrid_broker_registrar │ ├── monit │ ├── spec │ └── templates │ └── errand.sh.erb └── packages ├── cli ├── packaging └── spec ├── cubrid ├── packaging └── spec ├── cubrid_broker ├── packaging └── spec └── java ├── packaging └── spec /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/README.md -------------------------------------------------------------------------------- /config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /config/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/config/dev.yml -------------------------------------------------------------------------------- /config/final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/config/final.yml -------------------------------------------------------------------------------- /config/private.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/config/private.yml -------------------------------------------------------------------------------- /jobs/cubrid/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/monit -------------------------------------------------------------------------------- /jobs/cubrid/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/spec -------------------------------------------------------------------------------- /jobs/cubrid/templates/.cubrid.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/templates/.cubrid.sh.erb -------------------------------------------------------------------------------- /jobs/cubrid/templates/cubrid.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/templates/cubrid.conf.erb -------------------------------------------------------------------------------- /jobs/cubrid/templates/cubrid_broker.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/templates/cubrid_broker.conf.erb -------------------------------------------------------------------------------- /jobs/cubrid/templates/cubrid_broker_init.sql.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/templates/cubrid_broker_init.sql.erb -------------------------------------------------------------------------------- /jobs/cubrid/templates/cubrid_ctl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/templates/cubrid_ctl.erb -------------------------------------------------------------------------------- /jobs/cubrid/templates/pre-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid/templates/pre-start.erb -------------------------------------------------------------------------------- /jobs/cubrid/templates/ssh/certificate.pub.erb: -------------------------------------------------------------------------------- 1 | <%= p("cubrid.certificate") %> 2 | -------------------------------------------------------------------------------- /jobs/cubrid/templates/ssh/private_key.pem.erb: -------------------------------------------------------------------------------- 1 | <%= p("cubrid.private_key") %> 2 | -------------------------------------------------------------------------------- /jobs/cubrid_broker/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/monit -------------------------------------------------------------------------------- /jobs/cubrid_broker/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/spec -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/bin/cubrid_broker_ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/bin/cubrid_broker_ctl -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/bin/monit_debugger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/bin/monit_debugger -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/bin/pre-start.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/bin/pre-start.erb -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/config/application-mvc.properties.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/config/cubrid_broker.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/config/cubrid_broker.yml.erb -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/config/datasource.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/config/datasource.properties.erb -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/config/logback.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/config/logback.xml.erb -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/data/properties.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/data/properties.sh.erb -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/helpers/ctl_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/helpers/ctl_setup.sh -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/helpers/ctl_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker/templates/helpers/ctl_utils.sh -------------------------------------------------------------------------------- /jobs/cubrid_broker/templates/ssh/private_key.pem.erb: -------------------------------------------------------------------------------- 1 | <%= p("cubrid.private_key") %> 2 | -------------------------------------------------------------------------------- /jobs/cubrid_broker_deregistrar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/cubrid_broker_deregistrar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker_deregistrar/spec -------------------------------------------------------------------------------- /jobs/cubrid_broker_deregistrar/templates/errand.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker_deregistrar/templates/errand.sh.erb -------------------------------------------------------------------------------- /jobs/cubrid_broker_registrar/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/cubrid_broker_registrar/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker_registrar/spec -------------------------------------------------------------------------------- /jobs/cubrid_broker_registrar/templates/errand.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/jobs/cubrid_broker_registrar/templates/errand.sh.erb -------------------------------------------------------------------------------- /packages/cli/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/cli/packaging -------------------------------------------------------------------------------- /packages/cli/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/cli/spec -------------------------------------------------------------------------------- /packages/cubrid/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/cubrid/packaging -------------------------------------------------------------------------------- /packages/cubrid/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/cubrid/spec -------------------------------------------------------------------------------- /packages/cubrid_broker/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/cubrid_broker/packaging -------------------------------------------------------------------------------- /packages/cubrid_broker/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/cubrid_broker/spec -------------------------------------------------------------------------------- /packages/java/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/java/packaging -------------------------------------------------------------------------------- /packages/java/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaaS-TA/PAAS-TA-CUBRID-RELEASE/HEAD/packages/java/spec --------------------------------------------------------------------------------