qontract-reconcile 0.10.1rc624__py3-none-any.whl → 0.10.1rc625__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.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/RECORD +6 -6
- reconcile/slack_usergroups.py +3 -1
- {qontract_reconcile-0.10.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc624.dist-info → qontract_reconcile-0.10.1rc625.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.1rc625
|
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.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/RECORD
RENAMED
@@ -102,7 +102,7 @@ reconcile/sendgrid_teammates.py,sha256=oO8QbLb4s1o8A6CGiCagN9CmS05BSS_WLztuY0Ym9
|
|
102
102
|
reconcile/service_dependencies.py,sha256=PMKP9vc6oL-78rzyF_RE8DzLSQMSqN8vCqt9sWpBLAM,4470
|
103
103
|
reconcile/signalfx_endpoint_monitoring.py,sha256=D1m8iq0EAKie0OD59FOcVCtpWWZ7xlo6lwBS9urwMIk,2894
|
104
104
|
reconcile/slack_base.py,sha256=K3fSYx46G1djoPb07_C9j6ChhMCt5LgV5l6v2TFkNZk,3479
|
105
|
-
reconcile/slack_usergroups.py,sha256=
|
105
|
+
reconcile/slack_usergroups.py,sha256=XC7bYHP322EFWrEaR4Orw_sOoMFmuV3o08OC0UE4xLQ,27592
|
106
106
|
reconcile/sql_query.py,sha256=qLTUU2Hc0BmJoSl9cCUsIfdEaEaOQp7y__E4KLjjcaA,25732
|
107
107
|
reconcile/status.py,sha256=cY4IJFXemhxptRJqR4qaaOWqei9e4jgLXuVSGajMsjg,544
|
108
108
|
reconcile/status_board.py,sha256=nA74_133jukxVShjPKJpkXOA3vggDTTEhYTegoXbN1M,8632
|
@@ -714,8 +714,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
|
|
714
714
|
tools/test/test_qontract_cli.py,sha256=OvalpVRfY4pNmpMaWHHYqBjV68b1eGQjX8SCyTAXb1w,3501
|
715
715
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
716
716
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
717
|
-
qontract_reconcile-0.10.
|
718
|
-
qontract_reconcile-0.10.
|
719
|
-
qontract_reconcile-0.10.
|
720
|
-
qontract_reconcile-0.10.
|
721
|
-
qontract_reconcile-0.10.
|
717
|
+
qontract_reconcile-0.10.1rc625.dist-info/METADATA,sha256=zHAp9JWVyX5qDHsnC7BAbcN2EjAMiPlwm2AwJIi2KLI,2382
|
718
|
+
qontract_reconcile-0.10.1rc625.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
719
|
+
qontract_reconcile-0.10.1rc625.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
|
720
|
+
qontract_reconcile-0.10.1rc625.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
721
|
+
qontract_reconcile-0.10.1rc625.dist-info/RECORD,,
|
reconcile/slack_usergroups.py
CHANGED
@@ -804,7 +804,9 @@ def early_exit_desired_state(*args: Any, **kwargs: Any) -> dict[str, Any]:
|
|
804
804
|
users = get_users(gqlapi.query)
|
805
805
|
for user in users:
|
806
806
|
user.roles = [
|
807
|
-
role
|
807
|
+
role
|
808
|
+
for role in user.roles or []
|
809
|
+
if role.tag_on_cluster_updates is not False
|
808
810
|
]
|
809
811
|
return {
|
810
812
|
"permissions": [p.dict() for p in get_permissions(gqlapi.query)],
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc624.dist-info → qontract_reconcile-0.10.1rc625.dist-info}/top_level.txt
RENAMED
File without changes
|