├── .ci └── scripts │ ├── check_gettext.sh │ └── get_dab_for_pr.py ├── .dockerignore ├── .flake8 ├── .github ├── CODEOWNERS ├── dependabot.yml ├── labeler.yml ├── patchback.yml ├── pull_request_template.md ├── renovate.json └── workflows │ ├── backported-labels.yml │ ├── block-prs-to-master.yml │ ├── ci-docker-compose-integration.yml │ ├── ci_automation_hub_collection.yml │ ├── ci_full.yml │ ├── i18n.yml │ ├── labeler.yml │ ├── scripts │ └── clear_fuzzy_entries.sh │ ├── sonar-pr.yaml │ └── sync-repos.yml ├── .gitignore ├── .gitleaks.toml ├── .readthedocs.yaml ├── .tekton ├── automation-hub-galaxy-ng-pull-request.yaml └── automation-hub-galaxy-ng-push.yaml ├── CHANGES.md ├── COMMITMENT ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── ansible.cfg ├── dev ├── common │ ├── DUMP_CONTAINER_ENV_VARS.sh │ ├── RUN_INTEGRATION.sh │ ├── RUN_INTEGRATION_STAGE.sh │ ├── RUN_PERFORMANCE.sh │ ├── RUN_PERFORMANCE_STAGE.sh │ ├── __init__.py │ ├── ansible-sign-pub.gpg │ ├── ansible-sign-pub.txt │ ├── ansible-sign.key │ ├── collection_sign.sh │ ├── container_auth_private_key.pem │ ├── container_auth_public_key.pem │ ├── container_sign.sh │ ├── dependency_bumper.py │ ├── docker-compose-ui.yaml │ ├── dynaconf_hooks.py │ ├── galaxy_ng.env │ ├── postgres.env │ ├── settings.py │ └── setup_test_data.py ├── compose │ ├── Dockerfile.dev │ ├── Dockerfile.nginx │ ├── README.md │ ├── aap.yaml │ ├── bin │ │ ├── README.md │ │ ├── devinstall │ │ ├── entr │ │ ├── reloader │ │ └── wait │ ├── certified-sync.yaml │ ├── community.yaml │ ├── dab │ │ ├── README.md │ │ └── schedule_resource_sync.sh │ ├── data │ │ └── insights-fixture.tar.gz │ ├── database │ │ ├── README.md │ │ └── database_fields.symmetric.key │ ├── insights.yaml │ ├── signing │ │ ├── README.md │ │ ├── keys │ │ │ ├── signing-public.key │ │ │ ├── signing-secret.key │ │ │ └── signing-secret.key.password.txt │ │ ├── scripts │ │ │ ├── collection_sign.sh │ │ │ └── container_sign.sh │ │ ├── setup_gpg_keys.sh │ │ ├── setup_gpg_workarounds.sh │ │ ├── setup_repo_keyring.sh │ │ └── setup_signing_services.sh │ └── standalone.yaml ├── ephemeral │ ├── create_keycloak_users.sh │ ├── patch_ephemeral.sh │ ├── run_tests.sh │ └── smoke_test.sh ├── galaxy_ansible │ └── RUN_INTEGRATION_GALAXY_STAGE_ANSIBLE.sh ├── galaxy_collection_plays │ ├── content.yml │ ├── ee.yml │ ├── galaxy.yml.j2 │ ├── repo.yml │ ├── user.yml │ └── vars.yml └── nginx │ ├── certified-sync │ ├── insights.conf │ └── standalone.conf │ └── nginx.conf ├── dev_requirements.txt ├── doc_requirements.txt ├── docker ├── bin │ ├── start-api │ ├── start-api-reload │ ├── start-content-app │ ├── start-worker │ ├── start-worker-reload │ ├── wait-for-migrations │ └── wait-for-tcp ├── entrypoint.sh └── etc │ └── settings.py ├── docs ├── community │ ├── administration.md │ ├── api_v3.md │ ├── devstack.md │ ├── overview.md │ └── userguide.md ├── config │ ├── collection_signing.md │ ├── container_signing.md │ ├── featureflags.md │ ├── options.md │ └── user_access.md ├── dev │ ├── developer_guide │ │ ├── data_models.md │ │ ├── diagrams │ │ │ ├── content-artifact-diagram.png │ │ │ ├── distrbution-content-relationship.png │ │ │ ├── example-system.png │ │ │ ├── model-diagrams.excalidraw │ │ │ ├── pulp-ansible.png │ │ │ ├── pulp-container.png │ │ │ ├── repository-content-relationship.png │ │ │ └── repository-remote-relationship.png │ │ ├── overview.md │ │ ├── rbac.md │ │ ├── rest_api.md │ │ └── services.md │ ├── docker_environment.md │ ├── getting_started.md │ ├── keyword_searching_explanation.md │ ├── tests │ │ ├── integration.md │ │ └── unit.md │ └── writing_docs.md ├── imgs │ ├── debug.png │ ├── favicon.ico │ ├── galaxy.svg │ ├── logo_large.svg │ └── medium.png ├── index.md ├── integration │ └── ldap.md ├── tags.md └── usage_guide │ ├── assets │ ├── add_remote_ee.png │ ├── approval.png │ ├── copy_download_cmd.png │ ├── deleting.png │ ├── edit_namespace.png │ ├── import_log.png │ ├── namespace_kebab.png │ ├── remote_registry.png │ ├── requirements_yaml_upload.png │ └── upload_collection.png │ ├── collections.md │ ├── execution_environments.md │ ├── installation.md │ └── rbac.md ├── flake8.cfg ├── functest_requirements.txt ├── galaxy-operator └── bin │ └── readyz.py ├── galaxy_ng ├── __init__.py ├── app │ ├── __init__.py │ ├── access_control │ │ ├── __init__.py │ │ ├── access_policy.py │ │ ├── fields.py │ │ ├── mixins.py │ │ └── statements │ │ │ ├── __init__.py │ │ │ ├── insights.py │ │ │ ├── legacy.py │ │ │ ├── pulp.py │ │ │ ├── roles.py │ │ │ └── standalone.py │ ├── api │ │ ├── __init__.py │ │ ├── base.py │ │ ├── exceptions.py │ │ ├── resource_api.py │ │ ├── ui │ │ │ ├── __init__.py │ │ │ ├── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── serializers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── collection.py │ │ │ │ │ ├── distribution.py │ │ │ │ │ ├── execution_environment.py │ │ │ │ │ ├── imports.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── synclist.py │ │ │ │ │ └── user.py │ │ │ │ ├── urls.py │ │ │ │ ├── versioning.py │ │ │ │ ├── views │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ai_index.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── feature_flags.py │ │ │ │ │ ├── index_execution_environments.py │ │ │ │ │ ├── landing_page.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── settings.py │ │ │ │ │ ├── signing.py │ │ │ │ │ └── sync.py │ │ │ │ └── viewsets │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── collection.py │ │ │ │ │ ├── distribution.py │ │ │ │ │ ├── execution_environment.py │ │ │ │ │ ├── group.py │ │ │ │ │ ├── my_namespace.py │ │ │ │ │ ├── my_synclist.py │ │ │ │ │ ├── namespace.py │ │ │ │ │ ├── root.py │ │ │ │ │ ├── synclist.py │ │ │ │ │ ├── tags.py │ │ │ │ │ └── user.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── filters.py │ │ │ │ ├── permissions.py │ │ │ │ ├── serializers.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ ├── urls.py │ │ ├── utils.py │ │ ├── v1 │ │ │ ├── __init__.py │ │ │ ├── filtersets.py │ │ │ ├── logutils.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── tasks.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ ├── views.py │ │ │ └── viewsets │ │ │ │ ├── __init__.py │ │ │ │ ├── namespaces.py │ │ │ │ ├── roles.py │ │ │ │ ├── sync.py │ │ │ │ ├── tasks.py │ │ │ │ └── users.py │ │ ├── v3 │ │ │ ├── __init__.py │ │ │ ├── serializers │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── execution_environment.py │ │ │ │ ├── group.py │ │ │ │ ├── namespace.py │ │ │ │ ├── sync.py │ │ │ │ └── task.py │ │ │ ├── urls.py │ │ │ ├── views │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── excludes.py │ │ │ │ ├── not_found.py │ │ │ │ └── sync.py │ │ │ └── viewsets │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── execution_environments.py │ │ │ │ ├── namespace.py │ │ │ │ ├── sync.py │ │ │ │ └── task.py │ │ └── views.py │ ├── auth │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── keycloak.py │ │ ├── ldap.py │ │ ├── session.py │ │ └── token_auth.py │ ├── common │ │ ├── __init__.py │ │ ├── metrics.py │ │ ├── openapi.py │ │ └── parsers.py │ ├── constants.py │ ├── dynaconf_hooks.py │ ├── dynamic_settings.py │ ├── exceptions.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── assign-permission.py │ │ │ ├── copy-owner-permissions.py │ │ │ ├── create-group.py │ │ │ ├── create-remote.py │ │ │ ├── create-user.py │ │ │ ├── delete-synclist-repos.py │ │ │ ├── delete-user.py │ │ │ ├── download-namespace-logos.py │ │ │ ├── dump-auth-config.py │ │ │ ├── galaxy-settings.py │ │ │ ├── import-galaxy-role.py │ │ │ ├── maintain-pe-group.py │ │ │ ├── manage-group-users.py │ │ │ ├── metrics-collection-automation-analytics.py │ │ │ ├── metrics-collection-lightspeed.py │ │ │ ├── populate-role-tags.py │ │ │ ├── purge-tasks.py │ │ │ ├── set-repo-keyring.py │ │ │ ├── set-retain-repo-versions.py │ │ │ ├── sync-collection-download-counts.py │ │ │ ├── sync-galaxy-collections.py │ │ │ ├── sync-galaxy-namespaces.py │ │ │ ├── sync-galaxy-roles.py │ │ │ ├── task-scheduler.py │ │ │ └── update-synclist-distros.py │ ├── metrics_collection │ │ ├── __init__.py │ │ ├── automation_analytics │ │ │ ├── __init__.py │ │ │ ├── collector.py │ │ │ ├── data.py │ │ │ └── package.py │ │ ├── collector.py │ │ ├── common_data.py │ │ └── lightspeed │ │ │ ├── __init__.py │ │ │ ├── collector.py │ │ │ ├── data.py │ │ │ └── package.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_synclist_20200330_squashed.py │ │ ├── 0003_inbound_repo_per_namespace.py │ │ ├── 0003_synclist_upstream_and_migrate.py │ │ ├── 0004_rbac.py │ │ ├── 0004_update_synclist_policy_names.py │ │ ├── 0005_merge_synclist_inbound.py │ │ ├── 0006_collectionsynctask.py │ │ ├── 0006_merge_synclist_rbac.py │ │ ├── 0007_merge_synclist.py │ │ ├── 0008_rename_default_repo.py │ │ ├── 0009_add_repoversion_to_inbound_repos.py │ │ ├── 0010_add_staging_rejected_repos.py │ │ ├── 0011_collection_import_task_id_fk.py │ │ ├── 0012_move_collections_by_certification.py │ │ ├── 0013_partner_engineer_group_migrations.py │ │ ├── 0014_containerdistribution.py │ │ ├── 0015_containerdistroreadme.py │ │ ├── 0016_containerregistryremote_containerregistryrepos_containersynctask.py │ │ ├── 0017_populate_repos_and_remotes.py │ │ ├── 0018_set_rate_limit_default.py │ │ ├── 0019_containernamespace.py │ │ ├── 0020_fix_last_sync_task_ordering.py │ │ ├── 0021_alter_user_first_name.py │ │ ├── 0022_enforce_retain_repo_versions.py │ │ ├── 0023_auto_20210903_1906.py │ │ ├── 0024_contentredirectcontentguard.py │ │ ├── 0025_add_content_guard_to_distributions.py │ │ ├── 0026_migrate_to_core_content_guard.py │ │ ├── 0027_delete_contentredirectcontentguard.py │ │ ├── 0028_update_synclist_model.py │ │ ├── 0029_move_perms_to_roles.py │ │ ├── 0030_update_collection_remote_rhcertified_url.py │ │ ├── 0031_legacynamespace_legacyrole.py │ │ ├── 0032_add_validated_repo.py │ │ ├── 0033_update_validated_repo.py │ │ ├── 0034_remove_inbound_repos.py │ │ ├── 0035_aiindexdenylist.py │ │ ├── 0036_repository_labels.py │ │ ├── 0037_pulp_ansible_permissions.py │ │ ├── 0038_namespace_sync.py │ │ ├── 0039_legacyroledownloadcount.py │ │ ├── 0040_fix_collection_remote_pulp_type.py │ │ ├── 0041_alter_containerregistryremote_remote_ptr.py │ │ ├── 0042_namespace_created_namespace_updated.py │ │ ├── 0043_legacyroletag_legacyrole_tags.py │ │ ├── 0044_legacyroleimport.py │ │ ├── 0045_setting.py │ │ ├── 0046_legacyrolesearchvector.py │ │ ├── 0047_update_role_search_vector_trigger.py │ │ ├── 0048_update_collection_remote_rhcertified_url.py │ │ ├── 0049_organization.py │ │ ├── 0050_organization_data.py │ │ ├── 0051_rename_created_modified.py │ │ ├── 0052_alter_organization_created_by_and_more.py │ │ ├── 0053_wait_for_dab_rbac.py │ │ ├── 0054_galaxy_role_defs_to_dab_defs.py │ │ ├── 0055_remove_organization_users_remove_team_users.py │ │ ├── 0056_set_retain_repo_versions_to_validated_repo.py │ │ ├── 0057_alter_organization_created_and_more.py │ │ ├── 0058_remove_galaxy_team_member_role.py │ │ ├── 0059_delete_system_auditor_role_definition.py │ │ ├── __init__.py │ │ ├── _dab_rbac.py │ │ └── squash_0012_move_collections_by_certification.py │ ├── models │ │ ├── __init__.py │ │ ├── aiindex.py │ │ ├── auth.py │ │ ├── collectionimport.py │ │ ├── config.py │ │ ├── container.py │ │ ├── namespace.py │ │ ├── organization.py │ │ └── synclist.py │ ├── pipelines.py │ ├── renderers.py │ ├── settings.py │ ├── signals │ │ ├── __init__.py │ │ └── handlers.py │ ├── static │ │ └── .gitignore │ ├── tasks │ │ ├── __init__.py │ │ ├── deletion.py │ │ ├── index_registry.py │ │ ├── namespaces.py │ │ ├── promotion.py │ │ ├── publishing.py │ │ ├── registry_sync.py │ │ ├── resource_sync.py │ │ ├── settings_cache.py │ │ └── signing.py │ ├── templates │ │ └── rest_framework │ │ │ └── login_base.html │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── galaxy.py │ │ ├── git.py │ │ ├── legacy.py │ │ ├── namespaces.py │ │ ├── rbac.py │ │ └── roles.py │ ├── views.py │ ├── viewsets.py │ └── webserver_snippets │ │ ├── __init__.py │ │ ├── apache.conf │ │ └── nginx.conf ├── contrib │ ├── __init__.py │ └── cloudwatch.py ├── locale │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh │ │ └── LC_MESSAGES │ │ └── django.po ├── openapi │ └── __init__.py ├── social │ ├── __init__.py │ └── pipeline │ │ ├── __init__.py │ │ └── user.py ├── tests │ ├── __init__.py │ ├── constants.py │ ├── integration │ │ ├── README.md │ │ ├── __init__.py │ │ ├── aap │ │ │ ├── __init__.py │ │ │ ├── test_aap_rbac.py │ │ │ ├── test_aap_user_management.py │ │ │ └── test_aap_user_migrations.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── rbac_actions │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── collection_rbac.py │ │ │ │ ├── exec_env.py │ │ │ │ ├── misc.py │ │ │ │ └── utils.py │ │ │ ├── test_aiindex.py │ │ │ ├── test_api_base.py │ │ │ ├── test_artifact_download.py │ │ │ ├── test_artifact_upload.py │ │ │ ├── test_auth.py │ │ │ ├── test_certified_sync.py │ │ │ ├── test_collection_delete.py │ │ │ ├── test_collection_signing.py │ │ │ ├── test_container_delete.py │ │ │ ├── test_container_push_update.py │ │ │ ├── test_container_signing.py │ │ │ ├── test_cross_repository_search.py │ │ │ ├── test_custom_repo_sync.py │ │ │ ├── test_galaxy_stage_ansible.py │ │ │ ├── test_groups.py │ │ │ ├── test_hubjwt.py │ │ │ ├── test_iqe_ldap.py │ │ │ ├── test_iqe_rbac.py │ │ │ ├── test_landing_page.py │ │ │ ├── test_ldap.py │ │ │ ├── test_load_data.py │ │ │ ├── test_locked_roles.py │ │ │ ├── test_move.py │ │ │ ├── test_namespace_management.py │ │ │ ├── test_openapi.py │ │ │ ├── test_private_repositories.py │ │ │ ├── test_pulp_api.py │ │ │ ├── test_rbac_on_repos.py │ │ │ ├── test_rbac_roles.py │ │ │ ├── test_remote_sync.py │ │ │ ├── test_repositories.py │ │ │ ├── test_repository_labels.py │ │ │ ├── test_sanity.py │ │ │ ├── test_sync_enhancement_endpoints.py │ │ │ ├── test_sync_stage.py │ │ │ ├── test_tasks.py │ │ │ ├── test_ui_namespace_owners.py │ │ │ ├── test_ui_paths.py │ │ │ ├── test_ui_paths_gateway.py │ │ │ ├── test_ui_v2_groups.py │ │ │ ├── test_ui_v2_teams.py │ │ │ ├── test_ui_v2_users.py │ │ │ ├── test_upload_concurrency.py │ │ │ ├── test_upload_to_custom_repos.py │ │ │ ├── test_v3_plugin_paths.py │ │ │ ├── test_verify_data.py │ │ │ └── test_x_repo_search.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── test_cli_flow.py │ │ │ ├── test_community_import_install.py │ │ │ ├── test_dependencies.py │ │ │ └── test_legacy_role_download_counts.py │ │ ├── community │ │ │ ├── __init__.py │ │ │ ├── test_community_api.py │ │ │ ├── test_community_cli.py │ │ │ ├── test_community_hijacking.py │ │ │ ├── test_community_namespace_rbac.py │ │ │ ├── test_role_edits.py │ │ │ ├── test_role_import_exceptions.py │ │ │ ├── test_role_import_overrides.py │ │ │ ├── test_role_mappings.py │ │ │ ├── test_search.py │ │ │ ├── test_v1_api.py │ │ │ ├── test_v1_namespaces.py │ │ │ └── test_v1_user_github_ids.py │ │ ├── conftest.py │ │ ├── constants.py │ │ ├── dab │ │ │ ├── __init__.py │ │ │ ├── test_dab_rbac.py │ │ │ ├── test_dab_rbac_contract.py │ │ │ ├── test_dab_rbac_pagination.py │ │ │ ├── test_disable_shared_resources.py │ │ │ ├── test_feature_flags.py │ │ │ ├── test_migration_fake_model_fix.py │ │ │ ├── test_system_auditor.py │ │ │ ├── test_ui_v2.py │ │ │ └── test_url_resolution.py │ │ ├── load_data.yaml │ │ ├── package │ │ │ ├── __init__.py │ │ │ └── test_package_install.py │ │ ├── schemas.py │ │ ├── ui │ │ │ └── __init__.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── client_ansible_galaxy_cli.py │ │ │ ├── client_ansible_lib.py │ │ │ ├── client_social_github.py │ │ │ ├── client_ui.py │ │ │ ├── collection_inspector.py │ │ │ ├── collection_utils.py │ │ │ ├── errors.py │ │ │ ├── github.py │ │ │ ├── gpg │ │ │ ├── __init__.py │ │ │ ├── collection_sign.sh │ │ │ └── qe-sign-priv.gpg │ │ │ ├── iqe_utils.py │ │ │ ├── ldap.py │ │ │ ├── legacy.py │ │ │ ├── namespaces.py │ │ │ ├── podman.py │ │ │ ├── pulp_interfaces.py │ │ │ ├── rbac_utils.py │ │ │ ├── repo_management_utils.py │ │ │ ├── signatures.py │ │ │ ├── sync.py │ │ │ ├── tasks.py │ │ │ ├── teams.py │ │ │ ├── tools.py │ │ │ ├── urls.py │ │ │ ├── users.py │ │ │ └── vault_loading.py │ ├── performance │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── constants.py │ │ └── test_performance.py │ └── unit │ │ ├── README.md │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ ├── base.py │ │ ├── rh_auth.py │ │ ├── synclist_base.py │ │ ├── test_api_dab_feature_flags.py │ │ ├── test_api_ui_auth_views.py │ │ ├── test_api_ui_collection_viewsets.py │ │ ├── test_api_ui_container_registry_remote.py │ │ ├── test_api_ui_container_remote.py │ │ ├── test_api_ui_controller_list.py │ │ ├── test_api_ui_distributions.py │ │ ├── test_api_ui_feature_flags.py │ │ ├── test_api_ui_my_synclists.py │ │ ├── test_api_ui_settings.py │ │ ├── test_api_ui_sync_config.py │ │ ├── test_api_ui_synclists.py │ │ ├── test_api_ui_user_viewsets.py │ │ ├── test_api_ui_v2_groups.py │ │ ├── test_api_ui_v2_teams.py │ │ ├── test_api_v3_auth_views.py │ │ ├── test_api_v3_collections.py │ │ ├── test_api_v3_namespace_viewsets.py │ │ ├── test_api_v3_tasks.py │ │ ├── test_auth_openapi.py │ │ ├── test_collectionremotes.py │ │ ├── test_localization.py │ │ └── test_view_only_access.py │ │ ├── app │ │ ├── __init__.py │ │ ├── api │ │ │ ├── ui │ │ │ │ ├── __init__.py │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── views │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_search.py │ │ │ │ │ └── test_signing.py │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ └── test_tasks.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── test_keycloak.py │ │ │ ├── test_ldap.py │ │ │ └── test_token.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── test_openapi.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── analytics │ │ │ │ ├── __init__.py │ │ │ │ └── automation_analytics │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_collector.py │ │ │ │ │ └── test_data.py │ │ │ │ ├── test_assign_permission.py │ │ │ │ ├── test_change_password.py │ │ │ │ ├── test_community_commands.py │ │ │ │ ├── test_create_group.py │ │ │ │ ├── test_create_remote.py │ │ │ │ ├── test_create_user.py │ │ │ │ ├── test_delete_user.py │ │ │ │ ├── test_dump_auth_config.py │ │ │ │ ├── test_metrics_collection_lightspeed.py │ │ │ │ ├── test_populate_role_tags_commands.py │ │ │ │ ├── test_purge_tasks.py │ │ │ │ ├── test_set_retain_repo_versions.py │ │ │ │ └── test_task_scheduler.py │ │ ├── metrics_collection │ │ │ ├── __init__.py │ │ │ └── automation_analytics │ │ │ │ ├── __init__.py │ │ │ │ └── test_data.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── test_index_registry.py │ │ │ ├── test_namespaces.py │ │ │ ├── test_promotion.py │ │ │ └── test_resource_sync.py │ │ ├── test_app_auth.py │ │ ├── test_dynaconf_hooks.py │ │ ├── test_insights_access_policy.py │ │ ├── test_pipelines.py │ │ ├── test_role_permissions_in_constants.py │ │ ├── test_tasks.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── test_galaxy.py │ │ │ ├── test_git.py │ │ │ ├── test_legacy.py │ │ │ ├── test_namespaces.py │ │ │ ├── test_rbac.py │ │ │ └── test_roles.py │ │ ├── contrib │ │ └── __init__.py │ │ ├── migrations │ │ ├── __init__.py │ │ ├── test_0028_update_synclist_model.py │ │ ├── test_0029_move_perms_to_roles.py │ │ ├── test_0030_update_collection_remote_rhcertified_url.py │ │ ├── test_0048_update_collection_remote_rhcertified_url.py │ │ ├── test_0054_migrate_role_assignments.py │ │ ├── test_0059_delete_system_auditor_role_definition.py │ │ └── test_galaxy_team_member_role_transition.py │ │ ├── signals │ │ ├── __init__.py │ │ ├── test_handlers.py │ │ └── test_team_member_role_handlers.py │ │ ├── test_models.py │ │ └── test_settings.py └── ui │ ├── __init__.py │ └── urls.py ├── integration_requirements.txt ├── lint_requirements.txt ├── mkdocs.yml ├── openshift ├── clowder │ ├── clowd-app.yaml │ ├── clowd-environment.yaml │ ├── deploy-acceptance.yaml │ └── run-job.yaml └── database-migration.yaml ├── pr_check.sh ├── profiles ├── community │ ├── galaxy-importer │ │ └── galaxy-importer.cfg │ └── github_mock │ │ ├── Dockerfile │ │ ├── flaskapp.py │ │ └── requirements.txt ├── dab │ ├── README.md │ ├── make_test_data.py │ └── run_integration.sh ├── dab_jwt │ ├── README.md │ ├── proxy │ │ ├── .air.toml │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ ├── proxy.go │ │ ├── proxy_default_data.go │ │ ├── proxy_functions.go │ │ ├── proxy_handler_auth.go │ │ ├── proxy_handler_jwt.go │ │ ├── proxy_handler_orgs.go │ │ ├── proxy_handler_roles.go │ │ ├── proxy_handler_teams.go │ │ ├── proxy_handler_users.go │ │ ├── proxy_service_index_client.go │ │ ├── proxy_types.go │ │ └── tmp │ │ │ └── main │ └── run_integration.sh ├── insights │ ├── README.md │ ├── galaxy-importer │ │ └── galaxy-importer.cfg │ └── proxy │ │ ├── Dockerfile │ │ └── main.go └── keycloak │ ├── README.md │ ├── community-general-5.7.0.tar.gz │ └── keycloak-playbook.yaml ├── pyproject.toml ├── requirements ├── requirements.common.txt ├── requirements.dev.txt ├── requirements.insights.in ├── requirements.insights.txt ├── requirements.shipit.txt ├── requirements.standalone.in └── requirements.standalone.txt ├── setup.py ├── sonar-project.properties ├── tox.ini └── unittest_requirements.txt /.ci/scripts/check_gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.ci/scripts/check_gettext.sh -------------------------------------------------------------------------------- /.ci/scripts/get_dab_for_pr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.ci/scripts/get_dab_for_pr.py -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | setup.py @ansible-automation-platform/pde-admin 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/patchback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/patchback.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/backported-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/backported-labels.yml -------------------------------------------------------------------------------- /.github/workflows/block-prs-to-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/block-prs-to-master.yml -------------------------------------------------------------------------------- /.github/workflows/ci-docker-compose-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/ci-docker-compose-integration.yml -------------------------------------------------------------------------------- /.github/workflows/ci_automation_hub_collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/ci_automation_hub_collection.yml -------------------------------------------------------------------------------- /.github/workflows/ci_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/ci_full.yml -------------------------------------------------------------------------------- /.github/workflows/i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/i18n.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/clear_fuzzy_entries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/scripts/clear_fuzzy_entries.sh -------------------------------------------------------------------------------- /.github/workflows/sonar-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/sonar-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.github/workflows/sync-repos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.tekton/automation-hub-galaxy-ng-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.tekton/automation-hub-galaxy-ng-pull-request.yaml -------------------------------------------------------------------------------- /.tekton/automation-hub-galaxy-ng-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/.tekton/automation-hub-galaxy-ng-push.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/CHANGES.md -------------------------------------------------------------------------------- /COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/COMMITMENT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/ansible.cfg -------------------------------------------------------------------------------- /dev/common/DUMP_CONTAINER_ENV_VARS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/DUMP_CONTAINER_ENV_VARS.sh -------------------------------------------------------------------------------- /dev/common/RUN_INTEGRATION.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/RUN_INTEGRATION.sh -------------------------------------------------------------------------------- /dev/common/RUN_INTEGRATION_STAGE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/RUN_INTEGRATION_STAGE.sh -------------------------------------------------------------------------------- /dev/common/RUN_PERFORMANCE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/RUN_PERFORMANCE.sh -------------------------------------------------------------------------------- /dev/common/RUN_PERFORMANCE_STAGE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/RUN_PERFORMANCE_STAGE.sh -------------------------------------------------------------------------------- /dev/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/common/ansible-sign-pub.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/ansible-sign-pub.gpg -------------------------------------------------------------------------------- /dev/common/ansible-sign-pub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/ansible-sign-pub.txt -------------------------------------------------------------------------------- /dev/common/ansible-sign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/ansible-sign.key -------------------------------------------------------------------------------- /dev/common/collection_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/collection_sign.sh -------------------------------------------------------------------------------- /dev/common/container_auth_private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/container_auth_private_key.pem -------------------------------------------------------------------------------- /dev/common/container_auth_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/container_auth_public_key.pem -------------------------------------------------------------------------------- /dev/common/container_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/container_sign.sh -------------------------------------------------------------------------------- /dev/common/dependency_bumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/dependency_bumper.py -------------------------------------------------------------------------------- /dev/common/docker-compose-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/docker-compose-ui.yaml -------------------------------------------------------------------------------- /dev/common/dynaconf_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/dynaconf_hooks.py -------------------------------------------------------------------------------- /dev/common/galaxy_ng.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/galaxy_ng.env -------------------------------------------------------------------------------- /dev/common/postgres.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/postgres.env -------------------------------------------------------------------------------- /dev/common/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/settings.py -------------------------------------------------------------------------------- /dev/common/setup_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/common/setup_test_data.py -------------------------------------------------------------------------------- /dev/compose/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/Dockerfile.dev -------------------------------------------------------------------------------- /dev/compose/Dockerfile.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/Dockerfile.nginx -------------------------------------------------------------------------------- /dev/compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/README.md -------------------------------------------------------------------------------- /dev/compose/aap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/aap.yaml -------------------------------------------------------------------------------- /dev/compose/bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/bin/README.md -------------------------------------------------------------------------------- /dev/compose/bin/devinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/bin/devinstall -------------------------------------------------------------------------------- /dev/compose/bin/entr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/bin/entr -------------------------------------------------------------------------------- /dev/compose/bin/reloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/bin/reloader -------------------------------------------------------------------------------- /dev/compose/bin/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/bin/wait -------------------------------------------------------------------------------- /dev/compose/certified-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/certified-sync.yaml -------------------------------------------------------------------------------- /dev/compose/community.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/community.yaml -------------------------------------------------------------------------------- /dev/compose/dab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/dab/README.md -------------------------------------------------------------------------------- /dev/compose/dab/schedule_resource_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/dab/schedule_resource_sync.sh -------------------------------------------------------------------------------- /dev/compose/data/insights-fixture.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/data/insights-fixture.tar.gz -------------------------------------------------------------------------------- /dev/compose/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/database/README.md -------------------------------------------------------------------------------- /dev/compose/database/database_fields.symmetric.key: -------------------------------------------------------------------------------- 1 | DNmNdwgyZugTax9S64J0FITTr9IHPxbuoF1F1CGPr68= 2 | -------------------------------------------------------------------------------- /dev/compose/insights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/insights.yaml -------------------------------------------------------------------------------- /dev/compose/signing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/README.md -------------------------------------------------------------------------------- /dev/compose/signing/keys/signing-public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/keys/signing-public.key -------------------------------------------------------------------------------- /dev/compose/signing/keys/signing-secret.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/keys/signing-secret.key -------------------------------------------------------------------------------- /dev/compose/signing/keys/signing-secret.key.password.txt: -------------------------------------------------------------------------------- 1 | Galaxy2024 2 | -------------------------------------------------------------------------------- /dev/compose/signing/scripts/collection_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/scripts/collection_sign.sh -------------------------------------------------------------------------------- /dev/compose/signing/scripts/container_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/scripts/container_sign.sh -------------------------------------------------------------------------------- /dev/compose/signing/setup_gpg_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/setup_gpg_keys.sh -------------------------------------------------------------------------------- /dev/compose/signing/setup_gpg_workarounds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/setup_gpg_workarounds.sh -------------------------------------------------------------------------------- /dev/compose/signing/setup_repo_keyring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/setup_repo_keyring.sh -------------------------------------------------------------------------------- /dev/compose/signing/setup_signing_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/signing/setup_signing_services.sh -------------------------------------------------------------------------------- /dev/compose/standalone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/compose/standalone.yaml -------------------------------------------------------------------------------- /dev/ephemeral/create_keycloak_users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/ephemeral/create_keycloak_users.sh -------------------------------------------------------------------------------- /dev/ephemeral/patch_ephemeral.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/ephemeral/patch_ephemeral.sh -------------------------------------------------------------------------------- /dev/ephemeral/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/ephemeral/run_tests.sh -------------------------------------------------------------------------------- /dev/ephemeral/smoke_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/ephemeral/smoke_test.sh -------------------------------------------------------------------------------- /dev/galaxy_ansible/RUN_INTEGRATION_GALAXY_STAGE_ANSIBLE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_ansible/RUN_INTEGRATION_GALAXY_STAGE_ANSIBLE.sh -------------------------------------------------------------------------------- /dev/galaxy_collection_plays/content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_collection_plays/content.yml -------------------------------------------------------------------------------- /dev/galaxy_collection_plays/ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_collection_plays/ee.yml -------------------------------------------------------------------------------- /dev/galaxy_collection_plays/galaxy.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_collection_plays/galaxy.yml.j2 -------------------------------------------------------------------------------- /dev/galaxy_collection_plays/repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_collection_plays/repo.yml -------------------------------------------------------------------------------- /dev/galaxy_collection_plays/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_collection_plays/user.yml -------------------------------------------------------------------------------- /dev/galaxy_collection_plays/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/galaxy_collection_plays/vars.yml -------------------------------------------------------------------------------- /dev/nginx/certified-sync/insights.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/nginx/certified-sync/insights.conf -------------------------------------------------------------------------------- /dev/nginx/certified-sync/standalone.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/nginx/certified-sync/standalone.conf -------------------------------------------------------------------------------- /dev/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev/nginx/nginx.conf -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /doc_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/doc_requirements.txt -------------------------------------------------------------------------------- /docker/bin/start-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/start-api -------------------------------------------------------------------------------- /docker/bin/start-api-reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/start-api-reload -------------------------------------------------------------------------------- /docker/bin/start-content-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/start-content-app -------------------------------------------------------------------------------- /docker/bin/start-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/start-worker -------------------------------------------------------------------------------- /docker/bin/start-worker-reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/start-worker-reload -------------------------------------------------------------------------------- /docker/bin/wait-for-migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/wait-for-migrations -------------------------------------------------------------------------------- /docker/bin/wait-for-tcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/bin/wait-for-tcp -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/etc/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docker/etc/settings.py -------------------------------------------------------------------------------- /docs/community/administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/community/administration.md -------------------------------------------------------------------------------- /docs/community/api_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/community/api_v3.md -------------------------------------------------------------------------------- /docs/community/devstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/community/devstack.md -------------------------------------------------------------------------------- /docs/community/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/community/overview.md -------------------------------------------------------------------------------- /docs/community/userguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/community/userguide.md -------------------------------------------------------------------------------- /docs/config/collection_signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/config/collection_signing.md -------------------------------------------------------------------------------- /docs/config/container_signing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/config/container_signing.md -------------------------------------------------------------------------------- /docs/config/featureflags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/config/featureflags.md -------------------------------------------------------------------------------- /docs/config/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/config/options.md -------------------------------------------------------------------------------- /docs/config/user_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/config/user_access.md -------------------------------------------------------------------------------- /docs/dev/developer_guide/data_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/data_models.md -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/content-artifact-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/content-artifact-diagram.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/distrbution-content-relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/distrbution-content-relationship.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/example-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/example-system.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/model-diagrams.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/model-diagrams.excalidraw -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/pulp-ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/pulp-ansible.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/pulp-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/pulp-container.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/repository-content-relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/repository-content-relationship.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/diagrams/repository-remote-relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/diagrams/repository-remote-relationship.png -------------------------------------------------------------------------------- /docs/dev/developer_guide/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/overview.md -------------------------------------------------------------------------------- /docs/dev/developer_guide/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/rbac.md -------------------------------------------------------------------------------- /docs/dev/developer_guide/rest_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/rest_api.md -------------------------------------------------------------------------------- /docs/dev/developer_guide/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/developer_guide/services.md -------------------------------------------------------------------------------- /docs/dev/docker_environment.md: -------------------------------------------------------------------------------- 1 | ../../dev/compose/README.md -------------------------------------------------------------------------------- /docs/dev/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/getting_started.md -------------------------------------------------------------------------------- /docs/dev/keyword_searching_explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/keyword_searching_explanation.md -------------------------------------------------------------------------------- /docs/dev/tests/integration.md: -------------------------------------------------------------------------------- 1 | ../../../galaxy_ng/tests/integration/README.md -------------------------------------------------------------------------------- /docs/dev/tests/unit.md: -------------------------------------------------------------------------------- 1 | ../../../galaxy_ng/tests/unit/README.md -------------------------------------------------------------------------------- /docs/dev/writing_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/dev/writing_docs.md -------------------------------------------------------------------------------- /docs/imgs/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/imgs/debug.png -------------------------------------------------------------------------------- /docs/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/imgs/favicon.ico -------------------------------------------------------------------------------- /docs/imgs/galaxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/imgs/galaxy.svg -------------------------------------------------------------------------------- /docs/imgs/logo_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/imgs/logo_large.svg -------------------------------------------------------------------------------- /docs/imgs/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/imgs/medium.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/integration/ldap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/integration/ldap.md -------------------------------------------------------------------------------- /docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/tags.md -------------------------------------------------------------------------------- /docs/usage_guide/assets/add_remote_ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/add_remote_ee.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/approval.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/copy_download_cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/copy_download_cmd.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/deleting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/deleting.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/edit_namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/edit_namespace.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/import_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/import_log.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/namespace_kebab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/namespace_kebab.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/remote_registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/remote_registry.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/requirements_yaml_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/requirements_yaml_upload.png -------------------------------------------------------------------------------- /docs/usage_guide/assets/upload_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/assets/upload_collection.png -------------------------------------------------------------------------------- /docs/usage_guide/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/collections.md -------------------------------------------------------------------------------- /docs/usage_guide/execution_environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/execution_environments.md -------------------------------------------------------------------------------- /docs/usage_guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/installation.md -------------------------------------------------------------------------------- /docs/usage_guide/rbac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/docs/usage_guide/rbac.md -------------------------------------------------------------------------------- /flake8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/flake8.cfg -------------------------------------------------------------------------------- /functest_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/functest_requirements.txt -------------------------------------------------------------------------------- /galaxy-operator/bin/readyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy-operator/bin/readyz.py -------------------------------------------------------------------------------- /galaxy_ng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/access_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/access_policy.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/fields.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/mixins.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/statements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/statements/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/statements/insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/statements/insights.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/statements/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/statements/legacy.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/statements/pulp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/statements/pulp.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/statements/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/statements/roles.py -------------------------------------------------------------------------------- /galaxy_ng/app/access_control/statements/standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/access_control/statements/standalone.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/base.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/exceptions.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/resource_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/resource_api.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/auth.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/base.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/collection.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/distribution.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/execution_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/execution_environment.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/imports.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/search.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/synclist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/synclist.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/serializers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/serializers/user.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/urls.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/versioning.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/ai_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/ai_index.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/auth.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/controller.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/feature_flags.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/index_execution_environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/index_execution_environments.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/landing_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/landing_page.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/search.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/settings.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/signing.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/views/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/views/sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/collection.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/distribution.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/execution_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/execution_environment.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/group.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/my_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/my_namespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/my_synclist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/my_synclist.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/namespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/root.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/synclist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/synclist.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/tags.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v1/viewsets/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v1/viewsets/user.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v2/filters.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v2/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v2/permissions.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v2/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v2/serializers.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v2/urls.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/ui/v2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/ui/v2/views.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/urls.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/utils.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/filtersets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/filtersets.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/logutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/logutils.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/models.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/serializers.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/tasks.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/urls.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/utils.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/views.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/viewsets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/viewsets/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/viewsets/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/viewsets/namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/viewsets/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/viewsets/roles.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/viewsets/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/viewsets/sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/viewsets/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/viewsets/tasks.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v1/viewsets/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v1/viewsets/users.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/collection.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/execution_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/execution_environment.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/group.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/namespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/serializers/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/serializers/task.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/urls.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/views/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/views/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/views/auth.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/views/excludes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/views/excludes.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/views/not_found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/views/not_found.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/views/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/views/sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/viewsets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/viewsets/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/viewsets/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/viewsets/collection.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/viewsets/execution_environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/viewsets/execution_environments.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/viewsets/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/viewsets/namespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/viewsets/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/viewsets/sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/v3/viewsets/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/v3/viewsets/task.py -------------------------------------------------------------------------------- /galaxy_ng/app/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/api/views.py -------------------------------------------------------------------------------- /galaxy_ng/app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/auth/auth.py -------------------------------------------------------------------------------- /galaxy_ng/app/auth/keycloak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/auth/keycloak.py -------------------------------------------------------------------------------- /galaxy_ng/app/auth/ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/auth/ldap.py -------------------------------------------------------------------------------- /galaxy_ng/app/auth/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/auth/session.py -------------------------------------------------------------------------------- /galaxy_ng/app/auth/token_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/auth/token_auth.py -------------------------------------------------------------------------------- /galaxy_ng/app/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/common/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/common/metrics.py -------------------------------------------------------------------------------- /galaxy_ng/app/common/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/common/openapi.py -------------------------------------------------------------------------------- /galaxy_ng/app/common/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/common/parsers.py -------------------------------------------------------------------------------- /galaxy_ng/app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/constants.py -------------------------------------------------------------------------------- /galaxy_ng/app/dynaconf_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/dynaconf_hooks.py -------------------------------------------------------------------------------- /galaxy_ng/app/dynamic_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/dynamic_settings.py -------------------------------------------------------------------------------- /galaxy_ng/app/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/exceptions.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/assign-permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/assign-permission.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/copy-owner-permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/copy-owner-permissions.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/create-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/create-group.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/create-remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/create-remote.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/create-user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/create-user.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/delete-synclist-repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/delete-synclist-repos.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/delete-user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/delete-user.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/download-namespace-logos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/download-namespace-logos.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/dump-auth-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/dump-auth-config.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/galaxy-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/galaxy-settings.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/import-galaxy-role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/import-galaxy-role.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/maintain-pe-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/maintain-pe-group.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/manage-group-users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/manage-group-users.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/metrics-collection-automation-analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/metrics-collection-automation-analytics.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/metrics-collection-lightspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/metrics-collection-lightspeed.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/populate-role-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/populate-role-tags.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/purge-tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/purge-tasks.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/set-repo-keyring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/set-repo-keyring.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/set-retain-repo-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/set-retain-repo-versions.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/sync-collection-download-counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/sync-collection-download-counts.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/sync-galaxy-collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/sync-galaxy-collections.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/sync-galaxy-namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/sync-galaxy-namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/sync-galaxy-roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/sync-galaxy-roles.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/task-scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/task-scheduler.py -------------------------------------------------------------------------------- /galaxy_ng/app/management/commands/update-synclist-distros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/management/commands/update-synclist-distros.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/automation_analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/automation_analytics/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/automation_analytics/collector.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/automation_analytics/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/automation_analytics/data.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/automation_analytics/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/automation_analytics/package.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/collector.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/common_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/common_data.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/lightspeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/lightspeed/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/lightspeed/collector.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/lightspeed/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/lightspeed/data.py -------------------------------------------------------------------------------- /galaxy_ng/app/metrics_collection/lightspeed/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/metrics_collection/lightspeed/package.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0002_add_synclist_20200330_squashed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0002_add_synclist_20200330_squashed.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0003_inbound_repo_per_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0003_inbound_repo_per_namespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0003_synclist_upstream_and_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0003_synclist_upstream_and_migrate.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0004_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0004_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0004_update_synclist_policy_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0004_update_synclist_policy_names.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0005_merge_synclist_inbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0005_merge_synclist_inbound.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0006_collectionsynctask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0006_collectionsynctask.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0006_merge_synclist_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0006_merge_synclist_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0007_merge_synclist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0007_merge_synclist.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0008_rename_default_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0008_rename_default_repo.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0009_add_repoversion_to_inbound_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0009_add_repoversion_to_inbound_repos.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0010_add_staging_rejected_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0010_add_staging_rejected_repos.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0011_collection_import_task_id_fk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0011_collection_import_task_id_fk.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0012_move_collections_by_certification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0012_move_collections_by_certification.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0013_partner_engineer_group_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0013_partner_engineer_group_migrations.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0014_containerdistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0014_containerdistribution.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0015_containerdistroreadme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0015_containerdistroreadme.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0016_containerregistryremote_containerregistryrepos_containersynctask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0016_containerregistryremote_containerregistryrepos_containersynctask.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0017_populate_repos_and_remotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0017_populate_repos_and_remotes.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0018_set_rate_limit_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0018_set_rate_limit_default.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0019_containernamespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0019_containernamespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0020_fix_last_sync_task_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0020_fix_last_sync_task_ordering.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0021_alter_user_first_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0021_alter_user_first_name.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0022_enforce_retain_repo_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0022_enforce_retain_repo_versions.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0023_auto_20210903_1906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0023_auto_20210903_1906.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0024_contentredirectcontentguard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0024_contentredirectcontentguard.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0025_add_content_guard_to_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0025_add_content_guard_to_distributions.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0026_migrate_to_core_content_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0026_migrate_to_core_content_guard.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0027_delete_contentredirectcontentguard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0027_delete_contentredirectcontentguard.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0028_update_synclist_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0028_update_synclist_model.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0029_move_perms_to_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0029_move_perms_to_roles.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0030_update_collection_remote_rhcertified_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0030_update_collection_remote_rhcertified_url.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0031_legacynamespace_legacyrole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0031_legacynamespace_legacyrole.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0032_add_validated_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0032_add_validated_repo.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0033_update_validated_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0033_update_validated_repo.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0034_remove_inbound_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0034_remove_inbound_repos.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0035_aiindexdenylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0035_aiindexdenylist.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0036_repository_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0036_repository_labels.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0037_pulp_ansible_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0037_pulp_ansible_permissions.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0038_namespace_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0038_namespace_sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0039_legacyroledownloadcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0039_legacyroledownloadcount.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0040_fix_collection_remote_pulp_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0040_fix_collection_remote_pulp_type.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0041_alter_containerregistryremote_remote_ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0041_alter_containerregistryremote_remote_ptr.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0042_namespace_created_namespace_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0042_namespace_created_namespace_updated.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0043_legacyroletag_legacyrole_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0043_legacyroletag_legacyrole_tags.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0044_legacyroleimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0044_legacyroleimport.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0045_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0045_setting.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0046_legacyrolesearchvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0046_legacyrolesearchvector.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0047_update_role_search_vector_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0047_update_role_search_vector_trigger.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0048_update_collection_remote_rhcertified_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0048_update_collection_remote_rhcertified_url.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0049_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0049_organization.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0050_organization_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0050_organization_data.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0051_rename_created_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0051_rename_created_modified.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0052_alter_organization_created_by_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0052_alter_organization_created_by_and_more.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0053_wait_for_dab_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0053_wait_for_dab_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0054_galaxy_role_defs_to_dab_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0054_galaxy_role_defs_to_dab_defs.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0055_remove_organization_users_remove_team_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0055_remove_organization_users_remove_team_users.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0056_set_retain_repo_versions_to_validated_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0056_set_retain_repo_versions_to_validated_repo.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0057_alter_organization_created_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0057_alter_organization_created_and_more.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0058_remove_galaxy_team_member_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0058_remove_galaxy_team_member_role.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/0059_delete_system_auditor_role_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/0059_delete_system_auditor_role_definition.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/_dab_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/_dab_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/app/migrations/squash_0012_move_collections_by_certification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/migrations/squash_0012_move_collections_by_certification.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/aiindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/aiindex.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/auth.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/collectionimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/collectionimport.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/config.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/container.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/namespace.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/organization.py -------------------------------------------------------------------------------- /galaxy_ng/app/models/synclist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/models/synclist.py -------------------------------------------------------------------------------- /galaxy_ng/app/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/pipelines.py -------------------------------------------------------------------------------- /galaxy_ng/app/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/renderers.py -------------------------------------------------------------------------------- /galaxy_ng/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/settings.py -------------------------------------------------------------------------------- /galaxy_ng/app/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/signals/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/signals/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/signals/handlers.py -------------------------------------------------------------------------------- /galaxy_ng/app/static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/deletion.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/index_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/index_registry.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/promotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/promotion.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/publishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/publishing.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/registry_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/registry_sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/resource_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/resource_sync.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/settings_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/settings_cache.py -------------------------------------------------------------------------------- /galaxy_ng/app/tasks/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/tasks/signing.py -------------------------------------------------------------------------------- /galaxy_ng/app/templates/rest_framework/login_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/templates/rest_framework/login_base.html -------------------------------------------------------------------------------- /galaxy_ng/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/urls.py -------------------------------------------------------------------------------- /galaxy_ng/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/utils/galaxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/utils/galaxy.py -------------------------------------------------------------------------------- /galaxy_ng/app/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/utils/git.py -------------------------------------------------------------------------------- /galaxy_ng/app/utils/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/utils/legacy.py -------------------------------------------------------------------------------- /galaxy_ng/app/utils/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/utils/namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/app/utils/rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/utils/rbac.py -------------------------------------------------------------------------------- /galaxy_ng/app/utils/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/utils/roles.py -------------------------------------------------------------------------------- /galaxy_ng/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/views.py -------------------------------------------------------------------------------- /galaxy_ng/app/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/viewsets.py -------------------------------------------------------------------------------- /galaxy_ng/app/webserver_snippets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/app/webserver_snippets/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/webserver_snippets/apache.conf -------------------------------------------------------------------------------- /galaxy_ng/app/webserver_snippets/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/app/webserver_snippets/nginx.conf -------------------------------------------------------------------------------- /galaxy_ng/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/contrib/cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/contrib/cloudwatch.py -------------------------------------------------------------------------------- /galaxy_ng/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /galaxy_ng/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /galaxy_ng/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /galaxy_ng/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /galaxy_ng/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /galaxy_ng/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /galaxy_ng/openapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/openapi/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/social/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/social/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/social/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/social/pipeline/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/social/pipeline/user.py -------------------------------------------------------------------------------- /galaxy_ng/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/constants.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/README.md -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/aap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/aap/test_aap_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/aap/test_aap_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/aap/test_aap_user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/aap/test_aap_user_management.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/aap/test_aap_user_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/aap/test_aap_user_migrations.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/rbac_actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/rbac_actions/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/rbac_actions/auth.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/rbac_actions/collection_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/rbac_actions/collection_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/rbac_actions/exec_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/rbac_actions/exec_env.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/rbac_actions/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/rbac_actions/misc.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/rbac_actions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/rbac_actions/utils.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_aiindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_aiindex.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_api_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_api_base.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_artifact_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_artifact_download.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_artifact_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_artifact_upload.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_auth.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_certified_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_certified_sync.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_collection_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_collection_delete.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_collection_signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_collection_signing.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_container_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_container_delete.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_container_push_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_container_push_update.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_container_signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_container_signing.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_cross_repository_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_cross_repository_search.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_custom_repo_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_custom_repo_sync.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_galaxy_stage_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_galaxy_stage_ansible.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_groups.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_hubjwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_hubjwt.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_iqe_ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_iqe_ldap.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_iqe_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_iqe_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_landing_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_landing_page.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ldap.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_load_data.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_locked_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_locked_roles.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_move.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_namespace_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_namespace_management.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_openapi.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_private_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_private_repositories.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_pulp_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_pulp_api.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_rbac_on_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_rbac_on_repos.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_rbac_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_rbac_roles.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_remote_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_remote_sync.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_repositories.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_repository_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_repository_labels.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_sanity.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_sync_enhancement_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_sync_enhancement_endpoints.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_sync_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_sync_stage.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_tasks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ui_namespace_owners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ui_namespace_owners.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ui_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ui_paths.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ui_paths_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ui_paths_gateway.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ui_v2_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ui_v2_groups.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ui_v2_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ui_v2_teams.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_ui_v2_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_ui_v2_users.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_upload_concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_upload_concurrency.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_upload_to_custom_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_upload_to_custom_repos.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_v3_plugin_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_v3_plugin_paths.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_verify_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_verify_data.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/api/test_x_repo_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/api/test_x_repo_search.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/cli/test_cli_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/cli/test_cli_flow.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/cli/test_community_import_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/cli/test_community_import_install.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/cli/test_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/cli/test_dependencies.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/cli/test_legacy_role_download_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/cli/test_legacy_role_download_counts.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_community_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_community_api.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_community_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_community_cli.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_community_hijacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_community_hijacking.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_community_namespace_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_community_namespace_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_role_edits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_role_edits.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_role_import_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_role_import_exceptions.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_role_import_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_role_import_overrides.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_role_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_role_mappings.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_search.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_v1_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_v1_api.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_v1_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_v1_namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/community/test_v1_user_github_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/community/test_v1_user_github_ids.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/conftest.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/constants.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_dab_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_dab_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_dab_rbac_contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_dab_rbac_contract.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_dab_rbac_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_dab_rbac_pagination.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_disable_shared_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_disable_shared_resources.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_feature_flags.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_migration_fake_model_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_migration_fake_model_fix.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_system_auditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_system_auditor.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_ui_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_ui_v2.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/dab/test_url_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/dab/test_url_resolution.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/load_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/load_data.yaml -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/package/test_package_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/package/test_package_install.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/schemas.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/__init__.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/client_ansible_galaxy_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/client_ansible_galaxy_cli.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/client_ansible_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/client_ansible_lib.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/client_social_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/client_social_github.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/client_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/client_ui.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/collection_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/collection_inspector.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/collection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/collection_utils.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/errors.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/github.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/gpg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/gpg/collection_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/gpg/collection_sign.sh -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/gpg/qe-sign-priv.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/gpg/qe-sign-priv.gpg -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/iqe_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/iqe_utils.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/ldap.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/legacy.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/podman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/podman.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/pulp_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/pulp_interfaces.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/rbac_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/rbac_utils.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/repo_management_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/repo_management_utils.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/signatures.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/sync.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/tasks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/teams.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/tools.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/urls.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/users.py -------------------------------------------------------------------------------- /galaxy_ng/tests/integration/utils/vault_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/integration/utils/vault_loading.py -------------------------------------------------------------------------------- /galaxy_ng/tests/performance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/performance/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/performance/conftest.py -------------------------------------------------------------------------------- /galaxy_ng/tests/performance/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/performance/constants.py -------------------------------------------------------------------------------- /galaxy_ng/tests/performance/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/performance/test_performance.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/README.md -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/base.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/rh_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/rh_auth.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/synclist_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/synclist_base.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_dab_feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_dab_feature_flags.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_auth_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_auth_views.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_collection_viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_collection_viewsets.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_container_registry_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_container_registry_remote.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_container_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_container_remote.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_controller_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_controller_list.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_distributions.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_feature_flags.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_my_synclists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_my_synclists.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_settings.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_sync_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_sync_config.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_synclists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_synclists.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_user_viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_user_viewsets.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_v2_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_v2_groups.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_ui_v2_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_ui_v2_teams.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_v3_auth_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_v3_auth_views.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_v3_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_v3_collections.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_v3_namespace_viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_v3_namespace_viewsets.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_api_v3_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_api_v3_tasks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_auth_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_auth_openapi.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_collectionremotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_collectionremotes.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_localization.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/api/test_view_only_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/api/test_view_only_access.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/ui/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/ui/v1/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/ui/v1/views/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/api/ui/v1/views/test_search.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/ui/v1/views/test_signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/api/ui/v1/views/test_signing.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/api/v1/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/api/v1/test_tasks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/auth/test_keycloak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/auth/test_keycloak.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/auth/test_ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/auth/test_ldap.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/auth/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/auth/test_token.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/common/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/common/test_openapi.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/analytics/automation_analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/analytics/automation_analytics/test_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/analytics/automation_analytics/test_collector.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/analytics/automation_analytics/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/analytics/automation_analytics/test_data.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_assign_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_assign_permission.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_change_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_change_password.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_community_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_community_commands.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_create_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_create_group.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_create_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_create_remote.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_create_user.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_delete_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_delete_user.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_dump_auth_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_dump_auth_config.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_metrics_collection_lightspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_metrics_collection_lightspeed.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_populate_role_tags_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_populate_role_tags_commands.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_purge_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_purge_tasks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_set_retain_repo_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_set_retain_repo_versions.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/management/commands/test_task_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/management/commands/test_task_scheduler.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/metrics_collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/metrics_collection/automation_analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/metrics_collection/automation_analytics/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/metrics_collection/automation_analytics/test_data.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/tasks/test_index_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/tasks/test_index_registry.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/tasks/test_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/tasks/test_namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/tasks/test_promotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/tasks/test_promotion.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/tasks/test_resource_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/tasks/test_resource_sync.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/test_app_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/test_app_auth.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/test_dynaconf_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/test_dynaconf_hooks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/test_insights_access_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/test_insights_access_policy.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/test_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/test_pipelines.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/test_role_permissions_in_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/test_role_permissions_in_constants.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/test_tasks.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/test_galaxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/utils/test_galaxy.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/utils/test_git.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/utils/test_legacy.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/test_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/utils/test_namespaces.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/test_rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/utils/test_rbac.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/app/utils/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/app/utils/test_roles.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_0028_update_synclist_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_0028_update_synclist_model.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_0029_move_perms_to_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_0029_move_perms_to_roles.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_0030_update_collection_remote_rhcertified_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_0030_update_collection_remote_rhcertified_url.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_0048_update_collection_remote_rhcertified_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_0048_update_collection_remote_rhcertified_url.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_0054_migrate_role_assignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_0054_migrate_role_assignments.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_0059_delete_system_auditor_role_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_0059_delete_system_auditor_role_definition.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/migrations/test_galaxy_team_member_role_transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/migrations/test_galaxy_team_member_role_transition.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/signals/test_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/signals/test_handlers.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/signals/test_team_member_role_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/signals/test_team_member_role_handlers.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/test_models.py -------------------------------------------------------------------------------- /galaxy_ng/tests/unit/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/tests/unit/test_settings.py -------------------------------------------------------------------------------- /galaxy_ng/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /galaxy_ng/ui/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/galaxy_ng/ui/urls.py -------------------------------------------------------------------------------- /integration_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/integration_requirements.txt -------------------------------------------------------------------------------- /lint_requirements.txt: -------------------------------------------------------------------------------- 1 | check-manifest 2 | flake8 3 | yamllint 4 | ruff==0.8.6 5 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /openshift/clowder/clowd-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/openshift/clowder/clowd-app.yaml -------------------------------------------------------------------------------- /openshift/clowder/clowd-environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/openshift/clowder/clowd-environment.yaml -------------------------------------------------------------------------------- /openshift/clowder/deploy-acceptance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/openshift/clowder/deploy-acceptance.yaml -------------------------------------------------------------------------------- /openshift/clowder/run-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/openshift/clowder/run-job.yaml -------------------------------------------------------------------------------- /openshift/database-migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/openshift/database-migration.yaml -------------------------------------------------------------------------------- /pr_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/pr_check.sh -------------------------------------------------------------------------------- /profiles/community/galaxy-importer/galaxy-importer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/community/galaxy-importer/galaxy-importer.cfg -------------------------------------------------------------------------------- /profiles/community/github_mock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/community/github_mock/Dockerfile -------------------------------------------------------------------------------- /profiles/community/github_mock/flaskapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/community/github_mock/flaskapp.py -------------------------------------------------------------------------------- /profiles/community/github_mock/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | requests 3 | -------------------------------------------------------------------------------- /profiles/dab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab/README.md -------------------------------------------------------------------------------- /profiles/dab/make_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab/make_test_data.py -------------------------------------------------------------------------------- /profiles/dab/run_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab/run_integration.sh -------------------------------------------------------------------------------- /profiles/dab_jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/README.md -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/.air.toml -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/Dockerfile -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/go.mod -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/go.sum -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_default_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_default_data.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_functions.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_handler_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_handler_auth.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_handler_jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_handler_jwt.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_handler_orgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_handler_orgs.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_handler_roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_handler_roles.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_handler_teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_handler_teams.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_handler_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_handler_users.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_service_index_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_service_index_client.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/proxy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/proxy_types.go -------------------------------------------------------------------------------- /profiles/dab_jwt/proxy/tmp/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/proxy/tmp/main -------------------------------------------------------------------------------- /profiles/dab_jwt/run_integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/dab_jwt/run_integration.sh -------------------------------------------------------------------------------- /profiles/insights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/insights/README.md -------------------------------------------------------------------------------- /profiles/insights/galaxy-importer/galaxy-importer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/insights/galaxy-importer/galaxy-importer.cfg -------------------------------------------------------------------------------- /profiles/insights/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/insights/proxy/Dockerfile -------------------------------------------------------------------------------- /profiles/insights/proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/insights/proxy/main.go -------------------------------------------------------------------------------- /profiles/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/keycloak/README.md -------------------------------------------------------------------------------- /profiles/keycloak/community-general-5.7.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/keycloak/community-general-5.7.0.tar.gz -------------------------------------------------------------------------------- /profiles/keycloak/keycloak-playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/profiles/keycloak/keycloak-playbook.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/requirements.common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/requirements/requirements.common.txt -------------------------------------------------------------------------------- /requirements/requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/requirements/requirements.dev.txt -------------------------------------------------------------------------------- /requirements/requirements.insights.in: -------------------------------------------------------------------------------- 1 | boto3 2 | logstash-formatter 3 | watchtower 4 | app-common-python 5 | -------------------------------------------------------------------------------- /requirements/requirements.insights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/requirements/requirements.insights.txt -------------------------------------------------------------------------------- /requirements/requirements.shipit.txt: -------------------------------------------------------------------------------- 1 | bump-my-version 2 | wheel 3 | -------------------------------------------------------------------------------- /requirements/requirements.standalone.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/requirements/requirements.standalone.in -------------------------------------------------------------------------------- /requirements/requirements.standalone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/requirements/requirements.standalone.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/tox.ini -------------------------------------------------------------------------------- /unittest_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/galaxy_ng/HEAD/unittest_requirements.txt --------------------------------------------------------------------------------