├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pep8speaks.yml ├── Dockerfile ├── Dockerfile.base ├── Dockerfile.gcp ├── Dockerfile_old ├── LICENSE ├── Makefile ├── README.md ├── add_user_admin_on_mongo.py ├── dbaas ├── .coveragerc ├── account │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── organization.py │ │ ├── role.py │ │ ├── team.py │ │ └── user.py │ ├── api.py │ ├── backends.py │ ├── fixtures │ │ └── basic_roles.yaml │ ├── forms │ │ ├── __init__.py │ │ ├── change_password_form.py │ │ ├── role.py │ │ └── user.py │ ├── helper.py │ ├── migrations │ │ ├── 0001_create_user_roles.py │ │ ├── 0002_auto__add_team.py │ │ ├── 0003_auto__add_field_team_email.py │ │ ├── 0004_auto__add_field_team_database_alocation_limit.py │ │ ├── 0005_split_name.py │ │ ├── 0006_auto__add_field_team_contacts.py │ │ ├── 0007_auto__add_organization__add_field_team_organization.py │ │ ├── 0008_auto__chg_field_team_organization.py │ │ ├── 0009_auto__add_roleenvironment.py │ │ ├── 0010_auto__add_field_team_token.py │ │ ├── 0011_auto__add_field_team_team_area.py │ │ └── __init__.py │ ├── models.py │ ├── mommy_recipes.py │ ├── serializers.py │ ├── service │ │ ├── __init__.py │ │ ├── team.py │ │ └── user.py │ ├── static │ │ └── assets │ │ │ ├── img │ │ │ └── loading.gif │ │ │ └── js │ │ │ └── team.js │ ├── templates │ │ ├── account │ │ │ └── profile.html │ │ ├── admin │ │ │ └── account │ │ │ │ └── change_list.html │ │ └── ldap │ │ │ ├── base_login.html │ │ │ ├── password_reset.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ └── password_reset_email.html │ ├── templatetags │ │ ├── __init__.py │ │ └── team.py │ ├── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── test_admin_account.py │ │ ├── test_team.py │ │ └── test_user.py │ ├── urls.py │ └── views.py ├── admin │ ├── __init__.py │ ├── models.py │ ├── static │ │ ├── admin │ │ │ ├── css │ │ │ │ ├── admin-dbaas.css │ │ │ │ ├── admin_fonts.css │ │ │ │ ├── changelists-custom.css │ │ │ │ ├── dark-mode.css │ │ │ │ ├── datatables.css │ │ │ │ ├── datatables.min.css │ │ │ │ └── notification.css │ │ │ ├── fonts │ │ │ │ ├── NaPecZTIAOhVxoMyOr9n_E7fdM3mDaZRbryhsA.woff2 │ │ │ │ └── NaPecZTIAOhVxoMyOr9n_E7fdMPmDaZRbrw.woff2 │ │ │ └── js │ │ │ │ ├── chart.js │ │ │ │ ├── confirmation_modal.js │ │ │ │ ├── dark_mode.js │ │ │ │ ├── datatables.js │ │ │ │ ├── datatables.min.js │ │ │ │ ├── jquery-3.2.1.min.js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── mustache2.js │ │ │ │ └── notification.js │ │ ├── db-dev-logo.png │ │ ├── dbaas_logo.png │ │ └── favicon.ico │ ├── templates │ │ ├── admin │ │ │ ├── base.html │ │ │ ├── base_site.html │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ ├── change_list_results.html │ │ │ ├── confirmation_modal.html │ │ │ ├── confirmation_modal_input.html │ │ │ ├── edit_inline │ │ │ │ ├── stacked.html │ │ │ │ └── tabular.html │ │ │ ├── generic_confirmation_modal_input.html │ │ │ ├── includes │ │ │ │ ├── field.html │ │ │ │ └── fieldset.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ ├── maintenance_confirmation_modal.html │ │ │ ├── schedule_maintenance.html │ │ │ └── submit_line.html │ │ └── registration │ │ │ ├── logged_out.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ └── password_reset_form.html │ └── templatetags │ │ ├── __init__.py │ │ ├── audit.py │ │ └── config_tags.py ├── api │ ├── __init__.py │ ├── add_readonly.py │ ├── base.py │ ├── credential.py │ ├── databaase_migrate_engine.py │ ├── database.py │ ├── database_change_parameter.py │ ├── database_clone.py │ ├── database_create.py │ ├── database_destroy.py │ ├── database_history.py │ ├── database_reinstall_vm.py │ ├── database_resize.py │ ├── database_restore.py │ ├── database_upgrade.py │ ├── database_upgrade_patch.py │ ├── engine.py │ ├── engine_type.py │ ├── environment.py │ ├── extra_dns.py │ ├── host.py │ ├── host_migrate.py │ ├── integration_credential.py │ ├── integration_type.py │ ├── list_database.py │ ├── list_team.py │ ├── maintenance_base.py │ ├── plan.py │ ├── pool.py │ ├── project.py │ ├── recreate_slave.py │ ├── remove_readonly.py │ ├── renderers.py │ ├── restart_database.py │ ├── snapshot.py │ ├── task.py │ ├── team.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_credentialapi.py │ │ ├── test_databaseapi.py │ │ ├── test_host.py │ │ ├── test_projectapi.py │ │ └── test_taskhistory_serializer.py │ ├── update_ssl.py │ ├── urls.py │ ├── user.py │ └── zabbix_disk_size_alert.py ├── backup │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── snapshot.py │ │ └── views │ │ │ ├── __init__.py │ │ │ └── main.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_snapshot_environment.py │ │ ├── 0003_auto__add_field_snapshot_error.py │ │ ├── 0004_auto__add_index_snapshot_database_name.py │ │ ├── 0005_auto__add_logconfiguration__add_unique_logconfiguration_environment_en.py │ │ ├── 0006_auto__add_field_logconfiguration_cron_minute__add_field_logconfigurati.py │ │ ├── 0007_auto__add_field_snapshot_is_automatic.py │ │ ├── 0008_auto__add_backupgroup__add_field_snapshot_group.py │ │ ├── 0009_auto__del_logconfiguration__del_unique_logconfiguration_environment_en.py │ │ ├── 0010_auto__add_field_snapshot_identifier__add_field_snapshot_volume.py │ │ ├── 0011_auto__del_field_snapshot_identifier__del_field_snapshot_export_path.py │ │ ├── 0012_auto__add_field_snapshot_volume_path.py │ │ ├── 0013_auto__add_field_snapshot_persistent.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ └── admin │ │ │ └── backup │ │ │ └── snapshot │ │ │ ├── change_form.html │ │ │ └── change_list.html │ ├── tests.py │ └── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── test_make_databases_backup.py │ │ ├── test_make_instance_snapshot_backup.py │ │ └── test_purge_unused_exports.py ├── dashboard │ ├── __init__.py │ ├── models.py │ ├── search_indexes.py │ ├── static │ │ └── assets │ │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── main.css │ │ │ └── theme.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ │ ├── img │ │ │ ├── MongoDB_logo.png │ │ │ ├── asc.gif │ │ │ ├── bg.gif │ │ │ ├── desc.gif │ │ │ ├── logo.png │ │ │ ├── mongo.png │ │ │ ├── mysql.png │ │ │ └── mysql_logo.png │ │ │ └── js │ │ │ ├── bignumber.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.tablesorter.js │ │ │ ├── main.min.js │ │ │ └── modernizr-build.min.js │ ├── templates │ │ ├── dashboard │ │ │ ├── base.html │ │ │ ├── dashboard.html │ │ │ ├── databaseinfra.html │ │ │ └── menu.html │ │ └── search │ │ │ ├── indexes │ │ │ └── logical │ │ │ │ └── database_text.txt │ │ │ └── search.html │ ├── templatetags │ │ ├── __init__.py │ │ └── menu.py │ ├── urls.py │ └── views.py ├── dbaas │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ └── flat_page.py │ ├── celery.py │ ├── celeryconfig.py │ ├── constants.py │ ├── features.py │ ├── helpers.py │ ├── keys │ │ ├── 1 │ │ └── meta │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── filer_migrate_by_infra_name.py │ │ │ └── sample_data.py │ ├── middleware.py │ ├── settings.py │ ├── settings_test.py │ ├── static │ │ └── admin │ │ │ ├── login.css │ │ │ ├── logo-140x140.png │ │ │ └── progress_bar.css │ ├── templates │ │ ├── adminplus │ │ │ ├── base.html │ │ │ └── index.html │ │ ├── deploy │ │ │ └── deploy.html │ │ ├── email_extras │ │ │ ├── new_user_notification.html │ │ │ ├── new_user_notification.txt │ │ │ ├── team_change_notification.html │ │ │ └── team_change_notification.txt │ │ ├── flatpages │ │ │ ├── default.html │ │ │ └── status.html │ │ └── progress_bar │ │ │ └── progress_bar.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── dbaas_tags.py │ │ └── settings_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── helpers.py │ │ └── test_send_mail_helper.py │ ├── urls.py │ ├── version.py │ ├── views.py │ └── wsgi.py ├── dbaas_services │ ├── __init__.py │ └── analyzing │ │ ├── __init__.py │ │ ├── actions │ │ ├── __init__.py │ │ └── minimum_value.py │ │ ├── admin │ │ ├── __init__.py │ │ ├── analyze.py │ │ └── execution_plan.py │ │ ├── exceptions │ │ ├── __init__.py │ │ └── analyze.py │ │ ├── forms │ │ ├── __init__.py │ │ ├── analyze.py │ │ └── execution_plan.py │ │ ├── integration │ │ ├── __init__.py │ │ └── analyze.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_analyzerepository_email_sent__add_index_analyzereposit.py │ │ ├── 0003_auto__add_executionplan.py │ │ ├── 0004_auto__add_field_executionplan_alarm_repository_attr.py │ │ ├── 0005_auto__add_field_analyzerepository_volume_alarm.py │ │ ├── 0006_auto__add_field_analyzerepository_databaseinfra_name.py │ │ ├── 0007_auto__add_field_analyzerepository_cpu_threshold__add_field_analyzerepo.py │ │ ├── 0008_auto__add_field_executionplan_threshold_repository_attr.py │ │ ├── 0009_auto__add_field_executionplan_minimum_value.py │ │ ├── 0010_auto__add_field_executionplan_field_to_check_value.py │ │ ├── 0011_auto__chg_field_analyzerepository_analyzed_at.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── service │ │ ├── __init__.py │ │ ├── analyze.py │ │ └── execution_plan.py │ │ ├── tasks │ │ ├── __init__.py │ │ ├── analyze.py │ │ └── send_email.py │ │ ├── templates │ │ ├── databases │ │ │ └── index.html │ │ ├── email_extras │ │ │ ├── analyzing_notification.html │ │ │ └── analyzing_notification.txt │ │ └── reports │ │ │ └── index.html │ │ ├── urls.py │ │ └── views.py ├── djcelery_dbaas │ ├── __init__.py │ └── admin.py ├── drivers │ ├── __init__.py │ ├── base.py │ ├── errors.py │ ├── factory.py │ ├── fake.py │ ├── mongodb.py │ ├── mongodb_k8s.py │ ├── mysqldb.py │ ├── mysqlpercona.py │ ├── redis.py │ ├── replication_topologies │ │ ├── __init__.py │ │ ├── base.py │ │ ├── mongodb.py │ │ ├── mysql.py │ │ ├── mysql_percona.py │ │ └── redis.py │ ├── scripts │ │ ├── clone.sh │ │ ├── dummy_clone.sh │ │ ├── mongodb_clone.sh │ │ ├── mysql_clone.sh │ │ └── redis_clone.py │ └── tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_driver_mysql.py │ │ ├── test_driver_pymongo.py │ │ └── test_driver_redis.py ├── extra_dns │ ├── __init__.py │ ├── admin │ │ └── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── service │ │ ├── __init__.py │ │ └── extra_dns.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── logical │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── database.py │ │ └── project.py │ ├── errors.py │ ├── exceptions.py │ ├── forms │ │ ├── __init__.py │ │ ├── credential.py │ │ ├── database.py │ │ ├── fields.py │ │ └── project.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── remove_quarantineDB.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_database_group.py │ │ ├── 0003_auto__add_field_database_is_in_quarantine__add_field_database_quaranti.py │ │ ├── 0004_fake_migration_of_onetoone_to_fk.py │ │ ├── 0006_remove_unique_constraint_group_id.py │ │ ├── 0007_auto__del_unique_credential_user__add_unique_credential_user_database.py │ │ ├── 0008_auto__del_unique_database_name__add_unique_database_name_databaseinfra.py │ │ ├── 0009_auto__del_field_database_group__add_field_database_team.py │ │ ├── 0010_auto__add_field_database_description.py │ │ ├── 0011_project_description.py │ │ ├── 0012_auto__add_field_database_status.py │ │ ├── 0013_auto__add_field_database_used_size_in_bytes.py │ │ ├── 0014_auto__add_field_database_environment.py │ │ ├── 0015_auto__del_unique_database_name_databaseinfra__add_unique_database_name.py │ │ ├── 0016_auto__del_unique_database_name_environment__add_unique_database_name_d.py │ │ ├── 0017_auto__del_unique_database_name_databaseinfra__add_unique_database_name.py │ │ ├── 0018_auto__add_field_database_backup_path.py │ │ ├── 0019_auto__add_index_database_name.py │ │ ├── 0020_auto__add_field_database_contacts.py │ │ ├── 0021_auto__add_field_database_subscribe_to_email_events.py │ │ ├── 0022_auto__add_field_database_disk_auto_resize.py │ │ ├── 0023_auto__del_field_database_contacts.py │ │ ├── 0024_auto__add_field_database_is_protected.py │ │ ├── 0025_auto__add_field_database_current_task.py │ │ ├── 0026_auto__add_databaselock.py │ │ ├── 0027_auto__del_field_database_current_task.py │ │ ├── 0028_auto__add_field_database_quarantine_user.py │ │ ├── 0029_auto__add_databasehistory.py │ │ ├── 0030_auto__add_field_credential_force_ssl.py │ │ ├── 0031_auto__add_field_credential_privileges.py │ │ ├── 0032_auto__add_field_database_pool.py │ │ ├── 0033_auto__del_field_database_pool.py │ │ ├── 0034_auto__add_field_database_log_type.py │ │ ├── 0035_auto__del_field_database_log_type.py │ │ ├── 0036_auto__add_field_databasehistory_apps_bind_name.py │ │ ├── 0037_auto__del_field_databasehistory_apps_bind_name__add_field_database_app.py │ │ ├── 0038_auto__add_field_database_is_monitoring.py │ │ ├── 0039_auto__add_field_database_attention__add_field_database_attention_descr.py │ │ ├── 0040_auto__chg_field_database_attention_description.py │ │ ├── 0041_auto__add_field_database_send_all_chg.py │ │ ├── 0042_auto__add_field_database_can_do_autoupgrade.py │ │ └── __init__.py │ ├── models.py │ ├── mommy_recipes.py │ ├── serializers.py │ ├── service │ │ ├── __init__.py │ │ ├── credential.py │ │ ├── database.py │ │ └── project.py │ ├── services.py │ ├── static │ │ ├── css │ │ │ ├── database_admin.css │ │ │ └── metrics.css │ │ └── js │ │ │ ├── bootstrap-popover.js │ │ │ ├── bootstrap-tooltip.js │ │ │ ├── bootstrap-transition.js │ │ │ ├── clone.js │ │ │ ├── credential.js │ │ │ ├── database_admin.js │ │ │ ├── extra_dns.js │ │ │ ├── hosts.js │ │ │ ├── migrate.js │ │ │ ├── moment.min.js │ │ │ ├── mustache.js │ │ │ ├── parameters_validator.js │ │ │ └── tab.js │ ├── tasks.py │ ├── templates │ │ ├── admin │ │ │ └── logical │ │ │ │ └── database │ │ │ │ └── change_list.html │ │ └── logical │ │ │ ├── database │ │ │ ├── database_add_form.html │ │ │ ├── details │ │ │ │ ├── backup_tab.html │ │ │ │ ├── base.html │ │ │ │ ├── cost_tab.html │ │ │ │ ├── credentials_tab.html │ │ │ │ ├── destroy_tab.html │ │ │ │ ├── details_tab.html │ │ │ │ ├── disk_tab.html │ │ │ │ ├── dns_tab.html │ │ │ │ ├── history_tab.html │ │ │ │ ├── hosts_tab.html │ │ │ │ ├── maintenance_tab.html │ │ │ │ ├── metrics_tab.html │ │ │ │ ├── migrate_tab.html │ │ │ │ ├── parameters_tab.html │ │ │ │ ├── persistence_tab.html │ │ │ │ ├── resizes_tab.html │ │ │ │ └── upgrade_tab.html │ │ │ ├── dex_analyze.html │ │ │ └── task_schedule │ │ │ │ ├── already_executed_tasks_table.html │ │ │ │ └── scheduled_table.html │ │ │ └── modal │ │ │ ├── change_static_parameter.html │ │ │ ├── change_user_pass.html │ │ │ ├── delete_database.html │ │ │ ├── delete_database_quarantine.html │ │ │ ├── delete_snapshot.html │ │ │ ├── generic_modal_body_confirmation_input.html │ │ │ ├── persistence_database.html │ │ │ ├── restore_snapshot.html │ │ │ ├── set_ssl_not_required.html │ │ │ ├── set_ssl_required.html │ │ │ ├── setup_ssl.html │ │ │ ├── upgrade_disk_type_body.html │ │ │ └── vm_offering_body.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── capacity.py │ │ ├── logical_util.py │ │ └── schedule_task_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── test_admin_database.py │ │ ├── test_credential.py │ │ ├── test_database.py │ │ ├── test_parameter_validator.py │ │ └── test_templatetag_capacity.py │ ├── urls.py │ ├── utils.py │ ├── validators.py │ └── views.py ├── maintenance │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── add_instances_to_database.py │ │ ├── database_auto_upgrade_vm_offering.py │ │ ├── database_change_parameter.py │ │ ├── database_change_persistence.py │ │ ├── database_clone.py │ │ ├── database_configure_db_params.py │ │ ├── database_configure_ssl.py │ │ ├── database_configure_static_db_params.py │ │ ├── database_create.py │ │ ├── database_destroy.py │ │ ├── database_maintenance_task.py │ │ ├── database_migrate.py │ │ ├── database_reinstall_vm.py │ │ ├── database_resize.py │ │ ├── database_restore.py │ │ ├── database_set_ssl_not_required.py │ │ ├── database_set_ssl_required.py │ │ ├── database_start_database_vm.py │ │ ├── database_stop_database_vm.py │ │ ├── database_upgrade.py │ │ ├── database_upgrade_disk_type.py │ │ ├── database_upgrade_patch.py │ │ ├── host_maintenance.py │ │ ├── host_migrate.py │ │ ├── maintenance.py │ │ ├── migrate_engine.py │ │ ├── recreate_slave.py │ │ ├── remove_instance_database.py │ │ ├── restart_database.py │ │ ├── task_schedule.py │ │ └── update_ssl.py │ ├── async_jobs │ │ ├── __init__.py │ │ ├── base.py │ │ ├── remove_instance_database.py │ │ └── restart_database.py │ ├── forms │ │ ├── __init__.py │ │ ├── host_maintenance.py │ │ └── maintenance.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_maintenance_maximum_workers.py │ │ ├── 0003_auto__chg_field_maintenance_description.py │ │ ├── 0004_auto__chg_field_hostmaintenance_finished_at__chg_field_hostmaintenance.py │ │ ├── 0005_auto__del_field_maintenance_check_script__add_field_maintenance_celery.py │ │ ├── 0006_auto__add_unique_hostmaintenance_host_maintenance.py │ │ ├── 0007_auto__add_index_hostmaintenance_host_maintenance.py │ │ ├── 0008_auto__add_field_maintenance_status.py │ │ ├── 0009_auto__add_unique_maintenance_scheduled_for.py │ │ ├── 0010_auto__add_field_maintenance_query_error__add_field_maintenance_affecte.py │ │ ├── 0011_auto__add_field_maintenance_started_at__add_field_maintenance_finished.py │ │ ├── 0012_auto__add_field_hostmaintenance_hostname__chg_field_hostmaintenance_ho.py │ │ ├── 0013_auto__add_field_maintenance_hostsid.py │ │ ├── 0014_auto__del_field_maintenance_query_error__del_field_maintenance_host_qu.py │ │ ├── 0015_auto__add_maintenanceparameters.py │ │ ├── 0016_auto__add_field_maintenance_created_by__add_field_maintenance_revoked_.py │ │ ├── 0017_auto__add_databaseupgrade.py │ │ ├── 0018_auto__add_field_databaseupgrade_can_do_retry.py │ │ ├── 0019_auto__add_databaseresize.py │ │ ├── 0020_auto__add_databasechangeparameter.py │ │ ├── 0021_auto__add_databasecreate.py │ │ ├── 0022_auto__add_databaserestoreinstancepair__add_unique_databaserestoreinsta.py │ │ ├── 0023_auto__add_databasereinstallvm.py │ │ ├── 0024_auto__add_field_databaseupgrade_source_plan_name__add_field_databaseup.py │ │ ├── 0025_auto__add_field_databasecreate_plan_name__chg_field_databasecreate_pla.py │ │ ├── 0026_auto__chg_field_databasecreate_plan__chg_field_databaseupgrade_target_.py │ │ ├── 0027_auto__add_field_databaseresize_source_offer_name__add_field_databasere.py │ │ ├── 0028_auto__chg_field_databaseresize_target_offer__chg_field_databaseresize_.py │ │ ├── 0029_auto__chg_field_databasecreate_database__chg_field_databaseresize_targ.py │ │ ├── 0030_auto__add_databaseconfiguressl.py │ │ ├── 0030_auto__add_field_maintenance_disable_alarms.py │ │ ├── 0031_fix_configure_ssl.py │ │ ├── 0032_auto__add_databasedestroy.py │ │ ├── 0033_auto__add_hostmigrate.py │ │ ├── 0034_auto__add_databasemigrate__add_field_hostmigrate_database_migrate.py │ │ ├── 0035_auto__add_field_databasemigrate_origin_environment.py │ │ ├── 0036_auto__add_field_databasemigrate_offering__add_field_databasemigrate_or.py │ │ ├── 0037_auto__add_field_hostmigrate_snapshot.py │ │ ├── 0038_auto__add_filermigrate.py │ │ ├── 0039_auto__add_databaseupgradepatch.py │ │ ├── 0040_auto__add_recreateslave.py │ │ ├── 0041_auto__add_updatessl.py │ │ ├── 0042_auto__add_taskschedule.py │ │ ├── 0043_auto__add_databasemigrateengine.py │ │ ├── 0044_auto__add_field_filermigrate_task_schedule__add_field_updatessl_task_s.py │ │ ├── 0045_auto__add_field_databasemigrateengine_current_patch.py │ │ ├── 0046_auto__del_field_databasemigrateengine_current_patch.py │ │ ├── 0047_auto__add_field_databasemigrateengine_current_database.py │ │ ├── 0048_auto__add_databaseclone.py │ │ ├── 0049_auto__add_addinstancestodatabase.py │ │ ├── 0050_auto__add_restartdatabase.py │ │ ├── 0051_auto__add_removeinstancedatabase.py │ │ ├── 0052_auto__del_databasemigrateengine.py │ │ ├── 0053_auto__add_databasemigrateengine.py │ │ ├── 0054_auto__chg_field_removeinstancedatabase_instance.py │ │ ├── 0055_auto__add_databasechangepersistence.py │ │ ├── 0056_auto__add_databasesetsslnotrequired__add_databasesetsslrequired.py │ │ ├── 0057_auto__add_field_databasecreate_pool.py │ │ ├── 0058_auto__add_databasesetsslnotrequired__add_databasechangepersistence__ad.py │ │ ├── 0059_auto__add_field_hostmigrate_zone_origin.py │ │ ├── 0060_auto__add_databasemigratestandalonephase1__add_databasemigratestandalo.py │ │ ├── 0061_auto__del_databasemigratestandalonephase1__del_databasemigratestandalo.py │ │ ├── 0062_auto__add_field_databasemigrate_migration_stage.py │ │ ├── 0063_auto__add_field_databaseclone_current_step_class__add_field_hostmigrat.py │ │ ├── 0064_auto__add_databaseupgradedisktype.py │ │ ├── 0065_auto__del_field_databaseupgradedisktype_instance_snapshot.py │ │ ├── 0066_auto__add_field_databasedestroy_instances.py │ │ ├── 0067_auto__add_field_databasemigrate_is_region_migrate.py │ │ ├── 0068_auto__add_databasestopvminstancemaster__add_unique_databasestopvminsta.py │ │ ├── 0069_auto__add_databasequarantine.py │ │ ├── 0070_auto__add_databaseautoupgradevmoffering.py │ │ ├── 0071_auto__add_field_databaseautoupgradevmoffering_source_offer__add_field_.py │ │ ├── 0072_auto__add_field_databaseautoupgradevmoffering_resize_target.py │ │ ├── 0073_auto__add_field_databaseautoupgradevmoffering_source_offer_name__add_f.py │ │ ├── 0074_auto__del_field_databaseautoupgradevmoffering_source_offer_name__del_f.py │ │ ├── 0075_auto__add_field_databaseautoupgradevmoffering_number_of_instances__add.py │ │ ├── 0076_auto__add_field_databaseautoupgradevmoffering_base_snapshot.py │ │ ├── 0077_auto__add_databaseconfiguredbparams.py │ │ ├── 0078_auto__add_databaseconfigurestaticdbparams.py │ │ └── __init__.py │ ├── models.py │ ├── registered_functions │ │ ├── __init__.py │ │ └── functools.py │ ├── scripts │ │ ├── __init__.py │ │ ├── compare_resource_id.py │ │ ├── filer_migrate.py │ │ ├── migrate_email.py │ │ ├── restart_database.py │ │ ├── switch_all_masters_in_zone.py │ │ ├── update_config_files.py │ │ └── update_volume_path.py │ ├── service │ │ ├── __init__.py │ │ ├── host_maintenance.py │ │ └── maintenance.py │ ├── static │ │ └── js │ │ │ └── maintenance.js │ ├── task_auto_upgrade_vm_offering.py │ ├── task_configure_db_params.py │ ├── task_configure_static_db_params.py │ ├── task_start_database_vm.py │ ├── task_stop_database_vm.py │ ├── task_upgrade_type_disk.py │ ├── tasks.py │ ├── tasks_create_database.py │ ├── tasks_database_migrate.py │ ├── tasks_disk_resize.py │ ├── tasks_migrate.py │ ├── tasks_region_migrate.py │ ├── tasks_restore_backup.py │ ├── templates │ │ └── admin │ │ │ └── maintenance │ │ │ ├── hostmaintenance │ │ │ └── change_form.html │ │ │ └── maintenance │ │ │ └── custom_change_form.html │ ├── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── test_async_jobs │ │ │ ├── __init__.py │ │ │ └── test_base.py │ │ ├── test_database_change_parameter_admin.py │ │ ├── test_database_change_parameter_model.py │ │ ├── test_database_migrate.py │ │ ├── test_database_resize_admin.py │ │ ├── test_database_resize_model.py │ │ ├── test_database_upgrade_admin.py │ │ └── test_database_upgrade_model.py │ └── validators │ │ └── __init__.py ├── manage.py ├── notification │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ └── task_history.py │ ├── management │ │ ├── __init__.py │ │ ├── arguments │ │ │ ├── __init__.py │ │ │ └── factory.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── sync_celery.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_taskhistory_arguments.py │ │ ├── 0003_auto__del_field_taskhistory_description__add_field_taskhistory_details.py │ │ ├── 0004_auto__add_field_taskhistory_db_id.py │ │ ├── 0005_auto__chg_field_taskhistory_db_id.py │ │ ├── 0006_auto__add_index_taskhistory_task_status.py │ │ ├── 0007_auto__del_field_taskhistory_db_id.py │ │ ├── 0008_auto__add_field_taskhistory_db_id.py │ │ ├── 0009_auto__add_field_taskhistory_object_id__add_field_taskhistory_object_cl.py │ │ ├── 0010_auto__add_index_taskhistory_user.py │ │ ├── 0011_auto__add_field_taskhistory_database_name.py │ │ ├── 0012_auto__add_index_taskhistory_database_name.py │ │ ├── 0013_auto__add_field_taskhistory_relevance.py │ │ └── __init__.py │ ├── models.py │ ├── scripts │ │ ├── __init__.py │ │ └── script_mongo_log_rotate.py │ ├── static │ │ ├── css │ │ │ └── notification.css │ │ └── js │ │ │ ├── jquery.countdown.js │ │ │ └── notification.js │ ├── tasks.py │ ├── tasks_disk_resize.py │ ├── templates │ │ ├── admin │ │ │ └── notification │ │ │ │ └── taskhistory │ │ │ │ ├── change_form.html │ │ │ │ └── change_list.html │ │ └── email_extras │ │ │ ├── auto_upgrade_offering_notification.html │ │ │ ├── auto_upgrade_offering_notification.txt │ │ │ ├── bottom.html │ │ │ ├── bottom.txt │ │ │ ├── database_create_notification.html │ │ │ ├── database_create_notification.txt │ │ │ ├── database_notification.html │ │ │ ├── database_notification.txt │ │ │ ├── disk_auto_resize_notification.html │ │ │ ├── disk_auto_resize_notification.txt │ │ │ ├── infra_notification.html │ │ │ ├── infra_notification.txt │ │ │ ├── restart_database_notification.html │ │ │ ├── restart_database_notification.txt │ │ │ ├── schedule_task_notification.html │ │ │ ├── schedule_task_notification.txt │ │ │ ├── task_information.html │ │ │ ├── task_information.txt │ │ │ ├── task_updated.html │ │ │ ├── task_updated.txt │ │ │ ├── task_warning.html │ │ │ ├── task_warning.txt │ │ │ ├── update_ssl_notification.html │ │ │ └── update_ssl_notification.txt │ ├── templatetags │ │ ├── __init__.py │ │ └── notification_tags.py │ ├── tests.py │ ├── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── fakes │ │ │ ├── __init__.py │ │ │ └── get_notifications.py │ │ ├── test_disk_resize.py │ │ ├── test_listeners.py │ │ ├── test_notification.py │ │ ├── test_notification_tags.py │ │ ├── test_periodic_tasks.py │ │ ├── test_periodic_tasks │ │ │ ├── __init__.py │ │ │ ├── test_check_database_is_alive.py │ │ │ ├── test_check_databases_status.py │ │ │ ├── test_check_ssl_expire_at.py │ │ │ └── test_send_mail_24hours_before_auto_task.py │ │ ├── test_task_history.py │ │ ├── test_task_register.py │ │ ├── test_task_update_sizes.py │ │ ├── test_urls.py │ │ └── test_user_tasks_view.py │ ├── urls.py │ ├── util.py │ └── views.py ├── physical │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── cloud.py │ │ ├── core_replication_topology.py │ │ ├── databaseinfra.py │ │ ├── disk_offering.py │ │ ├── disk_offering_type.py │ │ ├── engine.py │ │ ├── engine_type.py │ │ ├── environment.py │ │ ├── environment_group.py │ │ ├── host.py │ │ ├── ip.py │ │ ├── offering.py │ │ ├── parameter.py │ │ ├── plan.py │ │ ├── pool.py │ │ ├── replication_topology.py │ │ ├── script.py │ │ ├── vip.py │ │ └── vip_instance_group.py │ ├── api.py │ ├── commands.py │ ├── configurations.py │ ├── database_scripts.py │ ├── errors.py │ ├── factories │ │ ├── __init__.py │ │ └── prometheus_exporter_factory.py │ ├── fixtures │ │ └── initial_data.yaml │ ├── forms │ │ ├── __init__.py │ │ ├── database_infra.py │ │ ├── disk_offerring.py │ │ ├── engine_patch.py │ │ ├── environment_group.py │ │ ├── instance_formset.py │ │ ├── parameter.py │ │ ├── plan_admin.py │ │ └── replication_topology.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__del_field_instance_type.py │ │ ├── 0003_auto__add_field_databaseinfra_capacity.py │ │ ├── 0004_auto__add_field_databaseinfra_per_database_size_mbytes.py │ │ ├── 0005_auto__add_field_host_monitor_url.py │ │ ├── 0006_auto__chg_field_host_monitor_url.py │ │ ├── 0007_auto__add_field_databaseinfra_endpoint.py │ │ ├── 0008_auto__add_field_plan_provider.py │ │ ├── 0009_auto__add_field_plan_is_ha.py │ │ ├── 0010_auto__add_field_plan_max_db_size.py │ │ ├── 0011_auto__add_field_instance_dns__add_field_databaseinfra_endpoint_dns__ad.py │ │ ├── 0012_auto__add_field_instance_status.py │ │ ├── 0013_auto__add_field_instance_database_type.py │ │ ├── 0014_auto__del_field_instance_database_type__add_field_instance_instance_ty.py │ │ ├── 0015_auto__add_field_environment_equivalent_environment__add_field_host_fut.py │ │ ├── 0016_auto__add_field_instance_future_instance.py │ │ ├── 0017_auto__chg_field_environment_equivalent_environment__chg_field_instance.py │ │ ├── 0018_auto__add_field_plan_engine.py │ │ ├── 0019_auto__del_field_plan_engine_type.py │ │ ├── 0020_auto__add_field_plan_engine_equivalent_plan.py │ │ ├── 0021_auto__add_field_engine_engine_upgrade_option.py │ │ ├── 0022_auto__add_replicationtopology__add_field_plan_replication_topology.py │ │ ├── 0023_auto__add_diskoffering.py │ │ ├── 0024_auto__add_field_databaseinfra_disk_offering__add_field_plan_disk_offer.py │ │ ├── 0025_auto__add_field_diskoffering_available_size_kb.py │ │ ├── 0026_auto__add_field_plan_flipperfox_equivalent_plan.py │ │ ├── 0027_add_field_EngineType_is_in_memory.py │ │ ├── 0028_auto__add_field_plan_has_persistence.py │ │ ├── 0029_auto__del_field_environment_equivalent_environment__del_field_plan_equ.py │ │ ├── 0030_auto__add_field_host_os_description.py │ │ ├── 0031_auto__add_field_databaseinfra_database_key.py │ │ ├── 0032_auto__del_field_instance_is_arbiter.py │ │ ├── 0033_auto__add_field_replicationtopology_details.py │ │ ├── 0034_auto__add_field_databaseinfra_name_prefix__add_field_databaseinfra_nam.py │ │ ├── 0035_auto__add_field_instance_read_only.py │ │ ├── 0036_auto__add_field_engine_has_users.py │ │ ├── 0037_auto__add_field_replicationtopology_has_horizontal_scalability.py │ │ ├── 0038_auto__add_field_engine_write_node_description__add_field_engine_read_n.py │ │ ├── 0039_auto__add_field_environment_min_of_zones.py │ │ ├── 0040_auto__del_field_plan_is_default.py │ │ ├── 0041_auto__del_field_plan_flipperfox_equivalent_plan.py │ │ ├── 0042_auto__add_script__add_field_replicationtopology_script.py │ │ ├── 0043_auto__add_parameter__add_unique_parameter_name_engine_type.py │ │ ├── 0044_auto__add_databaseinfraparameter__add_unique_databaseinfraparameter_da.py │ │ ├── 0045_auto__add_field_databaseinfraparameter_status.py │ │ ├── 0045_auto__del_field_diskoffering_available_size_kb.py │ │ ├── 0046_auto__add_field_databaseinfraparameter_status.py │ │ ├── 0047_auto__del_field_databaseinfraparameter_status__add_field_databaseinfra.py │ │ ├── 0048_auto__del_field_parameter_class_path__add_field_parameter_custom_metho.py │ │ ├── 0049_auto__add_field_environment_migrate_environment.py │ │ ├── 0050_auto__add_field_plan_migrate_plan.py │ │ ├── 0051_auto__add_topologyparametercustomvalue__add_unique_topologyparametercu.py │ │ ├── 0052_auto__add_field_replicationtopology_can_resize_vm.py │ │ ├── 0053_auto__add_field_replicationtopology_can_clone_db__add_field_replicatio.py │ │ ├── 0054_auto__add_field_replicationtopology_can_reinstall_vm.py │ │ ├── 0055_auto__add_field_instance_shard.py │ │ ├── 0056_auto__add_field_parameter_description__add_field_parameter_allowed_val.py │ │ ├── 0057_auto__add_field_instance_used_size_in_bytes__add_field_instance_total_.py │ │ ├── 0058_auto__add_field_host_offering.py │ │ ├── 0059_auto__add_field_host_user__add_field_host_password.py │ │ ├── 0060_auto__add_field_host_identifier.py │ │ ├── 0061_auto__add_offering__chg_field_host_offering__add_field_plan_stronger_o.py │ │ ├── 0062_auto__del_field_offering_environment.py │ │ ├── 0063_auto__add_volume.py │ │ ├── 0064_auto__add_field_databaseinfra_ssl_configured.py │ │ ├── 0065_auto__add_field_replicationtopology_can_setup_ssl.py │ │ ├── 0066_auto__add_field_script_metric_collector.py │ │ ├── 0067_fix_sync_migrate_0067.py │ │ ├── 0068_update_physical_script.py │ │ ├── 0069_auto__add_environmentgroup.py │ │ ├── 0070_new_database_parameters.py │ │ ├── 0071_auto__add_vip.py │ │ ├── 0072_mysql57_paremeters.py │ │ ├── 0073_auto__add_cloud__add_field_environment_cloud.py │ │ ├── 0074_add_new_parameter.py │ │ ├── 0074_auto__add_field_vip_original_vip.py │ │ ├── 0075_auto__add_field_databaseinfra_backup_hour.py │ │ ├── 0076_auto__add_enginepatch__add_field_databaseinfra_engine_patch__add_field.py │ │ ├── 0077_upgrade_minor_release_script.py │ │ ├── 0078_auto__add_field_engine_is_active.py │ │ ├── 0079_auto__chg_field_enginepatch_patch_version__chg_field_engine_major_vers.py │ │ ├── 0080_auto__chg_field_enginepatch_patch_version__chg_field_engine_major_vers.py │ │ ├── 0081_auto__chg_field_enginepatch_patch_version__chg_field_engine_major_vers.py │ │ ├── 0082_auto__add_field_host_root_size_gb.py │ │ ├── 0083_auto__add_field_enginepatch_required_disk_size_gb.py │ │ ├── 0084_auto__add_field_replicationtopology_can_recreate_slave.py │ │ ├── 0085_auto__add_field_databaseinfra_ssl_expire_at.py │ │ ├── 0086_auto__add_field_databaseinfra_maintenance_window.py │ │ ├── 0087_auto__add_field_databaseinfra_maintenance_day.py │ │ ├── 0088_auto__del_field_databaseinfra_ssl_expire_at__add_field_host_ssl_expire.py │ │ ├── 0089_add_sql_mode_parameter.py │ │ ├── 0090_auto__add_field_plan_migrate_engine_equivalent_plan.py │ │ ├── 0091_auto__add_field_enginepatch_migrate_engine_equivalent_patch.py │ │ ├── 0092_auto__del_field_enginepatch_migrate_engine_equivalent_patch.py │ │ ├── 0093_remove_audit_log_file_parameter.py │ │ ├── 0094_add_collation_server_mysql_parameter.py │ │ ├── 0095_auto__add_field_plan_persistense_equivalent_plan.py │ │ ├── 0096_auto__add_field_databaseinfra_ssl_mode.py │ │ ├── 0097_auto__add_field_script_configure_log.py │ │ ├── 0098_auto__chg_field_volume_host.py │ │ ├── 0099_auto__add_pool.py │ │ ├── 0099_auto__del_field_pool_secret__del_field_pool_key__del_field_pool_config.py │ │ ├── 0100_auto__del_field_pool_endpoint__add_field_pool_rancher_endpoint__add_fi.py │ │ ├── 0101_auto__del_field_pool_token__add_field_pool_cluster_name__add_field_poo.py │ │ ├── 0102_auto__add_unique_pool_name.py │ │ ├── 0103_auto__add_field_environment_stage__add_field_environment_provisioner.py │ │ ├── 0104_slave_net_timeout_parameter.py │ │ ├── 0105_auto__add_field_host_version.py │ │ ├── 0106_auto__chg_field_offering_cpus.py │ │ ├── 0107_auto__add_field_pool_project_id.py │ │ ├── 0108_auto__add_field_databaseinfra_pool.py │ │ ├── 0109_auto__add_field_pool_domain.py │ │ ├── 0110_auto__add_field_pool_vpc__add_field_pool_storageclass.py │ │ ├── 0111_add_redis_save_parameter.py │ │ ├── 0112_auto__add_ip.py │ │ ├── 0113_auto__add_field_enginepatch_patch_path_ol7.py │ │ ├── 0114_auto__add_field_host_private_key.py │ │ ├── 0115_auto__add_vipinstancegroup__add_unique_vipinstancegroup_vip_name.py │ │ ├── 0116_auto__add_field_databaseinfra_service_account.py │ │ ├── 0117_auto__add_field_environment_location_description__add_field_environmen.py │ │ ├── 0118_auto__add_corereplicationtopology.py │ │ ├── 0119_auto__add_field_databaseinfra_migration_stage.py │ │ ├── 0120_auto__add_field_vip_vip_ip.py │ │ ├── 0121_update_physical_vip_id.py │ │ ├── 0122_auto.py │ │ ├── 0123_update_diskoffering_environments.py │ │ ├── 0124_auto__add_diskofferingtype__add_field_volume_disk_offering_type__add_f.py │ │ ├── 0125_initial_insert_disk_offering_type.py │ │ ├── 0126_auto__add_field_diskofferingtype_identifier__add_field_diskofferingtyp.py │ │ ├── 0127_add_identifier_disk_offering_type.py │ │ ├── 0128_auto__chg_field_diskofferingtype_identifier__chg_field_plan_disk_offer.py │ │ ├── 0129_auto__add_field_environment_hide_migration.py │ │ ├── 0130_add_cluster_node_timeout_parameter.py │ │ ├── 0131_auto__add_field_instance_temporary.py │ │ ├── __init__.py │ │ ├── migration_0014_up.sql │ │ ├── migration_0018_up.sql │ │ ├── migration_0070_up.sql │ │ ├── migration_0072_up.sql │ │ ├── migration_0074_up.sql │ │ ├── migration_0077_down.sql │ │ ├── migration_0077_up.sql │ │ ├── migration_0089_up.sql │ │ ├── migration_0093_up.sql │ │ ├── migration_0094_down.sql │ │ ├── migration_0094_up.sql │ │ ├── migration_0104_down.sql │ │ ├── migration_0104_up.sql │ │ ├── migration_0111_down.sql │ │ ├── migration_0111_up.sql │ │ ├── migration_0121_down.sql │ │ ├── migration_0121_up.sql │ │ ├── migration_0123_down.sql │ │ ├── migration_0123_up.sql │ │ ├── migration_0125_down.sql │ │ ├── migration_0125_up.sql │ │ ├── migration_0127_up.sql │ │ ├── migration_0130_down.sql │ │ └── migration_0130_up.sql │ ├── models.py │ ├── mommy_recipes.py │ ├── scripts │ │ ├── metric_collector_configuration.sh │ │ ├── mongodb_24_configuration.sh │ │ ├── mongodb_30_configuration.sh │ │ ├── mongodb_34_configuration.sh │ │ ├── mongodb_40_configuration.sh │ │ ├── mongodb_42_configuration.sh │ │ ├── mongodb_44_configuration.sh │ │ ├── mongodb_initialization.sh │ │ ├── mongodb_start_database.sh │ │ ├── mongodb_start_replication.sh │ │ ├── mysql_foxha_57_configuration.sh │ │ ├── mysql_foxha_57_start_replication.sh │ │ ├── mysql_foxha_configuration.sh │ │ ├── mysql_foxha_start_replication.sh │ │ ├── mysql_initialization.sh │ │ ├── mysql_single_5624_configuration.sh │ │ ├── mysql_single_57_configuration.sh │ │ ├── mysql_start_database.sh │ │ ├── redis_28_configuration.sh │ │ ├── redis_32_configuration.sh │ │ ├── redis_50_configuration.sh │ │ ├── redis_62_configuration.sh │ │ ├── redis_initialization.sh │ │ ├── redis_start_database.sh │ │ ├── redis_start_replication.sh │ │ └── rsyslog_config.sh │ ├── serializers.py │ ├── service │ │ ├── __init__.py │ │ ├── databaseinfra.py │ │ ├── diskofferingtype.py │ │ ├── engine.py │ │ ├── environment.py │ │ ├── host.py │ │ ├── instance.py │ │ ├── offering.py │ │ ├── parameter.py │ │ ├── plan.py │ │ └── prometheus_exporter.py │ ├── ssh.py │ ├── static │ │ ├── js │ │ │ ├── databaseinfra.js │ │ │ ├── databaseinfra_admin.js │ │ │ └── plan_admin.js │ │ └── physical │ │ │ └── css │ │ │ └── plans_table_alt.css │ ├── templates │ │ ├── admin │ │ │ └── physical │ │ │ │ ├── databaseinfra │ │ │ │ ├── add_form.html │ │ │ │ └── change_form.html │ │ │ │ ├── plan │ │ │ │ ├── add_form.html │ │ │ │ └── change_form.html │ │ │ │ ├── replicationtopology │ │ │ │ └── change_form.html │ │ │ │ └── shared │ │ │ │ ├── inline_form.html │ │ │ │ └── tabular.html │ │ ├── physical │ │ │ └── scripts │ │ │ │ └── database_config_files │ │ │ │ └── mongodb_40.conf │ │ └── plans │ │ │ ├── plans_cells.html │ │ │ └── plans_details.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── filter_plans.py │ │ └── infra_capacity.py │ ├── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ ├── test_admin_databaseinfra.py │ │ ├── test_cloud.py │ │ ├── test_commands.py │ │ ├── test_databaseinfra.py │ │ ├── test_disk_offering.py │ │ ├── test_engine.py │ │ ├── test_engine_type.py │ │ ├── test_environment.py │ │ ├── test_errors.py │ │ ├── test_form_databaseinfra.py │ │ ├── test_form_engine_patch.py │ │ ├── test_host.py │ │ ├── test_host_ssh.py │ │ ├── test_instance.py │ │ ├── test_plan.py │ │ └── test_plan_replication_topologies.py │ ├── urls.py │ └── views.py ├── system │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ └── configuration.py │ ├── fixtures │ │ └── basic_configs.yaml │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_field_configuration_description.py │ │ ├── 0003_auto__add_celeryhealthcheck.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templatetags │ │ ├── __init__.py │ │ └── system_config.py │ ├── tests │ │ ├── __init__.py │ │ ├── factory.py │ │ └── test_configuration.py │ ├── urls.py │ └── views.py ├── tsuru │ ├── README.md │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__del_bind.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_check_database_status.py │ │ ├── test_list_plans.py │ │ ├── test_service_add.py │ │ ├── test_service_app_bind_delete.py │ │ ├── test_service_app_bind_post.py │ │ └── test_service_info.py │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── getServiceInfo.py │ │ ├── getServiceStatus.py │ │ ├── listPlans.py │ │ ├── serviceAdd.py │ │ ├── serviceAppBind.py │ │ ├── serviceRemove.py │ │ └── serviceUnitBind.py ├── util │ ├── __init__.py │ ├── aclapi.py │ ├── decorators.py │ ├── email_notifications.py │ ├── html.py │ ├── migrate_networkapi_vip.py │ ├── models.py │ ├── providers.py │ ├── region_migration.py │ ├── simple_health_check.py │ ├── task_register.py │ ├── teams.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_aclapi.py │ │ └── test_email_notification │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── test_disk_resize.py │ ├── update_gcp_plans_to_ssd.py │ └── update_offering_on_hosts.py └── workflow │ ├── __init__.py │ ├── exceptions │ ├── __init__.py │ ├── error_codes.py │ └── tests │ │ ├── __init__.py │ │ └── test_error_codes.py │ ├── settings.py │ ├── steps │ ├── __init__.py │ ├── mongodb │ │ ├── __init__.py │ │ ├── database.py │ │ ├── resize │ │ │ └── __init__.py │ │ ├── upgrade │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ └── vm.py │ │ └── util │ │ │ └── __init__.py │ ├── mysql │ │ ├── __init__.py │ │ ├── resize │ │ │ └── __init__.py │ │ └── util │ │ │ └── __init__.py │ ├── redis │ │ ├── __init__.py │ │ ├── clone │ │ │ ├── __init__.py │ │ │ └── clone_database.py │ │ ├── cluster.py │ │ ├── horizontal_elasticity │ │ │ ├── __init__.py │ │ │ └── database.py │ │ ├── resize │ │ │ └── __init__.py │ │ ├── upgrade │ │ │ ├── __init__.py │ │ │ └── sentinel.py │ │ └── util │ │ │ └── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_database_steps.py │ │ ├── test_dns_step.py │ │ ├── test_foreman_step.py │ │ └── test_host_provider_steps.py │ └── util │ │ ├── __init__.py │ │ ├── acl.py │ │ ├── agents.py │ │ ├── base.py │ │ ├── clone │ │ ├── __init__.py │ │ └── clone_database.py │ │ ├── database.py │ │ ├── database_upgrade_patch.py │ │ ├── db_monitor.py │ │ ├── disk.py │ │ ├── dns.py │ │ ├── foreman.py │ │ ├── fox.py │ │ ├── host_provider.py │ │ ├── infra.py │ │ ├── k8s.py │ │ ├── metric_collector.py │ │ ├── mysql.py │ │ ├── plan.py │ │ ├── puppet.py │ │ ├── restore_snapshot │ │ └── __init__.py │ │ ├── sentinel.py │ │ ├── ssl.py │ │ ├── vip_provider.py │ │ ├── vm.py │ │ ├── volume_provider.py │ │ └── zabbix.py │ ├── tests │ ├── __init__.py │ ├── test_host_provider │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_create_virtual_machine.py │ │ ├── test_destroy_virtual_machine.py │ │ └── test_provider.py │ ├── test_vip_provider │ │ ├── __init__.py │ │ └── test_provider.py │ └── test_volume_provider_steps │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_take_snapshot_from_master.py │ │ └── test_take_snapshot_migrate.py │ └── workflow.py ├── dev ├── Dockerfile ├── add_debug_lib.sh ├── check_debug_lib.sh ├── debug_lib │ └── .gitkeep ├── docker-compose.yml ├── run.sh ├── run_celery.sh └── setup_db.sh ├── doc ├── API.md ├── Home.md ├── changelog.md ├── definitions.md ├── dockerconfs.md ├── drivers.md ├── img │ ├── account_app.png │ ├── audits_app.png │ ├── db_details.png │ ├── db_list.png │ ├── dbaas_model.png │ ├── logical_app.png │ ├── manage_dbs.png │ ├── manage_one_db.png │ ├── physical_app.png │ └── system_app.png ├── quickstart.md └── troubleshooting.md ├── docker-compose.yml ├── gunicorn.sh ├── package.json ├── requirements.txt ├── requirements_test.txt ├── run_dev.sh ├── scripts └── deploy_dev.sh ├── spec └── javascripts │ └── notification.spec.js └── tests.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pep8speaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/.pep8speaks.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /Dockerfile.gcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/Dockerfile.gcp -------------------------------------------------------------------------------- /Dockerfile_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/Dockerfile_old -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/README.md -------------------------------------------------------------------------------- /add_user_admin_on_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/add_user_admin_on_mongo.py -------------------------------------------------------------------------------- /dbaas/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/.coveragerc -------------------------------------------------------------------------------- /dbaas/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/account/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/account/admin/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/admin/organization.py -------------------------------------------------------------------------------- /dbaas/account/admin/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/admin/role.py -------------------------------------------------------------------------------- /dbaas/account/admin/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/admin/team.py -------------------------------------------------------------------------------- /dbaas/account/admin/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/admin/user.py -------------------------------------------------------------------------------- /dbaas/account/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/api.py -------------------------------------------------------------------------------- /dbaas/account/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/backends.py -------------------------------------------------------------------------------- /dbaas/account/fixtures/basic_roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/fixtures/basic_roles.yaml -------------------------------------------------------------------------------- /dbaas/account/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/account/forms/change_password_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/forms/change_password_form.py -------------------------------------------------------------------------------- /dbaas/account/forms/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/forms/role.py -------------------------------------------------------------------------------- /dbaas/account/forms/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/forms/user.py -------------------------------------------------------------------------------- /dbaas/account/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/helper.py -------------------------------------------------------------------------------- /dbaas/account/migrations/0001_create_user_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/migrations/0001_create_user_roles.py -------------------------------------------------------------------------------- /dbaas/account/migrations/0002_auto__add_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/migrations/0002_auto__add_team.py -------------------------------------------------------------------------------- /dbaas/account/migrations/0003_auto__add_field_team_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/migrations/0003_auto__add_field_team_email.py -------------------------------------------------------------------------------- /dbaas/account/migrations/0005_split_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/migrations/0005_split_name.py -------------------------------------------------------------------------------- /dbaas/account/migrations/0009_auto__add_roleenvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/migrations/0009_auto__add_roleenvironment.py -------------------------------------------------------------------------------- /dbaas/account/migrations/0010_auto__add_field_team_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/migrations/0010_auto__add_field_team_token.py -------------------------------------------------------------------------------- /dbaas/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/models.py -------------------------------------------------------------------------------- /dbaas/account/mommy_recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/mommy_recipes.py -------------------------------------------------------------------------------- /dbaas/account/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/serializers.py -------------------------------------------------------------------------------- /dbaas/account/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/account/service/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/service/team.py -------------------------------------------------------------------------------- /dbaas/account/service/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/service/user.py -------------------------------------------------------------------------------- /dbaas/account/static/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/static/assets/img/loading.gif -------------------------------------------------------------------------------- /dbaas/account/static/assets/js/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/static/assets/js/team.js -------------------------------------------------------------------------------- /dbaas/account/templates/account/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/account/profile.html -------------------------------------------------------------------------------- /dbaas/account/templates/admin/account/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/admin/account/change_list.html -------------------------------------------------------------------------------- /dbaas/account/templates/ldap/base_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/ldap/base_login.html -------------------------------------------------------------------------------- /dbaas/account/templates/ldap/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/ldap/password_reset.html -------------------------------------------------------------------------------- /dbaas/account/templates/ldap/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/ldap/password_reset_complete.html -------------------------------------------------------------------------------- /dbaas/account/templates/ldap/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/ldap/password_reset_confirm.html -------------------------------------------------------------------------------- /dbaas/account/templates/ldap/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/ldap/password_reset_done.html -------------------------------------------------------------------------------- /dbaas/account/templates/ldap/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templates/ldap/password_reset_email.html -------------------------------------------------------------------------------- /dbaas/account/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/account/templatetags/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/templatetags/team.py -------------------------------------------------------------------------------- /dbaas/account/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/account/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/tests/factory.py -------------------------------------------------------------------------------- /dbaas/account/tests/test_admin_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/tests/test_admin_account.py -------------------------------------------------------------------------------- /dbaas/account/tests/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/tests/test_team.py -------------------------------------------------------------------------------- /dbaas/account/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/tests/test_user.py -------------------------------------------------------------------------------- /dbaas/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/urls.py -------------------------------------------------------------------------------- /dbaas/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/account/views.py -------------------------------------------------------------------------------- /dbaas/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/models.py -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/admin-dbaas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/admin-dbaas.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/admin_fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/admin_fonts.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/changelists-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/changelists-custom.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/dark-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/dark-mode.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/datatables.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/datatables.min.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/css/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/css/notification.css -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/chart.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/confirmation_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/confirmation_modal.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/dark_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/dark_mode.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/datatables.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/datatables.min.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/jquery-ui.min.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/mustache2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/mustache2.js -------------------------------------------------------------------------------- /dbaas/admin/static/admin/js/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/admin/js/notification.js -------------------------------------------------------------------------------- /dbaas/admin/static/db-dev-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/db-dev-logo.png -------------------------------------------------------------------------------- /dbaas/admin/static/dbaas_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/dbaas_logo.png -------------------------------------------------------------------------------- /dbaas/admin/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/static/favicon.ico -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/base.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/base_site.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/change_form.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/change_list.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/change_list_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/change_list_results.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/confirmation_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/confirmation_modal.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/confirmation_modal_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/confirmation_modal_input.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/edit_inline/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/edit_inline/stacked.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/edit_inline/tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/edit_inline/tabular.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/includes/field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/includes/field.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/includes/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/includes/fieldset.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/index.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/login.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/schedule_maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/schedule_maintenance.html -------------------------------------------------------------------------------- /dbaas/admin/templates/admin/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/admin/submit_line.html -------------------------------------------------------------------------------- /dbaas/admin/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/registration/logged_out.html -------------------------------------------------------------------------------- /dbaas/admin/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /dbaas/admin/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /dbaas/admin/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /dbaas/admin/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /dbaas/admin/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /dbaas/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/admin/templatetags/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templatetags/audit.py -------------------------------------------------------------------------------- /dbaas/admin/templatetags/config_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/admin/templatetags/config_tags.py -------------------------------------------------------------------------------- /dbaas/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/api/add_readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/add_readonly.py -------------------------------------------------------------------------------- /dbaas/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/base.py -------------------------------------------------------------------------------- /dbaas/api/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/credential.py -------------------------------------------------------------------------------- /dbaas/api/databaase_migrate_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/databaase_migrate_engine.py -------------------------------------------------------------------------------- /dbaas/api/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database.py -------------------------------------------------------------------------------- /dbaas/api/database_change_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_change_parameter.py -------------------------------------------------------------------------------- /dbaas/api/database_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_clone.py -------------------------------------------------------------------------------- /dbaas/api/database_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_create.py -------------------------------------------------------------------------------- /dbaas/api/database_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_destroy.py -------------------------------------------------------------------------------- /dbaas/api/database_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_history.py -------------------------------------------------------------------------------- /dbaas/api/database_reinstall_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_reinstall_vm.py -------------------------------------------------------------------------------- /dbaas/api/database_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_resize.py -------------------------------------------------------------------------------- /dbaas/api/database_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_restore.py -------------------------------------------------------------------------------- /dbaas/api/database_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_upgrade.py -------------------------------------------------------------------------------- /dbaas/api/database_upgrade_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/database_upgrade_patch.py -------------------------------------------------------------------------------- /dbaas/api/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/engine.py -------------------------------------------------------------------------------- /dbaas/api/engine_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/engine_type.py -------------------------------------------------------------------------------- /dbaas/api/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/environment.py -------------------------------------------------------------------------------- /dbaas/api/extra_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/extra_dns.py -------------------------------------------------------------------------------- /dbaas/api/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/host.py -------------------------------------------------------------------------------- /dbaas/api/host_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/host_migrate.py -------------------------------------------------------------------------------- /dbaas/api/integration_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/integration_credential.py -------------------------------------------------------------------------------- /dbaas/api/integration_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/integration_type.py -------------------------------------------------------------------------------- /dbaas/api/list_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/list_database.py -------------------------------------------------------------------------------- /dbaas/api/list_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/list_team.py -------------------------------------------------------------------------------- /dbaas/api/maintenance_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/maintenance_base.py -------------------------------------------------------------------------------- /dbaas/api/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/plan.py -------------------------------------------------------------------------------- /dbaas/api/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/pool.py -------------------------------------------------------------------------------- /dbaas/api/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/project.py -------------------------------------------------------------------------------- /dbaas/api/recreate_slave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/recreate_slave.py -------------------------------------------------------------------------------- /dbaas/api/remove_readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/remove_readonly.py -------------------------------------------------------------------------------- /dbaas/api/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/renderers.py -------------------------------------------------------------------------------- /dbaas/api/restart_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/restart_database.py -------------------------------------------------------------------------------- /dbaas/api/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/snapshot.py -------------------------------------------------------------------------------- /dbaas/api/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/task.py -------------------------------------------------------------------------------- /dbaas/api/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/team.py -------------------------------------------------------------------------------- /dbaas/api/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/tests/__init__.py -------------------------------------------------------------------------------- /dbaas/api/tests/test_credentialapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/tests/test_credentialapi.py -------------------------------------------------------------------------------- /dbaas/api/tests/test_databaseapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/tests/test_databaseapi.py -------------------------------------------------------------------------------- /dbaas/api/tests/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/tests/test_host.py -------------------------------------------------------------------------------- /dbaas/api/tests/test_projectapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/tests/test_projectapi.py -------------------------------------------------------------------------------- /dbaas/api/tests/test_taskhistory_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/tests/test_taskhistory_serializer.py -------------------------------------------------------------------------------- /dbaas/api/update_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/update_ssl.py -------------------------------------------------------------------------------- /dbaas/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/urls.py -------------------------------------------------------------------------------- /dbaas/api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/user.py -------------------------------------------------------------------------------- /dbaas/api/zabbix_disk_size_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/api/zabbix_disk_size_alert.py -------------------------------------------------------------------------------- /dbaas/backup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/backup/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/backup/admin/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/admin/snapshot.py -------------------------------------------------------------------------------- /dbaas/backup/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/backup/admin/views/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/admin/views/main.py -------------------------------------------------------------------------------- /dbaas/backup/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/backup/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/backup/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/models.py -------------------------------------------------------------------------------- /dbaas/backup/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/tasks.py -------------------------------------------------------------------------------- /dbaas/backup/templates/admin/backup/snapshot/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/templates/admin/backup/snapshot/change_form.html -------------------------------------------------------------------------------- /dbaas/backup/templates/admin/backup/snapshot/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/templates/admin/backup/snapshot/change_list.html -------------------------------------------------------------------------------- /dbaas/backup/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/tests.py -------------------------------------------------------------------------------- /dbaas/backup/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/backup/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/tests/factory.py -------------------------------------------------------------------------------- /dbaas/backup/tests/test_make_databases_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/tests/test_make_databases_backup.py -------------------------------------------------------------------------------- /dbaas/backup/tests/test_make_instance_snapshot_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/tests/test_make_instance_snapshot_backup.py -------------------------------------------------------------------------------- /dbaas/backup/tests/test_purge_unused_exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/backup/tests/test_purge_unused_exports.py -------------------------------------------------------------------------------- /dbaas/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/models.py -------------------------------------------------------------------------------- /dbaas/dashboard/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/search_indexes.py -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/css/main.css -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/css/theme.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/MongoDB_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/MongoDB_logo.png -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/asc.gif -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/bg.gif -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/desc.gif -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/logo.png -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/mongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/mongo.png -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/mysql.png -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/img/mysql_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/img/mysql_logo.png -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/js/bignumber.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/js/bignumber.min.js -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/js/jquery.min.js -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/js/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/js/jquery.tablesorter.js -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/js/main.min.js -------------------------------------------------------------------------------- /dbaas/dashboard/static/assets/js/modernizr-build.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/static/assets/js/modernizr-build.min.js -------------------------------------------------------------------------------- /dbaas/dashboard/templates/dashboard/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/templates/dashboard/base.html -------------------------------------------------------------------------------- /dbaas/dashboard/templates/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/templates/dashboard/dashboard.html -------------------------------------------------------------------------------- /dbaas/dashboard/templates/dashboard/databaseinfra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/templates/dashboard/databaseinfra.html -------------------------------------------------------------------------------- /dbaas/dashboard/templates/dashboard/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/templates/dashboard/menu.html -------------------------------------------------------------------------------- /dbaas/dashboard/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/templates/search/search.html -------------------------------------------------------------------------------- /dbaas/dashboard/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dashboard/templatetags/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/templatetags/menu.py -------------------------------------------------------------------------------- /dbaas/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/urls.py -------------------------------------------------------------------------------- /dbaas/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dashboard/views.py -------------------------------------------------------------------------------- /dbaas/dbaas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas/admin/flat_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/admin/flat_page.py -------------------------------------------------------------------------------- /dbaas/dbaas/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/celery.py -------------------------------------------------------------------------------- /dbaas/dbaas/celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/celeryconfig.py -------------------------------------------------------------------------------- /dbaas/dbaas/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/constants.py -------------------------------------------------------------------------------- /dbaas/dbaas/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/features.py -------------------------------------------------------------------------------- /dbaas/dbaas/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/helpers.py -------------------------------------------------------------------------------- /dbaas/dbaas/keys/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/keys/1 -------------------------------------------------------------------------------- /dbaas/dbaas/keys/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/keys/meta -------------------------------------------------------------------------------- /dbaas/dbaas/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas/management/commands/sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/management/commands/sample_data.py -------------------------------------------------------------------------------- /dbaas/dbaas/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/middleware.py -------------------------------------------------------------------------------- /dbaas/dbaas/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/settings.py -------------------------------------------------------------------------------- /dbaas/dbaas/settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/settings_test.py -------------------------------------------------------------------------------- /dbaas/dbaas/static/admin/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/static/admin/login.css -------------------------------------------------------------------------------- /dbaas/dbaas/static/admin/logo-140x140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/static/admin/logo-140x140.png -------------------------------------------------------------------------------- /dbaas/dbaas/static/admin/progress_bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/static/admin/progress_bar.css -------------------------------------------------------------------------------- /dbaas/dbaas/templates/adminplus/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/adminplus/base.html -------------------------------------------------------------------------------- /dbaas/dbaas/templates/adminplus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/adminplus/index.html -------------------------------------------------------------------------------- /dbaas/dbaas/templates/deploy/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/deploy/deploy.html -------------------------------------------------------------------------------- /dbaas/dbaas/templates/email_extras/new_user_notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/email_extras/new_user_notification.html -------------------------------------------------------------------------------- /dbaas/dbaas/templates/email_extras/new_user_notification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/email_extras/new_user_notification.txt -------------------------------------------------------------------------------- /dbaas/dbaas/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/flatpages/default.html -------------------------------------------------------------------------------- /dbaas/dbaas/templates/flatpages/status.html: -------------------------------------------------------------------------------- 1 | {{ flatpage.content|removetags:"p"|safe }} -------------------------------------------------------------------------------- /dbaas/dbaas/templates/progress_bar/progress_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templates/progress_bar/progress_bar.html -------------------------------------------------------------------------------- /dbaas/dbaas/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas/templatetags/dbaas_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templatetags/dbaas_tags.py -------------------------------------------------------------------------------- /dbaas/dbaas/templatetags/settings_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/templatetags/settings_tags.py -------------------------------------------------------------------------------- /dbaas/dbaas/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/tests/helpers.py -------------------------------------------------------------------------------- /dbaas/dbaas/tests/test_send_mail_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/tests/test_send_mail_helper.py -------------------------------------------------------------------------------- /dbaas/dbaas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/urls.py -------------------------------------------------------------------------------- /dbaas/dbaas/version.py: -------------------------------------------------------------------------------- 1 | RELEASE = "0.0.11" 2 | -------------------------------------------------------------------------------- /dbaas/dbaas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/views.py -------------------------------------------------------------------------------- /dbaas/dbaas/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas/wsgi.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/actions/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/actions/minimum_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/actions/minimum_value.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/admin/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/admin/analyze.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/admin/execution_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/admin/execution_plan.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | from analyze import ServiceNotAvailable 2 | -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/exceptions/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/exceptions/analyze.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/forms/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/forms/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/forms/analyze.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/forms/execution_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/forms/execution_plan.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/integration/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/integration/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/integration/analyze.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/models.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/service/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/service/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/service/analyze.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/service/execution_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/service/execution_plan.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/tasks/__init__.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/tasks/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/tasks/analyze.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/tasks/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/tasks/send_email.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/templates/databases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/templates/databases/index.html -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/templates/reports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/templates/reports/index.html -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/urls.py -------------------------------------------------------------------------------- /dbaas/dbaas_services/analyzing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/dbaas_services/analyzing/views.py -------------------------------------------------------------------------------- /dbaas/djcelery_dbaas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/djcelery_dbaas/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/djcelery_dbaas/admin.py -------------------------------------------------------------------------------- /dbaas/drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/__init__.py -------------------------------------------------------------------------------- /dbaas/drivers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/base.py -------------------------------------------------------------------------------- /dbaas/drivers/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/errors.py -------------------------------------------------------------------------------- /dbaas/drivers/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/factory.py -------------------------------------------------------------------------------- /dbaas/drivers/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/fake.py -------------------------------------------------------------------------------- /dbaas/drivers/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/mongodb.py -------------------------------------------------------------------------------- /dbaas/drivers/mongodb_k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/mongodb_k8s.py -------------------------------------------------------------------------------- /dbaas/drivers/mysqldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/mysqldb.py -------------------------------------------------------------------------------- /dbaas/drivers/mysqlpercona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/mysqlpercona.py -------------------------------------------------------------------------------- /dbaas/drivers/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/redis.py -------------------------------------------------------------------------------- /dbaas/drivers/replication_topologies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/drivers/replication_topologies/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/replication_topologies/base.py -------------------------------------------------------------------------------- /dbaas/drivers/replication_topologies/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/replication_topologies/mongodb.py -------------------------------------------------------------------------------- /dbaas/drivers/replication_topologies/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/replication_topologies/mysql.py -------------------------------------------------------------------------------- /dbaas/drivers/replication_topologies/mysql_percona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/replication_topologies/mysql_percona.py -------------------------------------------------------------------------------- /dbaas/drivers/replication_topologies/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/replication_topologies/redis.py -------------------------------------------------------------------------------- /dbaas/drivers/scripts/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/scripts/clone.sh -------------------------------------------------------------------------------- /dbaas/drivers/scripts/dummy_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/scripts/dummy_clone.sh -------------------------------------------------------------------------------- /dbaas/drivers/scripts/mongodb_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/scripts/mongodb_clone.sh -------------------------------------------------------------------------------- /dbaas/drivers/scripts/mysql_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/scripts/mysql_clone.sh -------------------------------------------------------------------------------- /dbaas/drivers/scripts/redis_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/scripts/redis_clone.py -------------------------------------------------------------------------------- /dbaas/drivers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/drivers/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/tests/base.py -------------------------------------------------------------------------------- /dbaas/drivers/tests/test_driver_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/tests/test_driver_mysql.py -------------------------------------------------------------------------------- /dbaas/drivers/tests/test_driver_pymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/tests/test_driver_pymongo.py -------------------------------------------------------------------------------- /dbaas/drivers/tests/test_driver_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/drivers/tests/test_driver_redis.py -------------------------------------------------------------------------------- /dbaas/extra_dns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/extra_dns/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/extra_dns/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/extra_dns/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/extra_dns/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/extra_dns/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/extra_dns/models.py -------------------------------------------------------------------------------- /dbaas/extra_dns/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/extra_dns/service/extra_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/extra_dns/service/extra_dns.py -------------------------------------------------------------------------------- /dbaas/extra_dns/tasks.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/extra_dns/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/extra_dns/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/extra_dns/urls.py -------------------------------------------------------------------------------- /dbaas/extra_dns/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/extra_dns/views.py -------------------------------------------------------------------------------- /dbaas/logical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/logical/admin/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/admin/database.py -------------------------------------------------------------------------------- /dbaas/logical/admin/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/admin/project.py -------------------------------------------------------------------------------- /dbaas/logical/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/errors.py -------------------------------------------------------------------------------- /dbaas/logical/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/exceptions.py -------------------------------------------------------------------------------- /dbaas/logical/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/forms/__init__.py -------------------------------------------------------------------------------- /dbaas/logical/forms/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/forms/credential.py -------------------------------------------------------------------------------- /dbaas/logical/forms/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/forms/database.py -------------------------------------------------------------------------------- /dbaas/logical/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/forms/fields.py -------------------------------------------------------------------------------- /dbaas/logical/forms/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/forms/project.py -------------------------------------------------------------------------------- /dbaas/logical/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/management/commands/remove_quarantineDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/management/commands/remove_quarantineDB.py -------------------------------------------------------------------------------- /dbaas/logical/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/logical/migrations/0011_project_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/migrations/0011_project_description.py -------------------------------------------------------------------------------- /dbaas/logical/migrations/0026_auto__add_databaselock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/migrations/0026_auto__add_databaselock.py -------------------------------------------------------------------------------- /dbaas/logical/migrations/0029_auto__add_databasehistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/migrations/0029_auto__add_databasehistory.py -------------------------------------------------------------------------------- /dbaas/logical/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/models.py -------------------------------------------------------------------------------- /dbaas/logical/mommy_recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/mommy_recipes.py -------------------------------------------------------------------------------- /dbaas/logical/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/serializers.py -------------------------------------------------------------------------------- /dbaas/logical/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/service/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/service/credential.py -------------------------------------------------------------------------------- /dbaas/logical/service/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/service/database.py -------------------------------------------------------------------------------- /dbaas/logical/service/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/service/project.py -------------------------------------------------------------------------------- /dbaas/logical/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/services.py -------------------------------------------------------------------------------- /dbaas/logical/static/css/database_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/css/database_admin.css -------------------------------------------------------------------------------- /dbaas/logical/static/css/metrics.css: -------------------------------------------------------------------------------- 1 | body { 2 | background:#2a2a2b; 3 | } -------------------------------------------------------------------------------- /dbaas/logical/static/js/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/bootstrap-popover.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/bootstrap-tooltip.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/bootstrap-transition.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/clone.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/credential.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/credential.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/database_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/database_admin.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/extra_dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/extra_dns.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/hosts.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/migrate.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/moment.min.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/mustache.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/parameters_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/parameters_validator.js -------------------------------------------------------------------------------- /dbaas/logical/static/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/static/js/tab.js -------------------------------------------------------------------------------- /dbaas/logical/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tasks.py -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/database/details/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/database/details/base.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/database/details/dns_tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/database/details/dns_tab.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/database/dex_analyze.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/database/dex_analyze.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/change_user_pass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/change_user_pass.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/delete_database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/delete_database.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/delete_snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/delete_snapshot.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/restore_snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/restore_snapshot.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/set_ssl_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/set_ssl_required.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/setup_ssl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/setup_ssl.html -------------------------------------------------------------------------------- /dbaas/logical/templates/logical/modal/vm_offering_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templates/logical/modal/vm_offering_body.html -------------------------------------------------------------------------------- /dbaas/logical/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/templatetags/capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templatetags/capacity.py -------------------------------------------------------------------------------- /dbaas/logical/templatetags/logical_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templatetags/logical_util.py -------------------------------------------------------------------------------- /dbaas/logical/templatetags/schedule_task_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/templatetags/schedule_task_tags.py -------------------------------------------------------------------------------- /dbaas/logical/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/logical/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tests/factory.py -------------------------------------------------------------------------------- /dbaas/logical/tests/test_admin_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tests/test_admin_database.py -------------------------------------------------------------------------------- /dbaas/logical/tests/test_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tests/test_credential.py -------------------------------------------------------------------------------- /dbaas/logical/tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tests/test_database.py -------------------------------------------------------------------------------- /dbaas/logical/tests/test_parameter_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tests/test_parameter_validator.py -------------------------------------------------------------------------------- /dbaas/logical/tests/test_templatetag_capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/tests/test_templatetag_capacity.py -------------------------------------------------------------------------------- /dbaas/logical/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/urls.py -------------------------------------------------------------------------------- /dbaas/logical/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/utils.py -------------------------------------------------------------------------------- /dbaas/logical/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/validators.py -------------------------------------------------------------------------------- /dbaas/logical/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/logical/views.py -------------------------------------------------------------------------------- /dbaas/maintenance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/add_instances_to_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/add_instances_to_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_auto_upgrade_vm_offering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_auto_upgrade_vm_offering.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_change_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_change_parameter.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_change_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_change_persistence.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_clone.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_configure_db_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_configure_db_params.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_configure_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_configure_ssl.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_create.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_destroy.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_maintenance_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_maintenance_task.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_reinstall_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_reinstall_vm.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_resize.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_restore.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_set_ssl_not_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_set_ssl_not_required.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_set_ssl_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_set_ssl_required.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_start_database_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_start_database_vm.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_stop_database_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_stop_database_vm.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_upgrade.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_upgrade_disk_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_upgrade_disk_type.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/database_upgrade_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/database_upgrade_patch.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/host_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/host_maintenance.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/host_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/host_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/maintenance.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/migrate_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/migrate_engine.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/recreate_slave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/recreate_slave.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/remove_instance_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/remove_instance_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/restart_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/restart_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/task_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/task_schedule.py -------------------------------------------------------------------------------- /dbaas/maintenance/admin/update_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/admin/update_ssl.py -------------------------------------------------------------------------------- /dbaas/maintenance/async_jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/async_jobs/__init__.py -------------------------------------------------------------------------------- /dbaas/maintenance/async_jobs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/async_jobs/base.py -------------------------------------------------------------------------------- /dbaas/maintenance/async_jobs/remove_instance_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/async_jobs/remove_instance_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/async_jobs/restart_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/async_jobs/restart_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/forms/__init__.py -------------------------------------------------------------------------------- /dbaas/maintenance/forms/host_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/forms/host_maintenance.py -------------------------------------------------------------------------------- /dbaas/maintenance/forms/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/forms/maintenance.py -------------------------------------------------------------------------------- /dbaas/maintenance/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/managers.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0019_auto__add_databaseresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0019_auto__add_databaseresize.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0021_auto__add_databasecreate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0021_auto__add_databasecreate.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0031_fix_configure_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0031_fix_configure_ssl.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0033_auto__add_hostmigrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0033_auto__add_hostmigrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0038_auto__add_filermigrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0038_auto__add_filermigrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0040_auto__add_recreateslave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0040_auto__add_recreateslave.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0041_auto__add_updatessl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0041_auto__add_updatessl.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0042_auto__add_taskschedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0042_auto__add_taskschedule.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/0048_auto__add_databaseclone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/migrations/0048_auto__add_databaseclone.py -------------------------------------------------------------------------------- /dbaas/maintenance/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/models.py -------------------------------------------------------------------------------- /dbaas/maintenance/registered_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/registered_functions/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/registered_functions/functools.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/compare_resource_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/compare_resource_id.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/filer_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/filer_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/migrate_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/migrate_email.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/restart_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/restart_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/switch_all_masters_in_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/switch_all_masters_in_zone.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/update_config_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/update_config_files.py -------------------------------------------------------------------------------- /dbaas/maintenance/scripts/update_volume_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/scripts/update_volume_path.py -------------------------------------------------------------------------------- /dbaas/maintenance/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/service/host_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/service/host_maintenance.py -------------------------------------------------------------------------------- /dbaas/maintenance/service/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/service/maintenance.py -------------------------------------------------------------------------------- /dbaas/maintenance/static/js/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/static/js/maintenance.js -------------------------------------------------------------------------------- /dbaas/maintenance/task_auto_upgrade_vm_offering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/task_auto_upgrade_vm_offering.py -------------------------------------------------------------------------------- /dbaas/maintenance/task_configure_db_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/task_configure_db_params.py -------------------------------------------------------------------------------- /dbaas/maintenance/task_configure_static_db_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/task_configure_static_db_params.py -------------------------------------------------------------------------------- /dbaas/maintenance/task_start_database_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/task_start_database_vm.py -------------------------------------------------------------------------------- /dbaas/maintenance/task_stop_database_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/task_stop_database_vm.py -------------------------------------------------------------------------------- /dbaas/maintenance/task_upgrade_type_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/task_upgrade_type_disk.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks_create_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks_create_database.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks_database_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks_database_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks_disk_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks_disk_resize.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks_region_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks_region_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/tasks_restore_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tasks_restore_backup.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/factory.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_async_jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_async_jobs/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/test_async_jobs/test_base.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_database_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/test_database_migrate.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_database_resize_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/test_database_resize_admin.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_database_resize_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/test_database_resize_model.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_database_upgrade_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/test_database_upgrade_admin.py -------------------------------------------------------------------------------- /dbaas/maintenance/tests/test_database_upgrade_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/tests/test_database_upgrade_model.py -------------------------------------------------------------------------------- /dbaas/maintenance/validators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/maintenance/validators/__init__.py -------------------------------------------------------------------------------- /dbaas/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/manage.py -------------------------------------------------------------------------------- /dbaas/notification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/notification/admin/task_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/admin/task_history.py -------------------------------------------------------------------------------- /dbaas/notification/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/management/arguments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/management/arguments/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/management/arguments/factory.py -------------------------------------------------------------------------------- /dbaas/notification/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/management/commands/sync_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/management/commands/sync_celery.py -------------------------------------------------------------------------------- /dbaas/notification/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/notification/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/models.py -------------------------------------------------------------------------------- /dbaas/notification/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/scripts/script_mongo_log_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/scripts/script_mongo_log_rotate.py -------------------------------------------------------------------------------- /dbaas/notification/static/css/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/static/css/notification.css -------------------------------------------------------------------------------- /dbaas/notification/static/js/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/static/js/jquery.countdown.js -------------------------------------------------------------------------------- /dbaas/notification/static/js/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/static/js/notification.js -------------------------------------------------------------------------------- /dbaas/notification/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tasks.py -------------------------------------------------------------------------------- /dbaas/notification/tasks_disk_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tasks_disk_resize.py -------------------------------------------------------------------------------- /dbaas/notification/templates/email_extras/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templates/email_extras/bottom.html -------------------------------------------------------------------------------- /dbaas/notification/templates/email_extras/bottom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templates/email_extras/bottom.txt -------------------------------------------------------------------------------- /dbaas/notification/templates/email_extras/task_updated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templates/email_extras/task_updated.html -------------------------------------------------------------------------------- /dbaas/notification/templates/email_extras/task_updated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templates/email_extras/task_updated.txt -------------------------------------------------------------------------------- /dbaas/notification/templates/email_extras/task_warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templates/email_extras/task_warning.html -------------------------------------------------------------------------------- /dbaas/notification/templates/email_extras/task_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templates/email_extras/task_warning.txt -------------------------------------------------------------------------------- /dbaas/notification/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/templatetags/notification_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/templatetags/notification_tags.py -------------------------------------------------------------------------------- /dbaas/notification/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests.py -------------------------------------------------------------------------------- /dbaas/notification/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/factory.py -------------------------------------------------------------------------------- /dbaas/notification/tests/fakes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/notification/tests/fakes/get_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/fakes/get_notifications.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_disk_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_disk_resize.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_listeners.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_notification.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_notification_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_notification_tags.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_periodic_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_periodic_tasks.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_periodic_tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_periodic_tasks/__init__.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_task_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_task_history.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_task_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_task_register.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_task_update_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_task_update_sizes.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_urls.py -------------------------------------------------------------------------------- /dbaas/notification/tests/test_user_tasks_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/tests/test_user_tasks_view.py -------------------------------------------------------------------------------- /dbaas/notification/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/urls.py -------------------------------------------------------------------------------- /dbaas/notification/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/util.py -------------------------------------------------------------------------------- /dbaas/notification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/notification/views.py -------------------------------------------------------------------------------- /dbaas/physical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/physical/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/physical/admin/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/cloud.py -------------------------------------------------------------------------------- /dbaas/physical/admin/core_replication_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/core_replication_topology.py -------------------------------------------------------------------------------- /dbaas/physical/admin/databaseinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/databaseinfra.py -------------------------------------------------------------------------------- /dbaas/physical/admin/disk_offering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/disk_offering.py -------------------------------------------------------------------------------- /dbaas/physical/admin/disk_offering_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/disk_offering_type.py -------------------------------------------------------------------------------- /dbaas/physical/admin/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/engine.py -------------------------------------------------------------------------------- /dbaas/physical/admin/engine_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/engine_type.py -------------------------------------------------------------------------------- /dbaas/physical/admin/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/environment.py -------------------------------------------------------------------------------- /dbaas/physical/admin/environment_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/environment_group.py -------------------------------------------------------------------------------- /dbaas/physical/admin/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/host.py -------------------------------------------------------------------------------- /dbaas/physical/admin/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/ip.py -------------------------------------------------------------------------------- /dbaas/physical/admin/offering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/offering.py -------------------------------------------------------------------------------- /dbaas/physical/admin/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/parameter.py -------------------------------------------------------------------------------- /dbaas/physical/admin/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/plan.py -------------------------------------------------------------------------------- /dbaas/physical/admin/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/pool.py -------------------------------------------------------------------------------- /dbaas/physical/admin/replication_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/replication_topology.py -------------------------------------------------------------------------------- /dbaas/physical/admin/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/script.py -------------------------------------------------------------------------------- /dbaas/physical/admin/vip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/vip.py -------------------------------------------------------------------------------- /dbaas/physical/admin/vip_instance_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/admin/vip_instance_group.py -------------------------------------------------------------------------------- /dbaas/physical/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/api.py -------------------------------------------------------------------------------- /dbaas/physical/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/commands.py -------------------------------------------------------------------------------- /dbaas/physical/configurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/configurations.py -------------------------------------------------------------------------------- /dbaas/physical/database_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/database_scripts.py -------------------------------------------------------------------------------- /dbaas/physical/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/errors.py -------------------------------------------------------------------------------- /dbaas/physical/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/physical/factories/prometheus_exporter_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/factories/prometheus_exporter_factory.py -------------------------------------------------------------------------------- /dbaas/physical/fixtures/initial_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/fixtures/initial_data.yaml -------------------------------------------------------------------------------- /dbaas/physical/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/__init__.py -------------------------------------------------------------------------------- /dbaas/physical/forms/database_infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/database_infra.py -------------------------------------------------------------------------------- /dbaas/physical/forms/disk_offerring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/disk_offerring.py -------------------------------------------------------------------------------- /dbaas/physical/forms/engine_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/engine_patch.py -------------------------------------------------------------------------------- /dbaas/physical/forms/environment_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/environment_group.py -------------------------------------------------------------------------------- /dbaas/physical/forms/instance_formset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/instance_formset.py -------------------------------------------------------------------------------- /dbaas/physical/forms/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/parameter.py -------------------------------------------------------------------------------- /dbaas/physical/forms/plan_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/plan_admin.py -------------------------------------------------------------------------------- /dbaas/physical/forms/replication_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/forms/replication_topology.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0009_auto__add_field_plan_is_ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0009_auto__add_field_plan_is_ha.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0023_auto__add_diskoffering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0023_auto__add_diskoffering.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0063_auto__add_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0063_auto__add_volume.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0067_fix_sync_migrate_0067.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0067_fix_sync_migrate_0067.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0068_update_physical_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0068_update_physical_script.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0070_new_database_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0070_new_database_parameters.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0071_auto__add_vip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0071_auto__add_vip.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0072_mysql57_paremeters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0072_mysql57_paremeters.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0074_add_new_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0074_add_new_parameter.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0089_add_sql_mode_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0089_add_sql_mode_parameter.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0099_auto__add_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0099_auto__add_pool.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0111_add_redis_save_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0111_add_redis_save_parameter.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0112_auto__add_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0112_auto__add_ip.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0121_update_physical_vip_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0121_update_physical_vip_id.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/0122_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/0122_auto.py -------------------------------------------------------------------------------- /dbaas/physical/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0014_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0014_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0018_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0018_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0070_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0070_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0072_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0072_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0074_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0074_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0077_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0077_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0077_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0077_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0089_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0089_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0093_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0093_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0094_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0094_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0094_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0094_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0104_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0104_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0104_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0104_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0111_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0111_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0111_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0111_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0121_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0121_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0121_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0121_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0123_down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM physical_diskoffering_environments; -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0123_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0123_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0125_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0125_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0125_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0125_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0127_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0127_up.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0130_down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0130_down.sql -------------------------------------------------------------------------------- /dbaas/physical/migrations/migration_0130_up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/migrations/migration_0130_up.sql -------------------------------------------------------------------------------- /dbaas/physical/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/models.py -------------------------------------------------------------------------------- /dbaas/physical/mommy_recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/mommy_recipes.py -------------------------------------------------------------------------------- /dbaas/physical/scripts/metric_collector_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/metric_collector_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_24_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_24_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_30_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_30_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_34_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_34_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_40_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_40_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_42_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_42_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_44_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_44_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_initialization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_initialization.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_start_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_start_database.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mongodb_start_replication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mongodb_start_replication.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_foxha_57_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_foxha_57_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_foxha_57_start_replication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_foxha_57_start_replication.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_foxha_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_foxha_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_foxha_start_replication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_foxha_start_replication.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_initialization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_initialization.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_single_5624_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_single_5624_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_single_57_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_single_57_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/mysql_start_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/mysql_start_database.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_28_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/redis_28_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_32_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/redis_32_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_50_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/redis_50_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_62_configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/redis_62_configuration.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_initialization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/redis_initialization.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_start_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/redis_start_database.sh -------------------------------------------------------------------------------- /dbaas/physical/scripts/redis_start_replication.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 -------------------------------------------------------------------------------- /dbaas/physical/scripts/rsyslog_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/scripts/rsyslog_config.sh -------------------------------------------------------------------------------- /dbaas/physical/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/serializers.py -------------------------------------------------------------------------------- /dbaas/physical/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/physical/service/databaseinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/databaseinfra.py -------------------------------------------------------------------------------- /dbaas/physical/service/diskofferingtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/diskofferingtype.py -------------------------------------------------------------------------------- /dbaas/physical/service/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/engine.py -------------------------------------------------------------------------------- /dbaas/physical/service/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/environment.py -------------------------------------------------------------------------------- /dbaas/physical/service/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/host.py -------------------------------------------------------------------------------- /dbaas/physical/service/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/instance.py -------------------------------------------------------------------------------- /dbaas/physical/service/offering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/offering.py -------------------------------------------------------------------------------- /dbaas/physical/service/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/parameter.py -------------------------------------------------------------------------------- /dbaas/physical/service/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/plan.py -------------------------------------------------------------------------------- /dbaas/physical/service/prometheus_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/service/prometheus_exporter.py -------------------------------------------------------------------------------- /dbaas/physical/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/ssh.py -------------------------------------------------------------------------------- /dbaas/physical/static/js/databaseinfra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/static/js/databaseinfra.js -------------------------------------------------------------------------------- /dbaas/physical/static/js/databaseinfra_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/static/js/databaseinfra_admin.js -------------------------------------------------------------------------------- /dbaas/physical/static/js/plan_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/static/js/plan_admin.js -------------------------------------------------------------------------------- /dbaas/physical/static/physical/css/plans_table_alt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/static/physical/css/plans_table_alt.css -------------------------------------------------------------------------------- /dbaas/physical/templates/admin/physical/plan/add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/templates/admin/physical/plan/add_form.html -------------------------------------------------------------------------------- /dbaas/physical/templates/plans/plans_cells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/templates/plans/plans_cells.html -------------------------------------------------------------------------------- /dbaas/physical/templates/plans/plans_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/templates/plans/plans_details.html -------------------------------------------------------------------------------- /dbaas/physical/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/physical/templatetags/filter_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/templatetags/filter_plans.py -------------------------------------------------------------------------------- /dbaas/physical/templatetags/infra_capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/templatetags/infra_capacity.py -------------------------------------------------------------------------------- /dbaas/physical/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/physical/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/factory.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_admin_databaseinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_admin_databaseinfra.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_cloud.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_commands.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_databaseinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_databaseinfra.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_disk_offering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_disk_offering.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_engine.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_engine_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_engine_type.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_environment.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_errors.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_form_databaseinfra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_form_databaseinfra.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_form_engine_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_form_engine_patch.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_host.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_host_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_host_ssh.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_instance.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_plan.py -------------------------------------------------------------------------------- /dbaas/physical/tests/test_plan_replication_topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/tests/test_plan_replication_topologies.py -------------------------------------------------------------------------------- /dbaas/physical/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/urls.py -------------------------------------------------------------------------------- /dbaas/physical/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/physical/views.py -------------------------------------------------------------------------------- /dbaas/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/system/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/admin/__init__.py -------------------------------------------------------------------------------- /dbaas/system/admin/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/admin/configuration.py -------------------------------------------------------------------------------- /dbaas/system/fixtures/basic_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/fixtures/basic_configs.yaml -------------------------------------------------------------------------------- /dbaas/system/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/system/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/models.py -------------------------------------------------------------------------------- /dbaas/system/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/tasks.py -------------------------------------------------------------------------------- /dbaas/system/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/system/templatetags/system_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/templatetags/system_config.py -------------------------------------------------------------------------------- /dbaas/system/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/system/tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/tests/factory.py -------------------------------------------------------------------------------- /dbaas/system/tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/tests/test_configuration.py -------------------------------------------------------------------------------- /dbaas/system/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/urls.py -------------------------------------------------------------------------------- /dbaas/system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/system/views.py -------------------------------------------------------------------------------- /dbaas/tsuru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/README.md -------------------------------------------------------------------------------- /dbaas/tsuru/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /dbaas/tsuru/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/migrations/0001_initial.py -------------------------------------------------------------------------------- /dbaas/tsuru/migrations/0002_auto__del_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/migrations/0002_auto__del_bind.py -------------------------------------------------------------------------------- /dbaas/tsuru/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/tsuru/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /dbaas/tsuru/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/tsuru/tests/test_check_database_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/tests/test_check_database_status.py -------------------------------------------------------------------------------- /dbaas/tsuru/tests/test_list_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/tests/test_list_plans.py -------------------------------------------------------------------------------- /dbaas/tsuru/tests/test_service_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/tests/test_service_add.py -------------------------------------------------------------------------------- /dbaas/tsuru/tests/test_service_app_bind_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/tests/test_service_app_bind_delete.py -------------------------------------------------------------------------------- /dbaas/tsuru/tests/test_service_app_bind_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/tests/test_service_app_bind_post.py -------------------------------------------------------------------------------- /dbaas/tsuru/tests/test_service_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/tests/test_service_info.py -------------------------------------------------------------------------------- /dbaas/tsuru/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/urls.py -------------------------------------------------------------------------------- /dbaas/tsuru/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/utils.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/__init__.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/getServiceInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/getServiceInfo.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/getServiceStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/getServiceStatus.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/listPlans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/listPlans.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/serviceAdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/serviceAdd.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/serviceAppBind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/serviceAppBind.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/serviceRemove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/serviceRemove.py -------------------------------------------------------------------------------- /dbaas/tsuru/views/serviceUnitBind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/tsuru/views/serviceUnitBind.py -------------------------------------------------------------------------------- /dbaas/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/__init__.py -------------------------------------------------------------------------------- /dbaas/util/aclapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/aclapi.py -------------------------------------------------------------------------------- /dbaas/util/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/decorators.py -------------------------------------------------------------------------------- /dbaas/util/email_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/email_notifications.py -------------------------------------------------------------------------------- /dbaas/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/html.py -------------------------------------------------------------------------------- /dbaas/util/migrate_networkapi_vip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/migrate_networkapi_vip.py -------------------------------------------------------------------------------- /dbaas/util/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/models.py -------------------------------------------------------------------------------- /dbaas/util/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/providers.py -------------------------------------------------------------------------------- /dbaas/util/region_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/region_migration.py -------------------------------------------------------------------------------- /dbaas/util/simple_health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/simple_health_check.py -------------------------------------------------------------------------------- /dbaas/util/task_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/task_register.py -------------------------------------------------------------------------------- /dbaas/util/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/teams.py -------------------------------------------------------------------------------- /dbaas/util/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/util/tests/test_aclapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/tests/test_aclapi.py -------------------------------------------------------------------------------- /dbaas/util/tests/test_email_notification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/util/tests/test_email_notification/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/tests/test_email_notification/base.py -------------------------------------------------------------------------------- /dbaas/util/update_gcp_plans_to_ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/update_gcp_plans_to_ssd.py -------------------------------------------------------------------------------- /dbaas/util/update_offering_on_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/util/update_offering_on_hosts.py -------------------------------------------------------------------------------- /dbaas/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/exceptions/error_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/exceptions/error_codes.py -------------------------------------------------------------------------------- /dbaas/workflow/exceptions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/exceptions/tests/test_error_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/exceptions/tests/test_error_codes.py -------------------------------------------------------------------------------- /dbaas/workflow/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/settings.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/mongodb/database.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/resize/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/upgrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/upgrade/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/mongodb/upgrade/database.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/upgrade/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/mongodb/upgrade/vm.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/mongodb/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/mongodb/util/__init__.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/mysql/resize/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/mysql/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/mysql/util/__init__.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/clone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/clone/clone_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/redis/clone/clone_database.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/redis/cluster.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/horizontal_elasticity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/resize/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/upgrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/upgrade/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/redis/upgrade/sentinel.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/redis/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/redis/util/__init__.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/tests/__init__.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/tests/base.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/tests/test_database_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/tests/test_database_steps.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/tests/test_dns_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/tests/test_dns_step.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/tests/test_foreman_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/tests/test_foreman_step.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/tests/test_host_provider_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/tests/test_host_provider_steps.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/__init__.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/acl.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/agents.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/base.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/clone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/clone/clone_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/clone/clone_database.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/database.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/database_upgrade_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/database_upgrade_patch.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/db_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/db_monitor.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/disk.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/dns.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/foreman.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/fox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/fox.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/host_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/host_provider.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/infra.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/k8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/k8s.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/metric_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/metric_collector.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/mysql.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/plan.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/puppet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/puppet.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/restore_snapshot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/sentinel.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/ssl.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/vip_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/vip_provider.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/vm.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/volume_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/volume_provider.py -------------------------------------------------------------------------------- /dbaas/workflow/steps/util/zabbix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/steps/util/zabbix.py -------------------------------------------------------------------------------- /dbaas/workflow/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_host_provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/tests/test_host_provider/__init__.py -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_host_provider/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/tests/test_host_provider/base.py -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_host_provider/test_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/tests/test_host_provider/test_provider.py -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_vip_provider/__init__.py: -------------------------------------------------------------------------------- 1 | from test_provider import * 2 | -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_vip_provider/test_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/tests/test_vip_provider/test_provider.py -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_volume_provider_steps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbaas/workflow/tests/test_volume_provider_steps/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/tests/test_volume_provider_steps/base.py -------------------------------------------------------------------------------- /dbaas/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dbaas/workflow/workflow.py -------------------------------------------------------------------------------- /dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/Dockerfile -------------------------------------------------------------------------------- /dev/add_debug_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/add_debug_lib.sh -------------------------------------------------------------------------------- /dev/check_debug_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/check_debug_lib.sh -------------------------------------------------------------------------------- /dev/debug_lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /dev/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/run.sh -------------------------------------------------------------------------------- /dev/run_celery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/run_celery.sh -------------------------------------------------------------------------------- /dev/setup_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/dev/setup_db.sh -------------------------------------------------------------------------------- /doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/API.md -------------------------------------------------------------------------------- /doc/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/Home.md -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/definitions.md -------------------------------------------------------------------------------- /doc/dockerconfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/dockerconfs.md -------------------------------------------------------------------------------- /doc/drivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/drivers.md -------------------------------------------------------------------------------- /doc/img/account_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/account_app.png -------------------------------------------------------------------------------- /doc/img/audits_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/audits_app.png -------------------------------------------------------------------------------- /doc/img/db_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/db_details.png -------------------------------------------------------------------------------- /doc/img/db_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/db_list.png -------------------------------------------------------------------------------- /doc/img/dbaas_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/dbaas_model.png -------------------------------------------------------------------------------- /doc/img/logical_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/logical_app.png -------------------------------------------------------------------------------- /doc/img/manage_dbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/manage_dbs.png -------------------------------------------------------------------------------- /doc/img/manage_one_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/manage_one_db.png -------------------------------------------------------------------------------- /doc/img/physical_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/physical_app.png -------------------------------------------------------------------------------- /doc/img/system_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/img/system_app.png -------------------------------------------------------------------------------- /doc/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/quickstart.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/gunicorn.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /run_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/run_dev.sh -------------------------------------------------------------------------------- /scripts/deploy_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/scripts/deploy_dev.sh -------------------------------------------------------------------------------- /spec/javascripts/notification.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/spec/javascripts/notification.spec.js -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/database-as-a-service/HEAD/tests.sh --------------------------------------------------------------------------------