qontract-reconcile 0.10.2.dev5__py3-none-any.whl → 0.10.2.dev6__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.2.dev5.dist-info → qontract_reconcile-0.10.2.dev6.dist-info}/METADATA +2 -2
- {qontract_reconcile-0.10.2.dev5.dist-info → qontract_reconcile-0.10.2.dev6.dist-info}/RECORD +5 -5
- {qontract_reconcile-0.10.2.dev5.dist-info → qontract_reconcile-0.10.2.dev6.dist-info}/WHEEL +1 -1
- reconcile/aus/base.py +5 -1
- {qontract_reconcile-0.10.2.dev5.dist-info → qontract_reconcile-0.10.2.dev6.dist-info}/entry_points.txt +0 -0
{qontract_reconcile-0.10.2.dev5.dist-info → qontract_reconcile-0.10.2.dev6.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.2.
|
3
|
+
Version: 0.10.2.dev6
|
4
4
|
Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
|
5
5
|
Project-URL: homepage, https://github.com/app-sre/qontract-reconcile
|
6
6
|
Project-URL: repository, https://github.com/app-sre/qontract-reconcile
|
{qontract_reconcile-0.10.2.dev5.dist-info → qontract_reconcile-0.10.2.dev6.dist-info}/RECORD
RENAMED
@@ -123,7 +123,7 @@ reconcile/vpc_peerings_validator.py,sha256=-upvNg3ggKCxcJ4kqZcqJVsiltlhQ8MyyLZiW
|
|
123
123
|
reconcile/aus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
124
|
reconcile/aus/advanced_upgrade_service.py,sha256=NF3UQ02MdUpVPup50EqnTbTn3dRHGoXoSfFLZxOjr8Q,23744
|
125
125
|
reconcile/aus/aus_label_source.py,sha256=2Rktyvs7ZvCwsRwmbGUhddycTBTq0jHq8wpBaiDHAMA,4165
|
126
|
-
reconcile/aus/base.py,sha256=
|
126
|
+
reconcile/aus/base.py,sha256=qinJ95wI-KN548irs2jgUOMBAnvxuiX0Q6_QJ5_n8qU,48881
|
127
127
|
reconcile/aus/cluster_version_data.py,sha256=VZWbUEIbrDKO-sroMpQtiWCTqDraTMd8tssKV0HyTQ0,7140
|
128
128
|
reconcile/aus/healthchecks.py,sha256=jR9c-syh9impnkV0fd6XW3Bnk7iRN5zv8oCRYM-yIRY,2700
|
129
129
|
reconcile/aus/metrics.py,sha256=nKT4m2zGT-QOMR0c-z-npVNKWsNMubzdffpU_f9n4II,3927
|
@@ -766,7 +766,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
766
766
|
tools/saas_promotion_state/saas_promotion_state.py,sha256=5LJ9rygZ304vxfsIuRfuxueoYRb72EZNKKITEcJ4Mtk,3908
|
767
767
|
tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
|
768
768
|
tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
|
769
|
-
qontract_reconcile-0.10.2.
|
770
|
-
qontract_reconcile-0.10.2.
|
771
|
-
qontract_reconcile-0.10.2.
|
772
|
-
qontract_reconcile-0.10.2.
|
769
|
+
qontract_reconcile-0.10.2.dev6.dist-info/METADATA,sha256=XH6LW3B3BM4fyIy9urLw7UrTe-exQ-INWXszkQNnXhk,24664
|
770
|
+
qontract_reconcile-0.10.2.dev6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
771
|
+
qontract_reconcile-0.10.2.dev6.dist-info/entry_points.txt,sha256=JniHZPadNOILPyfSl0LF2YSp3Db7K2_W2CN7i9f3Gos,540
|
772
|
+
qontract_reconcile-0.10.2.dev6.dist-info/RECORD,,
|
reconcile/aus/base.py
CHANGED
@@ -17,6 +17,7 @@ from typing import (
|
|
17
17
|
|
18
18
|
from croniter import croniter
|
19
19
|
from pydantic import BaseModel, Extra
|
20
|
+
from requests.exceptions import HTTPError
|
20
21
|
from semver import VersionInfo
|
21
22
|
|
22
23
|
from reconcile.aus.cluster_version_data import (
|
@@ -1164,7 +1165,10 @@ def act(
|
|
1164
1165
|
and addon_id != policy.addon_id
|
1165
1166
|
):
|
1166
1167
|
continue
|
1167
|
-
|
1168
|
+
try:
|
1169
|
+
diff.act(dry_run, ocm_api)
|
1170
|
+
except HTTPError as e:
|
1171
|
+
logging.error(f"{policy.cluster.name}: {e}: {e.response.text}")
|
1168
1172
|
|
1169
1173
|
|
1170
1174
|
def soaking_days(
|
File without changes
|