qontract-reconcile 0.10.1rc1108__py3-none-any.whl → 0.10.1rc1109__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.1rc1108
3
+ Version: 0.10.1rc1109
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
@@ -819,7 +819,7 @@ reconcile/utils/runtime/sharding.py,sha256=r0ieUtNed7NvknSw6qQrCkKpVXE1shuHGnfFc
819
819
  reconcile/utils/saasherder/__init__.py,sha256=3U8plqMAPRE1kjwZ5YnIsYsggTf4_gS7flRUEuXVBAs,343
820
820
  reconcile/utils/saasherder/interfaces.py,sha256=C2wrw34OXypshVocAsPrVZsSHptgw4g9u7Haa2wulZQ,9087
821
821
  reconcile/utils/saasherder/models.py,sha256=z8ln03zi2a8cu716NcNUDHp8Dv1VcVbhqdWVxCl7x9A,10148
822
- reconcile/utils/saasherder/saasherder.py,sha256=ncFN9ERyTPHxBlOi55FMRakrbN1OfjI2UfbR1YM1IjE,85903
822
+ reconcile/utils/saasherder/saasherder.py,sha256=dG7Qw4lMkU-3YMKZDNnXBdJQV9kdfVe984R_8iwR_eU,85333
823
823
  reconcile/utils/terraform/__init__.py,sha256=zNbiyTWo35AT1sFTElL2j_AA0jJ_yWE_bfFn-nD2xik,250
824
824
  reconcile/utils/terraform/config.py,sha256=5UVrd563TMcvi4ooa5JvWVDW1I3bIWg484u79evfV_8,164
825
825
  reconcile/utils/terraform/config_client.py,sha256=gRL1rQ0AqvShei_rcGqC3HDYGskOFKE1nPrJyJE9yno,4676
@@ -870,8 +870,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
870
870
  tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
871
871
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
872
872
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
873
- qontract_reconcile-0.10.1rc1108.dist-info/METADATA,sha256=az7lDLiH7BhZnyTw8M9meiq92C4PfaaPpIwv4u93eMw,2213
874
- qontract_reconcile-0.10.1rc1108.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
875
- qontract_reconcile-0.10.1rc1108.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
876
- qontract_reconcile-0.10.1rc1108.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
877
- qontract_reconcile-0.10.1rc1108.dist-info/RECORD,,
873
+ qontract_reconcile-0.10.1rc1109.dist-info/METADATA,sha256=xkpjJve4vseH5U9biXZ2ku_Jc0lSIvJudH_ROUPvaQ0,2213
874
+ qontract_reconcile-0.10.1rc1109.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
875
+ qontract_reconcile-0.10.1rc1109.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
876
+ qontract_reconcile-0.10.1rc1109.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
877
+ qontract_reconcile-0.10.1rc1109.dist-info/RECORD,,
@@ -976,16 +976,6 @@ class SaasHerder: # pylint: disable=too-many-public-methods
976
976
  else True
977
977
  )
978
978
  consolidated_parameters = spec.parameters(adjust=False)
979
- commit_sha = self._get_commit_sha(url, ref, github)
980
- image_tag = commit_sha[:hash_length]
981
- image = consolidated_parameters.setdefault("image", {})
982
- if isinstance(image, dict):
983
- image.setdefault("tag", image_tag)
984
- global_parameters = consolidated_parameters.setdefault("global", {})
985
- if isinstance(global_parameters, dict):
986
- image = global_parameters.setdefault("image", {})
987
- if isinstance(image, dict):
988
- image.setdefault("tag", image_tag)
989
979
  resources = helm.template_all(
990
980
  url=url,
991
981
  path=path,