From 7f3ac8ef39edf573bf268244afbeb00a22f9f4e8 Mon Sep 17 00:00:00 2001 From: Stefaan Lippens Date: Wed, 17 Jan 2024 10:51:07 +0100 Subject: [PATCH] Issue #133 Disable `auth_entitlement_check` (check on EGI VO entitlements) in all configs --- CHANGELOG.md | 4 ++++ conf/aggregator.dev.py | 4 +--- conf/aggregator.prod.py | 4 +--- src/openeo_aggregator/about.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6643db6..5dd59b42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.16.x] + +- Disable `auth_entitlement_check` (check on EGI VO entitlements) in all configs ([#133](https://github.com/Open-EO/openeo-aggregator/issues/133)) + ## [0.15.x] - Basic support for `POST /validation`: pass through validation of best upstream backend for given process graph ([#42](https://github.com/Open-EO/openeo-aggregator/issues/42)) diff --git a/conf/aggregator.dev.py b/conf/aggregator.dev.py index 6dbe69e7..e7c13818 100644 --- a/conf/aggregator.dev.py +++ b/conf/aggregator.dev.py @@ -51,9 +51,7 @@ # Sentinel Hub OpenEO by Sinergise "sentinelhub": "https://openeo.sentinel-hub.com/production/", }, - auth_entitlement_check={"oidc_issuer_whitelist": { - "https://aai.egi.eu/auth/realms/egi/", - }}, + auth_entitlement_check=False, configured_oidc_providers=configured_oidc_providers, partitioned_job_tracking={ "zk_hosts": ZK_HOSTS, diff --git a/conf/aggregator.prod.py b/conf/aggregator.prod.py index 6fb8fde8..ecc572f5 100644 --- a/conf/aggregator.prod.py +++ b/conf/aggregator.prod.py @@ -43,9 +43,7 @@ # Sentinel Hub OpenEO by Sinergise "sentinelhub": "https://openeo.sentinel-hub.com/production/", }, - auth_entitlement_check={"oidc_issuer_whitelist": { - "https://aai.egi.eu/auth/realms/egi/", - }}, + auth_entitlement_check=False, configured_oidc_providers=configured_oidc_providers, partitioned_job_tracking={ "zk_hosts": ZK_HOSTS, diff --git a/src/openeo_aggregator/about.py b/src/openeo_aggregator/about.py index 4af68fa1..e02922aa 100644 --- a/src/openeo_aggregator/about.py +++ b/src/openeo_aggregator/about.py @@ -2,7 +2,7 @@ import sys from typing import Optional -__version__ = "0.15.0a1" +__version__ = "0.16.0a1" def log_version_info(logger: Optional[logging.Logger] = None):