qontract-reconcile 0.10.1rc962__py3-none-any.whl → 0.10.1rc963__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.1rc962
3
+ Version: 0.10.1rc963
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
@@ -661,7 +661,7 @@ reconcile/utils/gitlab_api.py,sha256=6ZU77wzwYKVbJcuXrG0ZMvAsB-_N9On84LQiT_yZdeE
661
661
  reconcile/utils/gpg.py,sha256=EKG7_fdMv8BMlV5yUdPiqoTx-KrzmVSEAl2sLkaKwWI,1123
662
662
  reconcile/utils/gql.py,sha256=IGhxzBcuebbapDKLseevEThSsxa_eDCPNpo3A4VnOS4,14066
663
663
  reconcile/utils/grouping.py,sha256=vr9SFHZ7bqmHYrvYcEZt-Er3-yQYfAAdq5sHLZVmXPY,456
664
- reconcile/utils/helm.py,sha256=qnXtw3nyKJqobSG4d6PtvulqToqiEGuXK5PbgfwSFHI,1942
664
+ reconcile/utils/helm.py,sha256=d4WFxf6NFcNj0I2YWDvWxN5gK80o2Y12Ve05ky73FCc,2763
665
665
  reconcile/utils/helpers.py,sha256=k9svgFFZG7H5FvHYY0g5jJyvgvh2UDZxf0Ib221teag,1179
666
666
  reconcile/utils/imap_client.py,sha256=PMsX8UjJ2F59fXbbqREjLVdapYWznYTB8svFmpt39qA,1949
667
667
  reconcile/utils/instrumented_wrappers.py,sha256=eVwMoa6FCrYxLv3RML3WpZF9qKVfCTjMxphgVXG03OM,1073
@@ -847,8 +847,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
847
847
  tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
848
848
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
849
849
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
850
- qontract_reconcile-0.10.1rc962.dist-info/METADATA,sha256=H2k1Pegpt_fHDM6NwGFWQasYZYX9bZodCUN6DNMAuoE,2262
851
- qontract_reconcile-0.10.1rc962.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
852
- qontract_reconcile-0.10.1rc962.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
853
- qontract_reconcile-0.10.1rc962.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
854
- qontract_reconcile-0.10.1rc962.dist-info/RECORD,,
850
+ qontract_reconcile-0.10.1rc963.dist-info/METADATA,sha256=AiGv3ClIB_-Pa6p12xqAjUMwkIZruqlZxurmniRlQas,2262
851
+ qontract_reconcile-0.10.1rc963.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
852
+ qontract_reconcile-0.10.1rc963.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
853
+ qontract_reconcile-0.10.1rc963.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
854
+ qontract_reconcile-0.10.1rc963.dist-info/RECORD,,
reconcile/utils/helm.py CHANGED
@@ -1,4 +1,5 @@
1
1
  import json
2
+ import os
2
3
  import tempfile
3
4
  from collections.abc import Iterable, Mapping
4
5
  from subprocess import (
@@ -30,6 +31,26 @@ def do_template(
30
31
  name: str,
31
32
  ) -> str:
32
33
  try:
34
+ with open(os.path.join(path, "Chart.yaml"), encoding="locale") as chart_file:
35
+ chart = yaml.safe_load(chart_file)
36
+ if dependencies := chart.get("dependencies"):
37
+ for dep in dependencies:
38
+ if repo := dep.get("repository"):
39
+ cmd = [
40
+ "helm",
41
+ "repo",
42
+ "add",
43
+ dep["name"],
44
+ repo,
45
+ ]
46
+ run(cmd, capture_output=False, check=True)
47
+ cmd = [
48
+ "helm",
49
+ "dependency",
50
+ "build",
51
+ path,
52
+ ]
53
+ run(cmd, capture_output=False, check=True)
33
54
  with tempfile.NamedTemporaryFile(mode="w+", encoding="locale") as values_file:
34
55
  values_file.write(json.dumps(values, cls=JSONEncoder))
35
56
  values_file.flush()