qontract-reconcile 0.10.1rc1023__py3-none-any.whl → 0.10.1rc1024__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/RECORD +6 -6
- reconcile/endpoints_discovery/integration.py +3 -0
- {qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.1rc1024
|
4
4
|
Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
|
5
5
|
Home-page: https://github.com/app-sre/qontract-reconcile
|
6
6
|
Author: Red Hat App-SRE Team
|
{qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/RECORD
RENAMED
@@ -186,7 +186,7 @@ reconcile/dynatrace_token_provider/metrics.py,sha256=xiKkl8fTEBQaXJelGCPNTZhHAWd
|
|
186
186
|
reconcile/dynatrace_token_provider/model.py,sha256=gkpqo5rRRueBXnIMjp4EEHqBUBuU65TRI8zpdb8GJ0A,241
|
187
187
|
reconcile/dynatrace_token_provider/ocm.py,sha256=iHMsgbsLs-dlrB9UXmWNDF7E4UDe49JOsLa9rnowKfo,4282
|
188
188
|
reconcile/endpoints_discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
|
-
reconcile/endpoints_discovery/integration.py,sha256=
|
189
|
+
reconcile/endpoints_discovery/integration.py,sha256=dnZ42vrrc3q3-EDO7qE5HVjwHrnpb4_2O_QhFhi8Q-U,12333
|
190
190
|
reconcile/endpoints_discovery/merge_request.py,sha256=NktpwMUoQ9TvBzOeHSPC09OqxWmgZBZVy-Eqmsm_vrA,2909
|
191
191
|
reconcile/endpoints_discovery/merge_request_manager.py,sha256=oY3lovy5DcUgHNEDzWrbOPabzZtaGMns6YLl5ipZJ0c,6346
|
192
192
|
reconcile/external_resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -865,8 +865,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
|
|
865
865
|
tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
|
866
866
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
867
867
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
868
|
-
qontract_reconcile-0.10.
|
869
|
-
qontract_reconcile-0.10.
|
870
|
-
qontract_reconcile-0.10.
|
871
|
-
qontract_reconcile-0.10.
|
872
|
-
qontract_reconcile-0.10.
|
868
|
+
qontract_reconcile-0.10.1rc1024.dist-info/METADATA,sha256=mM2v2AIw7KVQIg5kmx124zqndS8w68EyqTisqYNRSs0,2213
|
869
|
+
qontract_reconcile-0.10.1rc1024.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
870
|
+
qontract_reconcile-0.10.1rc1024.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
|
871
|
+
qontract_reconcile-0.10.1rc1024.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
872
|
+
qontract_reconcile-0.10.1rc1024.dist-info/RECORD,,
|
@@ -221,6 +221,9 @@ class EndpointsDiscoveryIntegration(
|
|
221
221
|
"""Compile a list of apps with their endpoints to add, change and delete."""
|
222
222
|
apps: dict[str, App] = {}
|
223
223
|
for namespace in namespaces:
|
224
|
+
logging.debug(
|
225
|
+
f"Processing namespace {namespace.cluster.name}/{namespace.name}"
|
226
|
+
)
|
224
227
|
routes = self.get_routes(oc_map, namespace)
|
225
228
|
endpoints_to_add, endpoints_to_change, endpoints_to_delete = (
|
226
229
|
self.get_endpoint_changes(
|
{qontract_reconcile-0.10.1rc1023.dist-info → qontract_reconcile-0.10.1rc1024.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|