qontract-reconcile 0.10.1rc715__py3-none-any.whl → 0.10.1rc716__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qontract-reconcile
3
- Version: 0.10.1rc715
3
+ Version: 0.10.1rc716
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
@@ -701,7 +701,7 @@ reconcile/utils/mr/ocm_update_recommended_version.py,sha256=p_aVP0TGrlKk9WBwgQnY
701
701
  reconcile/utils/mr/ocm_upgrade_scheduler_org_updates.py,sha256=RzEKRT_BhvB2ud9pyNFZ1cNZFmDGBUah9vjpP0y9f9w,2810
702
702
  reconcile/utils/mr/user_maintenance.py,sha256=cHPBn8zrReWLHalyk-EFdkFJe9zjVjRoZhT4t2zZfGE,3956
703
703
  reconcile/utils/ocm/__init__.py,sha256=xv7CJp7K9LCQfa4gL_W0MMCOD1P4qOy8t5aZj1xXNUE,808
704
- reconcile/utils/ocm/addons.py,sha256=cofEAtnoBGKbtShSe3oAz9YbEuql1z6w_2FoNiBcFwA,6887
704
+ reconcile/utils/ocm/addons.py,sha256=swWSOPbLprbxhmt8jd4hH5y3xeWF78y8hk9o4rfIXms,6890
705
705
  reconcile/utils/ocm/base.py,sha256=GclZtCrPkPJmGP9HHvqIlV-8VXSKuaQTQJkA2pklN60,13817
706
706
  reconcile/utils/ocm/cluster_groups.py,sha256=F8oqVqN_4QUnGL0K61zZhoYIzJeP57EcmZpwmoV0mr4,1751
707
707
  reconcile/utils/ocm/clusters.py,sha256=Nw9m-jgN3GHHCh6w9UOBbMV4rtS24_-Ep09jAWQ-_fE,7653
@@ -764,8 +764,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
764
764
  tools/test/test_qontract_cli.py,sha256=UEwAW7PA_GIrbqzaLxpkCxbuVjEFLNvnVG-6VyoCGIc,4147
765
765
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
766
766
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
767
- qontract_reconcile-0.10.1rc715.dist-info/METADATA,sha256=DjlDuCT0d-Y7MGG1njiNAvXW_qHFFqMp0EjURwEGMeo,2382
768
- qontract_reconcile-0.10.1rc715.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
769
- qontract_reconcile-0.10.1rc715.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
770
- qontract_reconcile-0.10.1rc715.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
771
- qontract_reconcile-0.10.1rc715.dist-info/RECORD,,
767
+ qontract_reconcile-0.10.1rc716.dist-info/METADATA,sha256=Gt8-f3KdLFBMIfyutjkC-vGUpOFCnW5V30bKB-auB1Q,2382
768
+ qontract_reconcile-0.10.1rc716.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
769
+ qontract_reconcile-0.10.1rc716.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
770
+ qontract_reconcile-0.10.1rc716.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
771
+ qontract_reconcile-0.10.1rc716.dist-info/RECORD,,
@@ -175,7 +175,7 @@ class AddonServiceV2(AddonService):
175
175
  results: list[dict[str, Any]] = []
176
176
 
177
177
  for policy in ocm_api.get_paginated(
178
- f"{self.addon_base_api_path()}/clusters/{cluster_id}/upgrade_plan"
178
+ f"{self.addon_base_api_path()}/clusters/{cluster_id}/upgrade_plans"
179
179
  ):
180
180
  if addon_id and policy["addon_id"] != addon_id:
181
181
  continue
@@ -208,7 +208,7 @@ class AddonServiceV2(AddonService):
208
208
  "next_run": next_run,
209
209
  }
210
210
  ocm_api.post(
211
- f"{self.addon_base_api_path()}/clusters/{cluster_id}/upgrade_plan", spec
211
+ f"{self.addon_base_api_path()}/clusters/{cluster_id}/upgrade_plans", spec
212
212
  )
213
213
 
214
214
  def delete_addon_upgrade_policy(
@@ -218,5 +218,5 @@ class AddonServiceV2(AddonService):
218
218
  Deletes an existing upgrade plan.
219
219
  """
220
220
  ocm_api.delete(
221
- f"{self.addon_base_api_path()}/clusters/{cluster_id}/upgrade_plan/{policy_id}"
221
+ f"{self.addon_base_api_path()}/clusters/{cluster_id}/upgrade_plans/{policy_id}"
222
222
  )