qontract-reconcile 0.10.2.dev32__py3-none-any.whl → 0.10.2.dev33__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.4
2
2
  Name: qontract-reconcile
3
- Version: 0.10.2.dev32
3
+ Version: 0.10.2.dev33
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
@@ -727,7 +727,7 @@ reconcile/utils/runtime/sharding.py,sha256=r0ieUtNed7NvknSw6qQrCkKpVXE1shuHGnfFc
727
727
  reconcile/utils/saasherder/__init__.py,sha256=3U8plqMAPRE1kjwZ5YnIsYsggTf4_gS7flRUEuXVBAs,343
728
728
  reconcile/utils/saasherder/interfaces.py,sha256=C2wrw34OXypshVocAsPrVZsSHptgw4g9u7Haa2wulZQ,9087
729
729
  reconcile/utils/saasherder/models.py,sha256=z8ln03zi2a8cu716NcNUDHp8Dv1VcVbhqdWVxCl7x9A,10148
730
- reconcile/utils/saasherder/saasherder.py,sha256=6d3ZK_hNfv6hVxULh3BhXzTRMXoTR2YvjcoQQ1oKF8M,86099
730
+ reconcile/utils/saasherder/saasherder.py,sha256=-Q1cMXuclv-1F1cMoy7ntzL_1_0C-X0q9sD6otfKbyw,86222
731
731
  reconcile/utils/terraform/__init__.py,sha256=zNbiyTWo35AT1sFTElL2j_AA0jJ_yWE_bfFn-nD2xik,250
732
732
  reconcile/utils/terraform/config.py,sha256=5UVrd563TMcvi4ooa5JvWVDW1I3bIWg484u79evfV_8,164
733
733
  reconcile/utils/terraform/config_client.py,sha256=gRL1rQ0AqvShei_rcGqC3HDYGskOFKE1nPrJyJE9yno,4676
@@ -773,7 +773,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
773
773
  tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
774
774
  tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
775
775
  tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
776
- qontract_reconcile-0.10.2.dev32.dist-info/METADATA,sha256=Aj39BfBFhSBY0PanTtlnlcY2FpVeG_k_VWiCOo0Enbc,24665
777
- qontract_reconcile-0.10.2.dev32.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
778
- qontract_reconcile-0.10.2.dev32.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
779
- qontract_reconcile-0.10.2.dev32.dist-info/RECORD,,
776
+ qontract_reconcile-0.10.2.dev33.dist-info/METADATA,sha256=jVREX3R6wKTDUx0Ri4Ae3LmYJ5D5tISqdceoeAbmZBc,24665
777
+ qontract_reconcile-0.10.2.dev33.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
778
+ qontract_reconcile-0.10.2.dev33.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
779
+ qontract_reconcile-0.10.2.dev33.dist-info/RECORD,,
@@ -1361,8 +1361,9 @@ class SaasHerder: # pylint: disable=too-many-public-methods
1361
1361
  except ResourceKeyExistsError:
1362
1362
  ri.register_error()
1363
1363
  msg = (
1364
- f"[{spec.cluster}/{spec.namespace}] desired item "
1365
- + f"already exists: {resource['kind']}/{resource['metadata']['name']}. "
1364
+ f"[{spec.cluster}/{spec.namespace}] Duplicate resources in your deployment template detected. "
1365
+ + "The following is defined multiple times in your deployment template: "
1366
+ + f"{resource['kind']}/{resource['metadata']['name']}. "
1366
1367
  + f"saas file name: {spec.saas_file_name}, "
1367
1368
  + "resource template name: "
1368
1369
  + f"{spec.resource_template_name}."