qontract-reconcile 0.10.1rc586__py3-none-any.whl → 0.10.1rc587__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.
- {qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/RECORD +6 -6
- reconcile/utils/jinja2/utils.py +2 -2
- {qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.1rc587
|
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
|
{qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/RECORD
RENAMED
@@ -623,7 +623,7 @@ reconcile/utils/internal_groups/models.py,sha256=jlkH_hyyyuwS0J1IpuS7W1AyQSKQ2Qp
|
|
623
623
|
reconcile/utils/jinja2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
624
624
|
reconcile/utils/jinja2/extensions.py,sha256=zV_x8MhSHAynKhFnG3fULXrwsm5fUG_88IygZHSnN0o,1284
|
625
625
|
reconcile/utils/jinja2/filters.py,sha256=_kJjdMsY3lGS5PUn4NnpXUQDNrL1IwiKsB-0MhTMGYM,4521
|
626
|
-
reconcile/utils/jinja2/utils.py,sha256=
|
626
|
+
reconcile/utils/jinja2/utils.py,sha256=LM5YsXoGS_7KUpy3nsLd0aWwl0uwhBGVvJIp6lTVN74,5812
|
627
627
|
reconcile/utils/membershipsources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
628
628
|
reconcile/utils/membershipsources/app_interface_resolver.py,sha256=IlDiRtJZ0AfAGKEawybB6SvsKbm1POTXL6fpEt699E0,1979
|
629
629
|
reconcile/utils/membershipsources/models.py,sha256=IFu6KHFe-HUTJPiAO3fEw7i22yv4_ytgBW-h_wrO6V4,2015
|
@@ -692,8 +692,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
|
|
692
692
|
tools/test/test_qontract_cli.py,sha256=EzJwaPxQw5CLPahLjh91oRT0pi1WCgOXZ_KgiNXZMAw,2948
|
693
693
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
694
694
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
695
|
-
qontract_reconcile-0.10.
|
696
|
-
qontract_reconcile-0.10.
|
697
|
-
qontract_reconcile-0.10.
|
698
|
-
qontract_reconcile-0.10.
|
699
|
-
qontract_reconcile-0.10.
|
695
|
+
qontract_reconcile-0.10.1rc587.dist-info/METADATA,sha256=5i7okOiFniLZAsAZcaw-aCeibJhcB_hXaKuWGZuFnFE,2349
|
696
|
+
qontract_reconcile-0.10.1rc587.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
697
|
+
qontract_reconcile-0.10.1rc587.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
|
698
|
+
qontract_reconcile-0.10.1rc587.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
699
|
+
qontract_reconcile-0.10.1rc587.dist-info/RECORD,,
|
reconcile/utils/jinja2/utils.py
CHANGED
@@ -134,12 +134,12 @@ def process_jinja2_template(
|
|
134
134
|
if vars is None:
|
135
135
|
vars = {}
|
136
136
|
vars.update({
|
137
|
-
"vault": lambda p, k, v=None: lookup_secret(
|
137
|
+
"vault": lambda p, k, v=None, allow_not_found=False: lookup_secret(
|
138
138
|
path=p,
|
139
139
|
key=k,
|
140
140
|
version=v,
|
141
141
|
tvars=vars,
|
142
|
-
allow_not_found=
|
142
|
+
allow_not_found=allow_not_found,
|
143
143
|
settings=settings,
|
144
144
|
secret_reader=secret_reader,
|
145
145
|
),
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc586.dist-info → qontract_reconcile-0.10.1rc587.dist-info}/top_level.txt
RENAMED
File without changes
|