├── .circleci └── config.yml ├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── config ├── dev │ └── onebox.yml ├── microsoft │ ├── countries.yml │ └── languages.yml ├── server-vars.yml ├── stamp │ ├── default │ │ ├── bvt.sh │ │ ├── cert.crt │ │ ├── cert.key │ │ ├── id_rsa │ │ ├── id_rsa.pub │ │ ├── keyvault-params.json │ │ ├── parameters-v3.json │ │ └── parameters.json │ └── stamp.yml ├── versions.yml └── xblocks.yml ├── emailmonitor ├── create_table.sql ├── oxa_email_config.cfg ├── oxa_email_monitor.py └── oxa_email_notifier.py ├── images ├── figure-2.png └── openedx-on-azure-ficus-stamp-deployment-guide.pdf ├── migrations └── database │ ├── dog_2_euc_migration_sql.sql │ ├── dog_2_euc_sql_migration_errors.txt │ ├── euc_2_fic_migration_sql.sql │ ├── euc_cleanup.sql │ └── migrate_scripts │ ├── README.md │ ├── create_sqlmigrate.py │ ├── csmh_table_migrate.sh │ ├── csmh_table_migrate_step2.sh │ ├── euc2fic │ ├── euc_db_fetch.py │ ├── fic_db_fetch.py │ └── run_sqlmigrate.sh │ ├── run_sqlmigrate.sh │ └── upgrade.log ├── onebox.sh ├── playbooks ├── oxa_configuration.yml └── roles │ ├── edxapp │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── create_superuser.sh │ │ ├── email │ │ │ ├── README │ │ │ ├── branded.template.html │ │ │ ├── branded.template.plain │ │ │ ├── courses.template.html │ │ │ ├── courses.template.plain │ │ │ ├── noname.template.html │ │ │ └── noname.template.plain │ │ ├── enable_msft_oauth.sh │ │ ├── import_kitchensink_course.sh │ │ ├── nginx │ │ │ └── configure_ssl.sh │ │ ├── oxa-tracking.sh │ │ ├── patches │ │ │ └── 9b1f89d19ad26625859f887b12931f4d48dd3ff0_updated.patch │ │ └── update_theme.sh │ └── tasks │ │ └── main.yml │ ├── memcached │ └── tasks │ │ └── main.yml │ ├── mongo │ └── tasks │ │ └── main.yml │ └── mysql │ ├── files │ ├── edxapp.sql │ └── oxa_configuration.sh │ └── tasks │ └── main.yml ├── scripts ├── Common.ps1 ├── Create-StorageContainer.ps1 ├── Deploy-CustomScriptsExtension-v2.ps1 ├── Deploy-CustomScriptsExtension.ps1 ├── Deploy-OxaStamp.ps1 ├── Process-OxaToolsKeyVaultConfiguration.ps1 ├── Run-OxaStampDeployment.ps1 ├── bootstrap-db.sh ├── bootstrap.sh ├── db_backup.sh ├── deploymentextensions │ ├── enablemobileapi │ │ ├── README.md │ │ └── install.sh │ ├── installhaproxy │ │ ├── README.md │ │ ├── haproxy.template.cfg │ │ ├── install.sh │ │ ├── logrotate.haproxy.template │ │ ├── mysqlmastercheck.sh │ │ ├── rsyslog.haproxy.template │ │ └── service_configuration.template │ ├── installmemcached │ │ ├── README.md │ │ └── install.sh │ ├── installtools │ │ ├── README.md │ │ └── install.sh │ ├── mysqlfailover │ │ ├── README.md │ │ ├── install.sh │ │ └── prepost-failover.sh │ ├── mysqlmovedatadirectory │ │ ├── README.md │ │ └── install.sh │ ├── rotatesshkey │ │ ├── README.md │ │ └── install.sh │ ├── rundjangomigrations │ │ ├── README.md │ │ └── install.sh │ └── setupdatabasebackup │ │ ├── README.md │ │ └── install.sh ├── install-monitoringagent.sh ├── install.sh └── servicebus_notification.py ├── templates ├── fullstack │ └── azuredeploy.json └── stamp │ ├── README.md │ ├── mongodb-ubuntu-install.sh │ ├── mysql-ubuntu-install.sh │ ├── mysqld.template-5.6.cnf │ ├── mysqld.template-5.7.cnf │ ├── node-jumpbox.json │ ├── node-keyvault.json │ ├── node-mongo.json │ ├── node-mysql.json │ ├── node-trafficmanager.json │ ├── node-vmss.json │ ├── run-customizations.sh │ ├── shared-resources.json │ ├── stamp-db-bootstrap.json │ ├── stamp-keyvault-v3.json │ ├── stamp-keyvault.json │ ├── stamp-monitoringagent.json │ ├── stamp-pod.json │ ├── stamp-v2-amp.json │ ├── stamp-v2-backend-upgrade-parameters.json │ ├── stamp-v2-backend-upgrade.json │ ├── stamp-v2.json │ ├── stamp-v3.json │ ├── stamp-vmss.json │ ├── stamp.json │ └── utilities.sh └── tests ├── deploy-onebox.sh ├── filterBranch.sh └── keep-alive.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config/dev/onebox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/dev/onebox.yml -------------------------------------------------------------------------------- /config/microsoft/countries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/microsoft/countries.yml -------------------------------------------------------------------------------- /config/microsoft/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/microsoft/languages.yml -------------------------------------------------------------------------------- /config/server-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/server-vars.yml -------------------------------------------------------------------------------- /config/stamp/default/bvt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/bvt.sh -------------------------------------------------------------------------------- /config/stamp/default/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/cert.crt -------------------------------------------------------------------------------- /config/stamp/default/cert.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/cert.key -------------------------------------------------------------------------------- /config/stamp/default/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/id_rsa -------------------------------------------------------------------------------- /config/stamp/default/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/id_rsa.pub -------------------------------------------------------------------------------- /config/stamp/default/keyvault-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/keyvault-params.json -------------------------------------------------------------------------------- /config/stamp/default/parameters-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/parameters-v3.json -------------------------------------------------------------------------------- /config/stamp/default/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/default/parameters.json -------------------------------------------------------------------------------- /config/stamp/stamp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/stamp/stamp.yml -------------------------------------------------------------------------------- /config/versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/versions.yml -------------------------------------------------------------------------------- /config/xblocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/config/xblocks.yml -------------------------------------------------------------------------------- /emailmonitor/create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/emailmonitor/create_table.sql -------------------------------------------------------------------------------- /emailmonitor/oxa_email_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/emailmonitor/oxa_email_config.cfg -------------------------------------------------------------------------------- /emailmonitor/oxa_email_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/emailmonitor/oxa_email_monitor.py -------------------------------------------------------------------------------- /emailmonitor/oxa_email_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/emailmonitor/oxa_email_notifier.py -------------------------------------------------------------------------------- /images/figure-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/images/figure-2.png -------------------------------------------------------------------------------- /images/openedx-on-azure-ficus-stamp-deployment-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/images/openedx-on-azure-ficus-stamp-deployment-guide.pdf -------------------------------------------------------------------------------- /migrations/database/dog_2_euc_migration_sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/dog_2_euc_migration_sql.sql -------------------------------------------------------------------------------- /migrations/database/dog_2_euc_sql_migration_errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/dog_2_euc_sql_migration_errors.txt -------------------------------------------------------------------------------- /migrations/database/euc_2_fic_migration_sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/euc_2_fic_migration_sql.sql -------------------------------------------------------------------------------- /migrations/database/euc_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/euc_cleanup.sql -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/README.md -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/create_sqlmigrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/create_sqlmigrate.py -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/csmh_table_migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/csmh_table_migrate.sh -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/csmh_table_migrate_step2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/csmh_table_migrate_step2.sh -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/euc2fic/euc_db_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/euc2fic/euc_db_fetch.py -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/euc2fic/fic_db_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/euc2fic/fic_db_fetch.py -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/euc2fic/run_sqlmigrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/euc2fic/run_sqlmigrate.sh -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/run_sqlmigrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/run_sqlmigrate.sh -------------------------------------------------------------------------------- /migrations/database/migrate_scripts/upgrade.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/migrations/database/migrate_scripts/upgrade.log -------------------------------------------------------------------------------- /onebox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/onebox.sh -------------------------------------------------------------------------------- /playbooks/oxa_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/oxa_configuration.yml -------------------------------------------------------------------------------- /playbooks/roles/edxapp/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/defaults/main.yml -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/create_superuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/create_superuser.sh -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/README -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/branded.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/branded.template.html -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/branded.template.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/branded.template.plain -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/courses.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/courses.template.html -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/courses.template.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/courses.template.plain -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/noname.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/noname.template.html -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/email/noname.template.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/email/noname.template.plain -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/enable_msft_oauth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/enable_msft_oauth.sh -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/import_kitchensink_course.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/import_kitchensink_course.sh -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/nginx/configure_ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/nginx/configure_ssl.sh -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/oxa-tracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/oxa-tracking.sh -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/patches/9b1f89d19ad26625859f887b12931f4d48dd3ff0_updated.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/patches/9b1f89d19ad26625859f887b12931f4d48dd3ff0_updated.patch -------------------------------------------------------------------------------- /playbooks/roles/edxapp/files/update_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/files/update_theme.sh -------------------------------------------------------------------------------- /playbooks/roles/edxapp/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/edxapp/tasks/main.yml -------------------------------------------------------------------------------- /playbooks/roles/memcached/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/memcached/tasks/main.yml -------------------------------------------------------------------------------- /playbooks/roles/mongo/tasks/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playbooks/roles/mysql/files/edxapp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/mysql/files/edxapp.sql -------------------------------------------------------------------------------- /playbooks/roles/mysql/files/oxa_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/mysql/files/oxa_configuration.sh -------------------------------------------------------------------------------- /playbooks/roles/mysql/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/playbooks/roles/mysql/tasks/main.yml -------------------------------------------------------------------------------- /scripts/Common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Common.ps1 -------------------------------------------------------------------------------- /scripts/Create-StorageContainer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Create-StorageContainer.ps1 -------------------------------------------------------------------------------- /scripts/Deploy-CustomScriptsExtension-v2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Deploy-CustomScriptsExtension-v2.ps1 -------------------------------------------------------------------------------- /scripts/Deploy-CustomScriptsExtension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Deploy-CustomScriptsExtension.ps1 -------------------------------------------------------------------------------- /scripts/Deploy-OxaStamp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Deploy-OxaStamp.ps1 -------------------------------------------------------------------------------- /scripts/Process-OxaToolsKeyVaultConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Process-OxaToolsKeyVaultConfiguration.ps1 -------------------------------------------------------------------------------- /scripts/Run-OxaStampDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/Run-OxaStampDeployment.ps1 -------------------------------------------------------------------------------- /scripts/bootstrap-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/bootstrap-db.sh -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/bootstrap.sh -------------------------------------------------------------------------------- /scripts/db_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/db_backup.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/enablemobileapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/enablemobileapi/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/enablemobileapi/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/enablemobileapi/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/haproxy.template.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/haproxy.template.cfg -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/logrotate.haproxy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/logrotate.haproxy.template -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/mysqlmastercheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/mysqlmastercheck.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/rsyslog.haproxy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/rsyslog.haproxy.template -------------------------------------------------------------------------------- /scripts/deploymentextensions/installhaproxy/service_configuration.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installhaproxy/service_configuration.template -------------------------------------------------------------------------------- /scripts/deploymentextensions/installmemcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installmemcached/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/installmemcached/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installmemcached/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/installtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installtools/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/installtools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/installtools/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/mysqlfailover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/mysqlfailover/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/mysqlfailover/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/mysqlfailover/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/mysqlfailover/prepost-failover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/mysqlfailover/prepost-failover.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/mysqlmovedatadirectory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/mysqlmovedatadirectory/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/mysqlmovedatadirectory/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/mysqlmovedatadirectory/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/rotatesshkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/rotatesshkey/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/rotatesshkey/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/rotatesshkey/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/rundjangomigrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/rundjangomigrations/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/rundjangomigrations/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/rundjangomigrations/install.sh -------------------------------------------------------------------------------- /scripts/deploymentextensions/setupdatabasebackup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/setupdatabasebackup/README.md -------------------------------------------------------------------------------- /scripts/deploymentextensions/setupdatabasebackup/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/deploymentextensions/setupdatabasebackup/install.sh -------------------------------------------------------------------------------- /scripts/install-monitoringagent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/install-monitoringagent.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/servicebus_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/scripts/servicebus_notification.py -------------------------------------------------------------------------------- /templates/fullstack/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/fullstack/azuredeploy.json -------------------------------------------------------------------------------- /templates/stamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/README.md -------------------------------------------------------------------------------- /templates/stamp/mongodb-ubuntu-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/mongodb-ubuntu-install.sh -------------------------------------------------------------------------------- /templates/stamp/mysql-ubuntu-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/mysql-ubuntu-install.sh -------------------------------------------------------------------------------- /templates/stamp/mysqld.template-5.6.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/mysqld.template-5.6.cnf -------------------------------------------------------------------------------- /templates/stamp/mysqld.template-5.7.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/mysqld.template-5.7.cnf -------------------------------------------------------------------------------- /templates/stamp/node-jumpbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/node-jumpbox.json -------------------------------------------------------------------------------- /templates/stamp/node-keyvault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/node-keyvault.json -------------------------------------------------------------------------------- /templates/stamp/node-mongo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/node-mongo.json -------------------------------------------------------------------------------- /templates/stamp/node-mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/node-mysql.json -------------------------------------------------------------------------------- /templates/stamp/node-trafficmanager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/node-trafficmanager.json -------------------------------------------------------------------------------- /templates/stamp/node-vmss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/node-vmss.json -------------------------------------------------------------------------------- /templates/stamp/run-customizations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/run-customizations.sh -------------------------------------------------------------------------------- /templates/stamp/shared-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/shared-resources.json -------------------------------------------------------------------------------- /templates/stamp/stamp-db-bootstrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-db-bootstrap.json -------------------------------------------------------------------------------- /templates/stamp/stamp-keyvault-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-keyvault-v3.json -------------------------------------------------------------------------------- /templates/stamp/stamp-keyvault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-keyvault.json -------------------------------------------------------------------------------- /templates/stamp/stamp-monitoringagent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-monitoringagent.json -------------------------------------------------------------------------------- /templates/stamp/stamp-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-pod.json -------------------------------------------------------------------------------- /templates/stamp/stamp-v2-amp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-v2-amp.json -------------------------------------------------------------------------------- /templates/stamp/stamp-v2-backend-upgrade-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-v2-backend-upgrade-parameters.json -------------------------------------------------------------------------------- /templates/stamp/stamp-v2-backend-upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-v2-backend-upgrade.json -------------------------------------------------------------------------------- /templates/stamp/stamp-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-v2.json -------------------------------------------------------------------------------- /templates/stamp/stamp-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-v3.json -------------------------------------------------------------------------------- /templates/stamp/stamp-vmss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp-vmss.json -------------------------------------------------------------------------------- /templates/stamp/stamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/stamp.json -------------------------------------------------------------------------------- /templates/stamp/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/templates/stamp/utilities.sh -------------------------------------------------------------------------------- /tests/deploy-onebox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/tests/deploy-onebox.sh -------------------------------------------------------------------------------- /tests/filterBranch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/tests/filterBranch.sh -------------------------------------------------------------------------------- /tests/keep-alive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/oxa-tools/HEAD/tests/keep-alive.sh --------------------------------------------------------------------------------