Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Always enable the resource registry. #2166

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions galaxy_ng/tests/integration/api/test_dab.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@pytest.mark.all
@pytest.mark.deployment_community
@pytest.mark.skip_in_gw
@pytest.mark.xfail
def test_dab_service_index_is_not_available(ansible_config):
if not is_dev_env_standalone():
pytest.skip("This test should only run if hub is deployed without gateway")
Expand Down
5 changes: 4 additions & 1 deletion profiles/base/pulp_config.env
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ CONTAINER_REGISTRY={API_HOST}:{API_PORT}
HUB_LOCAL=1
HUB_USE_MOVE_ENDPOINT=true
HUB_TEST_AUTHENTICATION_BACKEND=galaxy
HUB_TEST_MARKS=deployment_standalone or all
HUB_TEST_MARKS=deployment_standalone or all

# test
PULP_GALAXY_FEATURE_FLAGS__dab_resource_registry=true
1 change: 0 additions & 1 deletion profiles/dab/pulp_config.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ PULP_ANSIBLE_BASE_JWT_KEY=https://localhost
PULP_CONTENT_ORIGIN="https://localhost"
PULP_CSRF_TRUSTED_ORIGINS = ['https://localhost']

PULP_GALAXY_FEATURE_FLAGS__dab_resource_registry=true
PULP_GALAXY_FEATURE_FLAGS__external_authentication=true

PULP_TOKEN_SERVER="https://localhost/token/"
Expand Down
1 change: 0 additions & 1 deletion profiles/dab_jwt/pulp_config.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ PULP_ANSIBLE_BASE_JWT_KEY=http://jwtproxy:8080
PULP_CONTENT_ORIGIN="http://jwtproxy:8080"
PULP_CSRF_TRUSTED_ORIGINS = ['http://jwtproxy:8080']

PULP_GALAXY_FEATURE_FLAGS__dab_resource_registry=true
PULP_GALAXY_FEATURE_FLAGS__external_authentication=true

PULP_TOKEN_SERVER="http://jwtproxy:8080/token/"
Expand Down
Loading