├── .dockerignore ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .solargraph.yml ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Makefile ├── README.md ├── Rakefile ├── Vagrantfile ├── app ├── assets │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── images │ │ ├── .keep │ │ ├── cloud.png │ │ ├── kafka.png │ │ └── kibana.png │ ├── javascripts │ │ ├── app_groups.js │ │ ├── application.js │ │ ├── apps.js │ │ ├── groups.js │ │ └── users.js │ └── stylesheets │ │ └── application.css ├── controllers │ ├── api │ │ ├── app_groups_controller.rb │ │ ├── apps_controller.rb │ │ ├── base_controller.rb │ │ ├── infrastructures_controller.rb │ │ ├── v2 │ │ │ ├── app_group_teams_controller.rb │ │ │ ├── app_group_users_controller.rb │ │ │ ├── app_groups_controller.rb │ │ │ ├── apps_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── group_users_controller.rb │ │ │ ├── groups_controller.rb │ │ │ └── infrastructures_controller.rb │ │ └── v3 │ │ │ ├── app_groups_controller.rb │ │ │ ├── apps_controller.rb │ │ │ ├── base_controller.rb │ │ │ └── infrastructures_controller.rb │ ├── app_group_teams_controller.rb │ ├── app_group_users_controller.rb │ ├── app_groups_controller.rb │ ├── application_controller.rb │ ├── apps_controller.rb │ ├── calculators_controller.rb │ ├── cluster_templates_controller.rb │ ├── concerns │ │ └── traceable.rb │ ├── deployment_templates_controller.rb │ ├── ext_apps_controller.rb │ ├── group_users_controller.rb │ ├── groups_controller.rb │ ├── health_checks_controller.rb │ ├── helm_cluster_templates_controller.rb │ ├── helm_infrastructures_controller.rb │ ├── infrastructure_components_controller.rb │ ├── infrastructures_controller.rb │ ├── omniauth_callbacks_controller.rb │ ├── sessions_controller.rb │ └── users_controller.rb ├── helpers │ ├── app_groups_helper.rb │ ├── application_helper.rb │ ├── ext_apps_helper.rb │ ├── groups_helper.rb │ └── infrastructures_helper.rb ├── lib │ ├── argocd_client.rb │ ├── chef_helper │ │ ├── barito_flow_consumer_role_attributes_generator.rb │ │ ├── barito_flow_producer_role_attributes_generator.rb │ │ ├── consul_role_attributes_generator.rb │ │ ├── elasticsearch_role_attributes_generator.rb │ │ ├── generic_role_attributes_generator.rb │ │ ├── kafka_role_attributes_generator.rb │ │ ├── kibana_role_attributes_generator.rb │ │ ├── yggdrasil_role_attributes_generator.rb │ │ └── zookeeper_role_attributes_generator.rb │ ├── chef_solo_bootstrapper.rb │ ├── gate_client.rb │ ├── pathfinder_provisioner.rb │ └── sauron_provisioner.rb ├── mailers │ └── .keep ├── models │ ├── app_group.rb │ ├── app_group_bookmark.rb │ ├── app_group_role.rb │ ├── app_group_team.rb │ ├── app_group_user.rb │ ├── application_record.rb │ ├── barito_app.rb │ ├── blueprint.rb │ ├── cluster_template.rb │ ├── component_template.rb │ ├── concerns │ │ └── .keep │ ├── deployment_template.rb │ ├── ext_app.rb │ ├── group.rb │ ├── group_user.rb │ ├── helm_cluster_template.rb │ ├── helm_infrastructure.rb │ ├── infrastructure.rb │ ├── infrastructure_component.rb │ ├── infrastructure_location.rb │ └── user.rb ├── policies │ ├── app_group_policy.rb │ ├── application_policy.rb │ ├── barito_app_policy.rb │ ├── cluster_template_policy.rb │ ├── deployment_template_policy.rb │ ├── ext_app_policy.rb │ ├── group_policy.rb │ ├── group_user_policy.rb │ ├── helm_cluster_template_policy.rb │ ├── helm_infrastructure_policy.rb │ ├── infrastructure_component_policy.rb │ ├── infrastructure_policy.rb │ └── user_policy.rb ├── services │ ├── barito_blueprint │ │ ├── bootstrapper.rb │ │ ├── processor.rb │ │ └── provisioner.rb │ ├── datadog_listener.rb │ ├── prometheus_listener.rb │ ├── provisioning_listener.rb │ └── redis_cache_listener.rb ├── templates │ └── vagrant_file.erb ├── validators │ └── helm_values_validator.rb ├── views │ ├── app_groups │ │ ├── _applications.html.slim │ │ ├── _list.html.slim │ │ ├── _modal.html.slim │ │ ├── _redact.html.slim │ │ ├── index.html.slim │ │ ├── index.js.erb │ │ ├── manage_access.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── calculators │ │ └── calculate.html.slim │ ├── cluster_templates │ │ ├── _form.html.slim │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── deployment_templates │ │ ├── _form.html.slim │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── devise │ │ └── sessions │ │ │ └── new_sso.html.erb │ ├── ext_apps │ │ ├── _form.html.slim │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── groups │ │ ├── index.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── helm_cluster_templates │ │ ├── _form.html.slim │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── helm_infrastructures │ │ ├── _form.html.slim │ │ ├── edit.html.slim │ │ ├── new.html.slim │ │ └── show.html.slim │ ├── home │ │ └── index.html.slim │ ├── infrastructure_components │ │ ├── _form.html.slim │ │ ├── _list.html.slim │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ └── index.js.erb │ ├── infrastructures │ │ ├── _form.html.slim │ │ ├── _infrastructure_components.html.slim │ │ ├── _infrastructure_containers.html.slim │ │ ├── edit.html.slim │ │ └── show.html.slim │ ├── layouts │ │ └── application.html.slim │ └── users │ │ └── index.html.slim └── workers │ ├── argo_delete_worker.rb │ ├── argo_sync_worker.rb │ ├── blueprint_worker.rb │ ├── delete_helm_infrastructure_worker.rb │ ├── delete_infrastructure_worker.rb │ ├── helm_sync_worker.rb │ ├── provisioning_check_worker.rb │ ├── retry_bootstrap_worker.rb │ ├── retry_provision_worker.rb │ └── update_manifests_worker.rb ├── bin ├── berks ├── bundle ├── byebug ├── chef-apply ├── chef-client ├── chef-shell ├── chef-solo ├── chef-zero ├── coderay ├── erubis ├── ffi-yajl-bench ├── figaro ├── htmldiff ├── httpclient ├── knife ├── ldiff ├── listen ├── lock_jars ├── nokogiri ├── ohai ├── pirb ├── pruby ├── pry ├── puma ├── pumactl ├── rackup ├── rails ├── rake ├── rspec ├── safe_yaml ├── sass ├── sass-convert ├── scss ├── serverspec-init ├── setup ├── setup_chrome ├── slimrb ├── spring ├── sprockets ├── thor └── tilt ├── blueprints ├── failed │ └── .keep └── jobs │ └── .keep ├── bootstrap.sh ├── config.ru ├── config ├── application.rb ├── application.yml.example ├── boot.rb ├── database.yml.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── argocd_client.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── figaro.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── opentracing.rb │ ├── redis.rb │ ├── session_store.rb │ ├── tps_config.rb │ ├── wisper.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── newrelic.yml ├── routes.rb ├── secrets.yml ├── sidekiq.yml └── tps_config.yml.example ├── core ├── db ├── migrate │ ├── 20180411041123_create_barito_apps.rb │ ├── 20180604091027_add_log_count_to_barito_apps.rb │ ├── 20180606085632_add_consul_host_to_barito_apps.rb │ ├── 20180625074507_create_app_groups.rb │ ├── 20180625075900_create_infrastructures.rb │ ├── 20180625081923_modify_barito_apps.rb │ ├── 20180626050452_create_infrastructure_components.rb │ ├── 20180628043428_devise_create_users.rb │ ├── 20180702093138_create_groups.rb │ ├── 20180704235010_add_bootstrap_attributes_to_infrastructure_components.rb │ ├── 20180705042036_add_created_by_id_to_app_groups.rb │ ├── 20180705060616_create_app_group_roles.rb │ ├── 20180706080700_create_app_group_users.rb │ ├── 20180708154606_create_group_users.rb │ ├── 20180717040929_add_deleted_at_in_app_groups.rb │ ├── 20180806050132_remove_created_by_id_in_app_groups.rb │ ├── 20180823123800_add_log_count_to_app_groups.rb │ ├── 20181001041336_add_index_to_barito_apps.rb │ ├── 20181001041348_add_index_to_infrastructures.rb │ ├── 20181008111700_add_secret_key_to_app_groups.rb │ ├── 20181013200351_add_name_unique_key_to_barito_apps.rb │ ├── 20181022093051_add_log_retention_to_app_groups.rb │ ├── 20181219154400_change_log_counts_to_bigint.rb │ ├── 20190123140900_create_ext_apps.rb │ ├── 20190220114000_create_component_templates.rb │ ├── 20190220114400_create_cluster_templates.rb │ ├── 20190305153600_add_cluster_template_id_to_infrastructures.rb │ ├── 20190328153651_add_instances_to_infrastructures.rb │ ├── 20190328153951_add_options_to_infrastructures.rb │ ├── 20190425114500_add_image_to_component_templates.rb │ ├── 20190425114600_add_image_to_infrastructure_components.rb │ ├── 20190507104900_rename_category_to_component_type.rb │ ├── 20190618162200_add_source_to_infrastructure_components.rb │ ├── 20190624111100_add_source_to_component_templates.rb │ ├── 20190627133000_remove_image_from_component_templates.rb │ ├── 20190627134000_remove_image_from_infrastructure_components.rb │ ├── 20191118072632_add_environment_to_app_groups.rb │ ├── 20191122051047_add_role_to_group_user.rb │ ├── 20191122051940_create_app_group_teams.rb │ ├── 20191128061540_remove_role_from_app_group_team.rb │ ├── 20191211042046_create_app_group_bookmarks.rb │ ├── 20200127094355_add_log_retention_days_to_barito_apps.rb │ ├── 20200317040713_add_manifests_to_infrastructures.rb │ ├── 20200317040725_add_manifests_to_cluster_templates.rb │ ├── 20200317064025_create_deployment_templates.rb │ ├── 20210201092159_create_helm_cluster_templates.rb │ ├── 20210204041334_create_helm_infrastructures.rb │ ├── 20210210102632_add_is_active_to_helm_infrastructure.rb │ ├── 20210215094858_add_use_k8s_kibana_to_helm_infrastructure.rb │ ├── 20210623000000_add_infrastructure_fields_to_helm_infrastructure.rb │ ├── 20210723011211_add_cluster_index_sequence.rb │ ├── 20211115000000_add_index_to_app_groups.rb │ ├── 20220713072447_add_deactivated_to_user.rb │ ├── 20230223100302_add_latest_cost_to_barito_app.rb │ ├── 20230307103912_add_labels_to_app_groups.rb │ ├── 20230307104145_add_labels_to_barito_app.rb │ ├── 20240219110029_add_expiration_date_to_group_user.rb │ ├── 20240423074550_add_expiration_date_to_app_group_user.rb │ ├── 20240704071006_add_redact_labels_to_app_groups.rb │ ├── 20240704071246_add_redact_labels_to_barito_apps.rb │ ├── 20240712053531_add_redact_status_to_app_groups.rb │ ├── 20240722024735_create_infrastructure_location.rb │ ├── 20240722045948_add_cluster_name_to_app_group.rb │ ├── 20240722235228_add_infrastructure_location_to_helm_infrastructure.rb │ ├── 20240724045654_add_max_tps_to_app_groups.rb │ ├── 20240729020558_add_status_to_app_group.rb │ ├── 20240802030320_add_kibana_and_producer_helm_infrastructure_refs_to_app_groups.rb │ ├── 20240814014955_add_is_mtls_enabled_to_infrastructure_locations.rb │ ├── 20240923053531_add_elasticsearch_status_to_app_groups.rb │ └── 20241001235943_add_disable_app_tps_to_app_groups.rb ├── migrate_seeds │ ├── 20190326161123_update_infrastructure_cluster_template.rb │ ├── 20190627132500_update_image_bootstrap_attribute_component_template.rb │ ├── 20190627212500_update_image_bootstrap_attribute_infrastructure_component.rb │ └── 20191120055217_update_app_group_environment.rb ├── schema.rb ├── seeds.rb └── seeds │ └── master_data │ ├── cluster_template.rb │ ├── deployment_template.rb │ └── helm_cluster_template.rb ├── devbox.sh ├── docker-compose.yml ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── blueprint.rake │ ├── fix_user_role.rake │ └── manifest_seeder.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── barito_river.jpeg ├── favicon.ico └── robots.txt ├── sample.blueprint.json └── spec ├── controllers ├── apps_controller_spec.rb └── concerns │ └── traceable_spec.rb ├── factories ├── app_group_bookmarks.rb ├── app_group_roles.rb ├── app_group_teams.rb ├── app_group_users.rb ├── app_groups.rb ├── barito_apps.rb ├── cluster_templates.rb ├── component_templates.rb ├── deployment_templates.rb ├── ext_apps.rb ├── group_users.rb ├── groups.rb ├── helm_cluster_templates.rb ├── helm_infrastructures.rb ├── infrastructure_components.rb ├── infrastructure_locations.rb ├── infrastructures.rb └── users.rb ├── features ├── app_group_management │ ├── create_app_group_spec.rb │ ├── delete_helm_infrastructure_spec.rb │ ├── do_actions_spec.rb │ ├── manage_access_spec.rb │ ├── update_app_group_spec.rb │ ├── view_helm_infrastructure_spec.rb │ └── view_list_spec.rb ├── barito_app_management │ ├── create_barito_app_spec.rb │ ├── delete_barito_app_spec.rb │ ├── toggle_status_spec.rb │ ├── update_barito_app_spec.rb │ └── view_list_spec.rb ├── cluster_template_management │ ├── create_cluster_template_spec.rb │ ├── show_spec.rb │ ├── update_cluster_template_spec.rb │ └── view_list_spec.rb ├── deployment_template_management │ ├── create_deployment_template_spec.rb │ ├── show_spec.rb │ ├── update_deployment_template_spec.rb │ └── view_list_spec.rb ├── ext_app_management │ ├── create_ext_app_spec.rb │ ├── delete_ext_app_spec.rb │ └── view_list_spec.rb ├── group_management │ ├── assign_user_to_group_spec.rb │ ├── create_group_spec.rb │ ├── delete_group_spec.rb │ └── view_list_spec.rb ├── helm_cluster_template_management │ ├── create_cluster_template_spec.rb │ ├── show_spec.rb │ ├── update_cluster_template_spec.rb │ └── view_list_spec.rb ├── helm_infrastructure_management │ ├── show_spec.rb │ ├── synchronize_spec.rb │ └── update_spec.rb ├── infrastructure_component_management │ ├── update_infrastructure_component_spec.rb │ └── view_list_spec.rb ├── infrastructure_management │ └── show_spec.rb ├── misc │ └── copyright_spec.rb └── ping_spec.rb ├── lib ├── chef_helper │ ├── barito_flow_consumer_role_attributes_generator_spec.rb │ ├── barito_flow_producer_role_attributes_generator_spec.rb │ ├── consul_role_attributes_generator_spec.rb │ ├── elasticsearch_role_attributes_generator_spec.rb │ ├── kafka_role_attributes_generator_spec.rb │ ├── kibana_role_attributes_generator_spec.rb │ └── zookeeper_role_attributes_generator_spec.rb ├── chef_solo_bootstrapper_spec.rb ├── pathfinder_provisioner_spec.rb └── sauron_provisioner_spec.rb ├── migrations ├── 20200317040713_add_manifests_to_infrastructures_spec.rb ├── 20200317040725_add_manifests_to_cluster_templates_spec.rb ├── 20200317064025_create_deployment_templates_spec.rb └── 20210623000000_add_infrastructure_fields_to_helm_infrastructure_spec.rb ├── models ├── app_group_bookmark_spec.rb ├── app_group_spec.rb ├── app_group_team_spec.rb ├── barito_app_spec.rb ├── blueprint_spec.rb ├── cluster_template_spec.rb ├── component_template_spec.rb ├── deployment_template_spec.rb ├── ext_app_spec.rb ├── group_spec.rb ├── group_user_spec.rb ├── helm_cluster_template_spec.rb ├── helm_infrastructure_spec.rb ├── infrastructure_component_spec.rb ├── infrastructure_location_spec.rb ├── infrastructure_spec.rb └── user_spec.rb ├── rails_helper.rb ├── requests └── api │ ├── apps_spec.rb │ ├── infrastructures_spec.rb │ ├── v2 │ ├── app_group_teams_spec.rb │ ├── app_group_users_spec.rb │ ├── app_groups_spec.rb │ ├── apps_spec.rb │ ├── group_users_spec.rb │ ├── groups_spec.rb │ └── infrastructures_spec.rb │ └── v3 │ ├── app_groups_spec.rb │ ├── apps_spec.rb │ └── infrastructures_spec.rb ├── seeds.rb ├── services ├── barito_blueprint │ ├── bootstrapper_spec.rb │ ├── processor_spec.rb │ └── provisioner_spec.rb └── prometheus_listener_spec.rb ├── spec_helper.rb ├── support ├── helpers │ ├── app_view_helper.rb │ ├── gate_client_helper.rb │ └── strings_helper.rb └── matchers │ └── validate_helm_values_of_matcher.rb └── workers ├── blueprint_worker_spec.rb ├── delete_infrastructure_worker_spec.rb ├── helm_sync_worker_spec.rb ├── provisioning_check_worker_spec.rb ├── retry_bootstrap_worker_spec.rb └── retry_provision_worker_spec.rb /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.solargraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/.solargraph.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/images/cloud.png -------------------------------------------------------------------------------- /app/assets/images/kafka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/images/kafka.png -------------------------------------------------------------------------------- /app/assets/images/kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/images/kibana.png -------------------------------------------------------------------------------- /app/assets/javascripts/app_groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/javascripts/app_groups.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/javascripts/apps.js -------------------------------------------------------------------------------- /app/assets/javascripts/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/javascripts/groups.js -------------------------------------------------------------------------------- /app/assets/javascripts/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/javascripts/users.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/controllers/api/app_groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/app_groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/apps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/apps_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/infrastructures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/infrastructures_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/app_group_teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/app_group_teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/app_group_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/app_group_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/app_groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/app_groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/apps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/apps_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/group_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/group_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/infrastructures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v2/infrastructures_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v3/app_groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v3/app_groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v3/apps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v3/apps_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v3/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v3/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v3/infrastructures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/api/v3/infrastructures_controller.rb -------------------------------------------------------------------------------- /app/controllers/app_group_teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/app_group_teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/app_group_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/app_group_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/app_groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/app_groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/apps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/apps_controller.rb -------------------------------------------------------------------------------- /app/controllers/calculators_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/calculators_controller.rb -------------------------------------------------------------------------------- /app/controllers/cluster_templates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/cluster_templates_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/traceable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/concerns/traceable.rb -------------------------------------------------------------------------------- /app/controllers/deployment_templates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/deployment_templates_controller.rb -------------------------------------------------------------------------------- /app/controllers/ext_apps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/ext_apps_controller.rb -------------------------------------------------------------------------------- /app/controllers/group_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/group_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/health_checks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/health_checks_controller.rb -------------------------------------------------------------------------------- /app/controllers/helm_cluster_templates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/helm_cluster_templates_controller.rb -------------------------------------------------------------------------------- /app/controllers/helm_infrastructures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/helm_infrastructures_controller.rb -------------------------------------------------------------------------------- /app/controllers/infrastructure_components_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/infrastructure_components_controller.rb -------------------------------------------------------------------------------- /app/controllers/infrastructures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/infrastructures_controller.rb -------------------------------------------------------------------------------- /app/controllers/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/app_groups_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/helpers/app_groups_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/ext_apps_helper.rb: -------------------------------------------------------------------------------- 1 | module ExtAppsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/groups_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/helpers/groups_helper.rb -------------------------------------------------------------------------------- /app/helpers/infrastructures_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/helpers/infrastructures_helper.rb -------------------------------------------------------------------------------- /app/lib/argocd_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/argocd_client.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/barito_flow_consumer_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/barito_flow_consumer_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/barito_flow_producer_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/barito_flow_producer_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/consul_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/consul_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/elasticsearch_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/elasticsearch_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/generic_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/generic_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/kafka_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/kafka_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/kibana_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/kibana_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/yggdrasil_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/yggdrasil_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_helper/zookeeper_role_attributes_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_helper/zookeeper_role_attributes_generator.rb -------------------------------------------------------------------------------- /app/lib/chef_solo_bootstrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/chef_solo_bootstrapper.rb -------------------------------------------------------------------------------- /app/lib/gate_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/gate_client.rb -------------------------------------------------------------------------------- /app/lib/pathfinder_provisioner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/pathfinder_provisioner.rb -------------------------------------------------------------------------------- /app/lib/sauron_provisioner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/lib/sauron_provisioner.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/app_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/app_group.rb -------------------------------------------------------------------------------- /app/models/app_group_bookmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/app_group_bookmark.rb -------------------------------------------------------------------------------- /app/models/app_group_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/app_group_role.rb -------------------------------------------------------------------------------- /app/models/app_group_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/app_group_team.rb -------------------------------------------------------------------------------- /app/models/app_group_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/app_group_user.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/barito_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/barito_app.rb -------------------------------------------------------------------------------- /app/models/blueprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/blueprint.rb -------------------------------------------------------------------------------- /app/models/cluster_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/cluster_template.rb -------------------------------------------------------------------------------- /app/models/component_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/component_template.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/deployment_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/deployment_template.rb -------------------------------------------------------------------------------- /app/models/ext_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/ext_app.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/group_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/group_user.rb -------------------------------------------------------------------------------- /app/models/helm_cluster_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/helm_cluster_template.rb -------------------------------------------------------------------------------- /app/models/helm_infrastructure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/helm_infrastructure.rb -------------------------------------------------------------------------------- /app/models/infrastructure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/infrastructure.rb -------------------------------------------------------------------------------- /app/models/infrastructure_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/infrastructure_component.rb -------------------------------------------------------------------------------- /app/models/infrastructure_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/infrastructure_location.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/policies/app_group_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/app_group_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/barito_app_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/barito_app_policy.rb -------------------------------------------------------------------------------- /app/policies/cluster_template_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/cluster_template_policy.rb -------------------------------------------------------------------------------- /app/policies/deployment_template_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/deployment_template_policy.rb -------------------------------------------------------------------------------- /app/policies/ext_app_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/ext_app_policy.rb -------------------------------------------------------------------------------- /app/policies/group_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/group_policy.rb -------------------------------------------------------------------------------- /app/policies/group_user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/group_user_policy.rb -------------------------------------------------------------------------------- /app/policies/helm_cluster_template_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/helm_cluster_template_policy.rb -------------------------------------------------------------------------------- /app/policies/helm_infrastructure_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/helm_infrastructure_policy.rb -------------------------------------------------------------------------------- /app/policies/infrastructure_component_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/infrastructure_component_policy.rb -------------------------------------------------------------------------------- /app/policies/infrastructure_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/infrastructure_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/services/barito_blueprint/bootstrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/barito_blueprint/bootstrapper.rb -------------------------------------------------------------------------------- /app/services/barito_blueprint/processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/barito_blueprint/processor.rb -------------------------------------------------------------------------------- /app/services/barito_blueprint/provisioner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/barito_blueprint/provisioner.rb -------------------------------------------------------------------------------- /app/services/datadog_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/datadog_listener.rb -------------------------------------------------------------------------------- /app/services/prometheus_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/prometheus_listener.rb -------------------------------------------------------------------------------- /app/services/provisioning_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/provisioning_listener.rb -------------------------------------------------------------------------------- /app/services/redis_cache_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/services/redis_cache_listener.rb -------------------------------------------------------------------------------- /app/templates/vagrant_file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/templates/vagrant_file.erb -------------------------------------------------------------------------------- /app/validators/helm_values_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/validators/helm_values_validator.rb -------------------------------------------------------------------------------- /app/views/app_groups/_applications.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/_applications.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/_list.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/_list.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/_modal.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/_modal.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/_redact.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/_redact.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/index.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/index.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/index.js.erb -------------------------------------------------------------------------------- /app/views/app_groups/manage_access.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/manage_access.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/new.html.slim -------------------------------------------------------------------------------- /app/views/app_groups/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/app_groups/show.html.slim -------------------------------------------------------------------------------- /app/views/calculators/calculate.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/calculators/calculate.html.slim -------------------------------------------------------------------------------- /app/views/cluster_templates/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/cluster_templates/_form.html.slim -------------------------------------------------------------------------------- /app/views/cluster_templates/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/cluster_templates/edit.html.slim -------------------------------------------------------------------------------- /app/views/cluster_templates/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/cluster_templates/index.html.slim -------------------------------------------------------------------------------- /app/views/cluster_templates/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/cluster_templates/new.html.slim -------------------------------------------------------------------------------- /app/views/cluster_templates/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/cluster_templates/show.html.slim -------------------------------------------------------------------------------- /app/views/deployment_templates/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/deployment_templates/_form.html.slim -------------------------------------------------------------------------------- /app/views/deployment_templates/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/deployment_templates/edit.html.slim -------------------------------------------------------------------------------- /app/views/deployment_templates/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/deployment_templates/index.html.slim -------------------------------------------------------------------------------- /app/views/deployment_templates/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/deployment_templates/new.html.slim -------------------------------------------------------------------------------- /app/views/deployment_templates/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/deployment_templates/show.html.slim -------------------------------------------------------------------------------- /app/views/devise/sessions/new_sso.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/devise/sessions/new_sso.html.erb -------------------------------------------------------------------------------- /app/views/ext_apps/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/ext_apps/_form.html.slim -------------------------------------------------------------------------------- /app/views/ext_apps/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/ext_apps/edit.html.slim -------------------------------------------------------------------------------- /app/views/ext_apps/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/ext_apps/index.html.slim -------------------------------------------------------------------------------- /app/views/ext_apps/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/ext_apps/new.html.slim -------------------------------------------------------------------------------- /app/views/ext_apps/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/ext_apps/show.html.slim -------------------------------------------------------------------------------- /app/views/groups/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/groups/index.html.slim -------------------------------------------------------------------------------- /app/views/groups/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/groups/new.html.slim -------------------------------------------------------------------------------- /app/views/groups/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/groups/show.html.slim -------------------------------------------------------------------------------- /app/views/helm_cluster_templates/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_cluster_templates/_form.html.slim -------------------------------------------------------------------------------- /app/views/helm_cluster_templates/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_cluster_templates/edit.html.slim -------------------------------------------------------------------------------- /app/views/helm_cluster_templates/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_cluster_templates/index.html.slim -------------------------------------------------------------------------------- /app/views/helm_cluster_templates/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_cluster_templates/new.html.slim -------------------------------------------------------------------------------- /app/views/helm_cluster_templates/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_cluster_templates/show.html.slim -------------------------------------------------------------------------------- /app/views/helm_infrastructures/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_infrastructures/_form.html.slim -------------------------------------------------------------------------------- /app/views/helm_infrastructures/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_infrastructures/edit.html.slim -------------------------------------------------------------------------------- /app/views/helm_infrastructures/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_infrastructures/new.html.slim -------------------------------------------------------------------------------- /app/views/helm_infrastructures/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/helm_infrastructures/show.html.slim -------------------------------------------------------------------------------- /app/views/home/index.html.slim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/infrastructure_components/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructure_components/_form.html.slim -------------------------------------------------------------------------------- /app/views/infrastructure_components/_list.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructure_components/_list.html.slim -------------------------------------------------------------------------------- /app/views/infrastructure_components/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructure_components/edit.html.slim -------------------------------------------------------------------------------- /app/views/infrastructure_components/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructure_components/index.html.slim -------------------------------------------------------------------------------- /app/views/infrastructure_components/index.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructure_components/index.js.erb -------------------------------------------------------------------------------- /app/views/infrastructures/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructures/_form.html.slim -------------------------------------------------------------------------------- /app/views/infrastructures/_infrastructure_components.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructures/_infrastructure_components.html.slim -------------------------------------------------------------------------------- /app/views/infrastructures/_infrastructure_containers.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructures/_infrastructure_containers.html.slim -------------------------------------------------------------------------------- /app/views/infrastructures/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructures/edit.html.slim -------------------------------------------------------------------------------- /app/views/infrastructures/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/infrastructures/show.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/users/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/views/users/index.html.slim -------------------------------------------------------------------------------- /app/workers/argo_delete_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/argo_delete_worker.rb -------------------------------------------------------------------------------- /app/workers/argo_sync_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/argo_sync_worker.rb -------------------------------------------------------------------------------- /app/workers/blueprint_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/blueprint_worker.rb -------------------------------------------------------------------------------- /app/workers/delete_helm_infrastructure_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/delete_helm_infrastructure_worker.rb -------------------------------------------------------------------------------- /app/workers/delete_infrastructure_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/delete_infrastructure_worker.rb -------------------------------------------------------------------------------- /app/workers/helm_sync_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/helm_sync_worker.rb -------------------------------------------------------------------------------- /app/workers/provisioning_check_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/provisioning_check_worker.rb -------------------------------------------------------------------------------- /app/workers/retry_bootstrap_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/retry_bootstrap_worker.rb -------------------------------------------------------------------------------- /app/workers/retry_provision_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/retry_provision_worker.rb -------------------------------------------------------------------------------- /app/workers/update_manifests_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/app/workers/update_manifests_worker.rb -------------------------------------------------------------------------------- /bin/berks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/berks -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/byebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/byebug -------------------------------------------------------------------------------- /bin/chef-apply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/chef-apply -------------------------------------------------------------------------------- /bin/chef-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/chef-client -------------------------------------------------------------------------------- /bin/chef-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/chef-shell -------------------------------------------------------------------------------- /bin/chef-solo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/chef-solo -------------------------------------------------------------------------------- /bin/chef-zero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/chef-zero -------------------------------------------------------------------------------- /bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/coderay -------------------------------------------------------------------------------- /bin/erubis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/erubis -------------------------------------------------------------------------------- /bin/ffi-yajl-bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/ffi-yajl-bench -------------------------------------------------------------------------------- /bin/figaro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/figaro -------------------------------------------------------------------------------- /bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/htmldiff -------------------------------------------------------------------------------- /bin/httpclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/httpclient -------------------------------------------------------------------------------- /bin/knife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/knife -------------------------------------------------------------------------------- /bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/ldiff -------------------------------------------------------------------------------- /bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/listen -------------------------------------------------------------------------------- /bin/lock_jars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/lock_jars -------------------------------------------------------------------------------- /bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/nokogiri -------------------------------------------------------------------------------- /bin/ohai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/ohai -------------------------------------------------------------------------------- /bin/pirb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/pirb -------------------------------------------------------------------------------- /bin/pruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/pruby -------------------------------------------------------------------------------- /bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/pry -------------------------------------------------------------------------------- /bin/puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/puma -------------------------------------------------------------------------------- /bin/pumactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/pumactl -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/safe_yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/safe_yaml -------------------------------------------------------------------------------- /bin/sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/sass -------------------------------------------------------------------------------- /bin/sass-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/sass-convert -------------------------------------------------------------------------------- /bin/scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/scss -------------------------------------------------------------------------------- /bin/serverspec-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/serverspec-init -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/setup_chrome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/setup_chrome -------------------------------------------------------------------------------- /bin/slimrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/slimrb -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/sprockets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/sprockets -------------------------------------------------------------------------------- /bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/thor -------------------------------------------------------------------------------- /bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bin/tilt -------------------------------------------------------------------------------- /blueprints/failed/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints/jobs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/application.yml.example -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/argocd_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/argocd_client.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/figaro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/figaro.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/opentracing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/opentracing.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/tps_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/tps_config.rb -------------------------------------------------------------------------------- /config/initializers/wisper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/wisper.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- 1 | --- 2 | :concurrent: 1 3 | -------------------------------------------------------------------------------- /config/tps_config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/config/tps_config.yml.example -------------------------------------------------------------------------------- /core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrate/20180411041123_create_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180411041123_create_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20180604091027_add_log_count_to_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180604091027_add_log_count_to_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20180606085632_add_consul_host_to_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180606085632_add_consul_host_to_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20180625074507_create_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180625074507_create_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20180625075900_create_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180625075900_create_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20180625081923_modify_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180625081923_modify_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20180626050452_create_infrastructure_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180626050452_create_infrastructure_components.rb -------------------------------------------------------------------------------- /db/migrate/20180628043428_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180628043428_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20180702093138_create_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180702093138_create_groups.rb -------------------------------------------------------------------------------- /db/migrate/20180704235010_add_bootstrap_attributes_to_infrastructure_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180704235010_add_bootstrap_attributes_to_infrastructure_components.rb -------------------------------------------------------------------------------- /db/migrate/20180705042036_add_created_by_id_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180705042036_add_created_by_id_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20180705060616_create_app_group_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180705060616_create_app_group_roles.rb -------------------------------------------------------------------------------- /db/migrate/20180706080700_create_app_group_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180706080700_create_app_group_users.rb -------------------------------------------------------------------------------- /db/migrate/20180708154606_create_group_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180708154606_create_group_users.rb -------------------------------------------------------------------------------- /db/migrate/20180717040929_add_deleted_at_in_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180717040929_add_deleted_at_in_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20180806050132_remove_created_by_id_in_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180806050132_remove_created_by_id_in_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20180823123800_add_log_count_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20180823123800_add_log_count_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20181001041336_add_index_to_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20181001041336_add_index_to_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20181001041348_add_index_to_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20181001041348_add_index_to_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20181008111700_add_secret_key_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20181008111700_add_secret_key_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20181013200351_add_name_unique_key_to_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20181013200351_add_name_unique_key_to_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20181022093051_add_log_retention_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20181022093051_add_log_retention_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20181219154400_change_log_counts_to_bigint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20181219154400_change_log_counts_to_bigint.rb -------------------------------------------------------------------------------- /db/migrate/20190123140900_create_ext_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190123140900_create_ext_apps.rb -------------------------------------------------------------------------------- /db/migrate/20190220114000_create_component_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190220114000_create_component_templates.rb -------------------------------------------------------------------------------- /db/migrate/20190220114400_create_cluster_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190220114400_create_cluster_templates.rb -------------------------------------------------------------------------------- /db/migrate/20190305153600_add_cluster_template_id_to_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190305153600_add_cluster_template_id_to_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20190328153651_add_instances_to_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190328153651_add_instances_to_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20190328153951_add_options_to_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190328153951_add_options_to_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20190425114500_add_image_to_component_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190425114500_add_image_to_component_templates.rb -------------------------------------------------------------------------------- /db/migrate/20190425114600_add_image_to_infrastructure_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190425114600_add_image_to_infrastructure_components.rb -------------------------------------------------------------------------------- /db/migrate/20190507104900_rename_category_to_component_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190507104900_rename_category_to_component_type.rb -------------------------------------------------------------------------------- /db/migrate/20190618162200_add_source_to_infrastructure_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190618162200_add_source_to_infrastructure_components.rb -------------------------------------------------------------------------------- /db/migrate/20190624111100_add_source_to_component_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190624111100_add_source_to_component_templates.rb -------------------------------------------------------------------------------- /db/migrate/20190627133000_remove_image_from_component_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190627133000_remove_image_from_component_templates.rb -------------------------------------------------------------------------------- /db/migrate/20190627134000_remove_image_from_infrastructure_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20190627134000_remove_image_from_infrastructure_components.rb -------------------------------------------------------------------------------- /db/migrate/20191118072632_add_environment_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20191118072632_add_environment_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20191122051047_add_role_to_group_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20191122051047_add_role_to_group_user.rb -------------------------------------------------------------------------------- /db/migrate/20191122051940_create_app_group_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20191122051940_create_app_group_teams.rb -------------------------------------------------------------------------------- /db/migrate/20191128061540_remove_role_from_app_group_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20191128061540_remove_role_from_app_group_team.rb -------------------------------------------------------------------------------- /db/migrate/20191211042046_create_app_group_bookmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20191211042046_create_app_group_bookmarks.rb -------------------------------------------------------------------------------- /db/migrate/20200127094355_add_log_retention_days_to_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20200127094355_add_log_retention_days_to_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20200317040713_add_manifests_to_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20200317040713_add_manifests_to_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20200317040725_add_manifests_to_cluster_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20200317040725_add_manifests_to_cluster_templates.rb -------------------------------------------------------------------------------- /db/migrate/20200317064025_create_deployment_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20200317064025_create_deployment_templates.rb -------------------------------------------------------------------------------- /db/migrate/20210201092159_create_helm_cluster_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20210201092159_create_helm_cluster_templates.rb -------------------------------------------------------------------------------- /db/migrate/20210204041334_create_helm_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20210204041334_create_helm_infrastructures.rb -------------------------------------------------------------------------------- /db/migrate/20210210102632_add_is_active_to_helm_infrastructure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20210210102632_add_is_active_to_helm_infrastructure.rb -------------------------------------------------------------------------------- /db/migrate/20210215094858_add_use_k8s_kibana_to_helm_infrastructure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20210215094858_add_use_k8s_kibana_to_helm_infrastructure.rb -------------------------------------------------------------------------------- /db/migrate/20210623000000_add_infrastructure_fields_to_helm_infrastructure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20210623000000_add_infrastructure_fields_to_helm_infrastructure.rb -------------------------------------------------------------------------------- /db/migrate/20210723011211_add_cluster_index_sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20210723011211_add_cluster_index_sequence.rb -------------------------------------------------------------------------------- /db/migrate/20211115000000_add_index_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20211115000000_add_index_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20220713072447_add_deactivated_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20220713072447_add_deactivated_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20230223100302_add_latest_cost_to_barito_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20230223100302_add_latest_cost_to_barito_app.rb -------------------------------------------------------------------------------- /db/migrate/20230307103912_add_labels_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20230307103912_add_labels_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20230307104145_add_labels_to_barito_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20230307104145_add_labels_to_barito_app.rb -------------------------------------------------------------------------------- /db/migrate/20240219110029_add_expiration_date_to_group_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240219110029_add_expiration_date_to_group_user.rb -------------------------------------------------------------------------------- /db/migrate/20240423074550_add_expiration_date_to_app_group_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240423074550_add_expiration_date_to_app_group_user.rb -------------------------------------------------------------------------------- /db/migrate/20240704071006_add_redact_labels_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240704071006_add_redact_labels_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20240704071246_add_redact_labels_to_barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240704071246_add_redact_labels_to_barito_apps.rb -------------------------------------------------------------------------------- /db/migrate/20240712053531_add_redact_status_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240712053531_add_redact_status_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20240722024735_create_infrastructure_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240722024735_create_infrastructure_location.rb -------------------------------------------------------------------------------- /db/migrate/20240722045948_add_cluster_name_to_app_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240722045948_add_cluster_name_to_app_group.rb -------------------------------------------------------------------------------- /db/migrate/20240722235228_add_infrastructure_location_to_helm_infrastructure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240722235228_add_infrastructure_location_to_helm_infrastructure.rb -------------------------------------------------------------------------------- /db/migrate/20240724045654_add_max_tps_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240724045654_add_max_tps_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20240729020558_add_status_to_app_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240729020558_add_status_to_app_group.rb -------------------------------------------------------------------------------- /db/migrate/20240802030320_add_kibana_and_producer_helm_infrastructure_refs_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240802030320_add_kibana_and_producer_helm_infrastructure_refs_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20240814014955_add_is_mtls_enabled_to_infrastructure_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240814014955_add_is_mtls_enabled_to_infrastructure_locations.rb -------------------------------------------------------------------------------- /db/migrate/20240923053531_add_elasticsearch_status_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20240923053531_add_elasticsearch_status_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate/20241001235943_add_disable_app_tps_to_app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate/20241001235943_add_disable_app_tps_to_app_groups.rb -------------------------------------------------------------------------------- /db/migrate_seeds/20190326161123_update_infrastructure_cluster_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate_seeds/20190326161123_update_infrastructure_cluster_template.rb -------------------------------------------------------------------------------- /db/migrate_seeds/20190627132500_update_image_bootstrap_attribute_component_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate_seeds/20190627132500_update_image_bootstrap_attribute_component_template.rb -------------------------------------------------------------------------------- /db/migrate_seeds/20190627212500_update_image_bootstrap_attribute_infrastructure_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate_seeds/20190627212500_update_image_bootstrap_attribute_infrastructure_component.rb -------------------------------------------------------------------------------- /db/migrate_seeds/20191120055217_update_app_group_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/migrate_seeds/20191120055217_update_app_group_environment.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/master_data/cluster_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/seeds/master_data/cluster_template.rb -------------------------------------------------------------------------------- /db/seeds/master_data/deployment_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/seeds/master_data/deployment_template.rb -------------------------------------------------------------------------------- /db/seeds/master_data/helm_cluster_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/db/seeds/master_data/helm_cluster_template.rb -------------------------------------------------------------------------------- /devbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/devbox.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/blueprint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/lib/tasks/blueprint.rake -------------------------------------------------------------------------------- /lib/tasks/fix_user_role.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/lib/tasks/fix_user_role.rake -------------------------------------------------------------------------------- /lib/tasks/manifest_seeder.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/lib/tasks/manifest_seeder.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/public/500.html -------------------------------------------------------------------------------- /public/barito_river.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/public/barito_river.jpeg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/public/robots.txt -------------------------------------------------------------------------------- /sample.blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/sample.blueprint.json -------------------------------------------------------------------------------- /spec/controllers/apps_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/controllers/apps_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/concerns/traceable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/controllers/concerns/traceable_spec.rb -------------------------------------------------------------------------------- /spec/factories/app_group_bookmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/app_group_bookmarks.rb -------------------------------------------------------------------------------- /spec/factories/app_group_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/app_group_roles.rb -------------------------------------------------------------------------------- /spec/factories/app_group_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/app_group_teams.rb -------------------------------------------------------------------------------- /spec/factories/app_group_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/app_group_users.rb -------------------------------------------------------------------------------- /spec/factories/app_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/app_groups.rb -------------------------------------------------------------------------------- /spec/factories/barito_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/barito_apps.rb -------------------------------------------------------------------------------- /spec/factories/cluster_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/cluster_templates.rb -------------------------------------------------------------------------------- /spec/factories/component_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/component_templates.rb -------------------------------------------------------------------------------- /spec/factories/deployment_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/deployment_templates.rb -------------------------------------------------------------------------------- /spec/factories/ext_apps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/ext_apps.rb -------------------------------------------------------------------------------- /spec/factories/group_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/group_users.rb -------------------------------------------------------------------------------- /spec/factories/groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/groups.rb -------------------------------------------------------------------------------- /spec/factories/helm_cluster_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/helm_cluster_templates.rb -------------------------------------------------------------------------------- /spec/factories/helm_infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/helm_infrastructures.rb -------------------------------------------------------------------------------- /spec/factories/infrastructure_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/infrastructure_components.rb -------------------------------------------------------------------------------- /spec/factories/infrastructure_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/infrastructure_locations.rb -------------------------------------------------------------------------------- /spec/factories/infrastructures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/infrastructures.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/create_app_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/create_app_group_spec.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/delete_helm_infrastructure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/delete_helm_infrastructure_spec.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/do_actions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/do_actions_spec.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/manage_access_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/manage_access_spec.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/update_app_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/update_app_group_spec.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/view_helm_infrastructure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/view_helm_infrastructure_spec.rb -------------------------------------------------------------------------------- /spec/features/app_group_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/app_group_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/barito_app_management/create_barito_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/barito_app_management/create_barito_app_spec.rb -------------------------------------------------------------------------------- /spec/features/barito_app_management/delete_barito_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/barito_app_management/delete_barito_app_spec.rb -------------------------------------------------------------------------------- /spec/features/barito_app_management/toggle_status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/barito_app_management/toggle_status_spec.rb -------------------------------------------------------------------------------- /spec/features/barito_app_management/update_barito_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/barito_app_management/update_barito_app_spec.rb -------------------------------------------------------------------------------- /spec/features/barito_app_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/barito_app_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/cluster_template_management/create_cluster_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/cluster_template_management/create_cluster_template_spec.rb -------------------------------------------------------------------------------- /spec/features/cluster_template_management/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/cluster_template_management/show_spec.rb -------------------------------------------------------------------------------- /spec/features/cluster_template_management/update_cluster_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/cluster_template_management/update_cluster_template_spec.rb -------------------------------------------------------------------------------- /spec/features/cluster_template_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/cluster_template_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/deployment_template_management/create_deployment_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/deployment_template_management/create_deployment_template_spec.rb -------------------------------------------------------------------------------- /spec/features/deployment_template_management/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/deployment_template_management/show_spec.rb -------------------------------------------------------------------------------- /spec/features/deployment_template_management/update_deployment_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/deployment_template_management/update_deployment_template_spec.rb -------------------------------------------------------------------------------- /spec/features/deployment_template_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/deployment_template_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/ext_app_management/create_ext_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/ext_app_management/create_ext_app_spec.rb -------------------------------------------------------------------------------- /spec/features/ext_app_management/delete_ext_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/ext_app_management/delete_ext_app_spec.rb -------------------------------------------------------------------------------- /spec/features/ext_app_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/ext_app_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/group_management/assign_user_to_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/group_management/assign_user_to_group_spec.rb -------------------------------------------------------------------------------- /spec/features/group_management/create_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/group_management/create_group_spec.rb -------------------------------------------------------------------------------- /spec/features/group_management/delete_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/group_management/delete_group_spec.rb -------------------------------------------------------------------------------- /spec/features/group_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/group_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_cluster_template_management/create_cluster_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_cluster_template_management/create_cluster_template_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_cluster_template_management/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_cluster_template_management/show_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_cluster_template_management/update_cluster_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_cluster_template_management/update_cluster_template_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_cluster_template_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_cluster_template_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_infrastructure_management/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_infrastructure_management/show_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_infrastructure_management/synchronize_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_infrastructure_management/synchronize_spec.rb -------------------------------------------------------------------------------- /spec/features/helm_infrastructure_management/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/helm_infrastructure_management/update_spec.rb -------------------------------------------------------------------------------- /spec/features/infrastructure_component_management/update_infrastructure_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/infrastructure_component_management/update_infrastructure_component_spec.rb -------------------------------------------------------------------------------- /spec/features/infrastructure_component_management/view_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/infrastructure_component_management/view_list_spec.rb -------------------------------------------------------------------------------- /spec/features/infrastructure_management/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/infrastructure_management/show_spec.rb -------------------------------------------------------------------------------- /spec/features/misc/copyright_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/misc/copyright_spec.rb -------------------------------------------------------------------------------- /spec/features/ping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/features/ping_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/barito_flow_consumer_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/barito_flow_consumer_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/barito_flow_producer_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/barito_flow_producer_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/consul_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/consul_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/elasticsearch_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/elasticsearch_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/kafka_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/kafka_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/kibana_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/kibana_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_helper/zookeeper_role_attributes_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_helper/zookeeper_role_attributes_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/chef_solo_bootstrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/chef_solo_bootstrapper_spec.rb -------------------------------------------------------------------------------- /spec/lib/pathfinder_provisioner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/pathfinder_provisioner_spec.rb -------------------------------------------------------------------------------- /spec/lib/sauron_provisioner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/lib/sauron_provisioner_spec.rb -------------------------------------------------------------------------------- /spec/migrations/20200317040713_add_manifests_to_infrastructures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/migrations/20200317040713_add_manifests_to_infrastructures_spec.rb -------------------------------------------------------------------------------- /spec/migrations/20200317040725_add_manifests_to_cluster_templates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/migrations/20200317040725_add_manifests_to_cluster_templates_spec.rb -------------------------------------------------------------------------------- /spec/migrations/20200317064025_create_deployment_templates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/migrations/20200317064025_create_deployment_templates_spec.rb -------------------------------------------------------------------------------- /spec/migrations/20210623000000_add_infrastructure_fields_to_helm_infrastructure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/migrations/20210623000000_add_infrastructure_fields_to_helm_infrastructure_spec.rb -------------------------------------------------------------------------------- /spec/models/app_group_bookmark_spec.rb: -------------------------------------------------------------------------------- 1 | require 'rails_helper' 2 | 3 | RSpec.describe AppGroupBookmark, type: :model do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/app_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/app_group_spec.rb -------------------------------------------------------------------------------- /spec/models/app_group_team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/app_group_team_spec.rb -------------------------------------------------------------------------------- /spec/models/barito_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/barito_app_spec.rb -------------------------------------------------------------------------------- /spec/models/blueprint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/blueprint_spec.rb -------------------------------------------------------------------------------- /spec/models/cluster_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/cluster_template_spec.rb -------------------------------------------------------------------------------- /spec/models/component_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/component_template_spec.rb -------------------------------------------------------------------------------- /spec/models/deployment_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/deployment_template_spec.rb -------------------------------------------------------------------------------- /spec/models/ext_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/ext_app_spec.rb -------------------------------------------------------------------------------- /spec/models/group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/group_spec.rb -------------------------------------------------------------------------------- /spec/models/group_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/group_user_spec.rb -------------------------------------------------------------------------------- /spec/models/helm_cluster_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/helm_cluster_template_spec.rb -------------------------------------------------------------------------------- /spec/models/helm_infrastructure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/helm_infrastructure_spec.rb -------------------------------------------------------------------------------- /spec/models/infrastructure_component_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/infrastructure_component_spec.rb -------------------------------------------------------------------------------- /spec/models/infrastructure_location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/infrastructure_location_spec.rb -------------------------------------------------------------------------------- /spec/models/infrastructure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/infrastructure_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/api/apps_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/apps_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/infrastructures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/infrastructures_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/app_group_teams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/app_group_teams_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/app_group_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/app_group_users_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/app_groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/app_groups_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/apps_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/apps_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/group_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/group_users_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/groups_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/infrastructures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v2/infrastructures_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v3/app_groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v3/app_groups_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v3/apps_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v3/apps_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v3/infrastructures_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/requests/api/v3/infrastructures_spec.rb -------------------------------------------------------------------------------- /spec/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/seeds.rb -------------------------------------------------------------------------------- /spec/services/barito_blueprint/bootstrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/services/barito_blueprint/bootstrapper_spec.rb -------------------------------------------------------------------------------- /spec/services/barito_blueprint/processor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/services/barito_blueprint/processor_spec.rb -------------------------------------------------------------------------------- /spec/services/barito_blueprint/provisioner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/services/barito_blueprint/provisioner_spec.rb -------------------------------------------------------------------------------- /spec/services/prometheus_listener_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/services/prometheus_listener_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/app_view_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/support/helpers/app_view_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/gate_client_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/support/helpers/gate_client_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/strings_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/support/helpers/strings_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers/validate_helm_values_of_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/support/matchers/validate_helm_values_of_matcher.rb -------------------------------------------------------------------------------- /spec/workers/blueprint_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/workers/blueprint_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/delete_infrastructure_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/workers/delete_infrastructure_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/helm_sync_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/workers/helm_sync_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/provisioning_check_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/workers/provisioning_check_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/retry_bootstrap_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/workers/retry_bootstrap_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/retry_provision_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BaritoLog/BaritoMarket/HEAD/spec/workers/retry_provision_worker_spec.rb --------------------------------------------------------------------------------