qontract-reconcile 0.10.1rc768__py3-none-any.whl → 0.10.1rc769__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.1rc768
3
+ Version: 0.10.1rc769
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
@@ -421,7 +421,7 @@ reconcile/saas_auto_promotions_manager/merge_request_manager/mr_parser.py,sha256
421
421
  reconcile/saas_auto_promotions_manager/merge_request_manager/open_merge_requests.py,sha256=-qGQOh6Jdp4lomNDij3zWVC0pl6uPHFWS5Woqcp5HQk,410
422
422
  reconcile/saas_auto_promotions_manager/merge_request_manager/renderer.py,sha256=IZ7cuH6uOi7f0aIPVi1irBmP0CIK5vmEuhKBJz4YA1s,7235
423
423
  reconcile/saas_auto_promotions_manager/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
- reconcile/saas_auto_promotions_manager/utils/saas_files_inventory.py,sha256=7LlTQCzYotWCbtYBaNQP81CFlLUOvsyGMBQE-Ha0cKY,7820
424
+ reconcile/saas_auto_promotions_manager/utils/saas_files_inventory.py,sha256=txisb7NT7u5vpmZqRK3R4bpHDiJ7IUyNt9FZfvgm9MA,7998
425
425
  reconcile/skupper_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
426
  reconcile/skupper_network/integration.py,sha256=178Q9RSYuZ9NmrCK4jRMLMekrewUaaRdclccI6zBsQ8,10786
427
427
  reconcile/skupper_network/models.py,sha256=DNTI7HZv-rqY42GIIxyRuvroHLvdH6rJerjIq9lj3RU,6663
@@ -783,8 +783,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
783
783
  tools/test/test_qontract_cli.py,sha256=w2l4BHB09k1d-BGJ1jBUNCqDv7zkqYrMHojQXg-21kQ,4155
784
784
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
785
785
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
786
- qontract_reconcile-0.10.1rc768.dist-info/METADATA,sha256=yWOLAAMttXd8Ke_yukmWEtDBxlG-RMV0QmeHTJGxhGg,2382
787
- qontract_reconcile-0.10.1rc768.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
788
- qontract_reconcile-0.10.1rc768.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
789
- qontract_reconcile-0.10.1rc768.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
790
- qontract_reconcile-0.10.1rc768.dist-info/RECORD,,
786
+ qontract_reconcile-0.10.1rc769.dist-info/METADATA,sha256=5H5IpMZ9UroJcmYE5gaf7AwF0yRZS-AWxlPIefGupoI,2382
787
+ qontract_reconcile-0.10.1rc769.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
788
+ qontract_reconcile-0.10.1rc769.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
789
+ qontract_reconcile-0.10.1rc769.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
790
+ qontract_reconcile-0.10.1rc769.dist-info/RECORD,,
@@ -42,6 +42,8 @@ class SaasFilesInventory:
42
42
  for saas_file in self._saas_files:
43
43
  for resource_template in saas_file.resource_templates:
44
44
  for target in resource_template.targets:
45
+ if target.disable or target.delete:
46
+ continue
45
47
  if not target.promotion:
46
48
  continue
47
49
  auth_code = (
@@ -87,6 +89,8 @@ class SaasFilesInventory:
87
89
  for resource_template in saas_file.resource_templates:
88
90
  for target in resource_template.targets:
89
91
  file_path = target.path if target.path else saas_file.path
92
+ if target.disable or target.delete:
93
+ continue
90
94
  if not target.promotion:
91
95
  continue
92
96
  if not target.promotion.auto: