qontract-reconcile 0.10.2.dev24__py3-none-any.whl → 0.10.2.dev25__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.dev24
3
+ Version: 0.10.2.dev25
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
@@ -745,7 +745,7 @@ tools/sd_app_sre_alert_report.py,sha256=jQpJdXVID68bSNtJNOGDh0-ei1CfEUS4Itr4MAaB
745
745
  tools/template_validation.py,sha256=qpKYaTgk0GOPGa2Ct5_5sKdwIHtCAKIBGzsMPuJU5fw,3371
746
746
  tools/cli_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
747
747
  tools/cli_commands/container_images_report.py,sha256=8fG9XU-eEhJ7hKCdQzBcdPpvIJR-8WGkHOgFEulpfYQ,5213
748
- tools/cli_commands/erv2.py,sha256=1eilft_xwfGDQAMuOitKCzZw21Abmh0aDdCTafT1unw,23380
748
+ tools/cli_commands/erv2.py,sha256=iqihq908iJYIQoaNq3Iofp5SQP8S-DhTurzGdnEragU,23218
749
749
  tools/cli_commands/gpg_encrypt.py,sha256=NhzwN49UN7P5_FJgTUN5A4BIwNbFokIE4lwDax2iP5k,4891
750
750
  tools/cli_commands/systems_and_tools.py,sha256=EMHOF1AtUDaoSk0bbjl6oUKYAz4rTZjIBaF-6E6GspM,16816
751
751
  tools/cli_commands/cost_report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -767,7 +767,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
767
767
  tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
768
768
  tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
769
769
  tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
770
- qontract_reconcile-0.10.2.dev24.dist-info/METADATA,sha256=3PESZ9C6DwAy3yl39ijxJD9JP3-4K2PC0C-yPyZ0MaI,24665
771
- qontract_reconcile-0.10.2.dev24.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
772
- qontract_reconcile-0.10.2.dev24.dist-info/entry_points.txt,sha256=JniHZPadNOILPyfSl0LF2YSp3Db7K2_W2CN7i9f3Gos,540
773
- qontract_reconcile-0.10.2.dev24.dist-info/RECORD,,
770
+ qontract_reconcile-0.10.2.dev25.dist-info/METADATA,sha256=Iia7V8zNvzM3nF9KHAKkV8RG1MCrFVnDLiPHqq2Vfxw,24665
771
+ qontract_reconcile-0.10.2.dev25.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
772
+ qontract_reconcile-0.10.2.dev25.dist-info/entry_points.txt,sha256=JniHZPadNOILPyfSl0LF2YSp3Db7K2_W2CN7i9f3Gos,540
773
+ qontract_reconcile-0.10.2.dev25.dist-info/RECORD,,
@@ -185,10 +185,10 @@ class Erv2Cli:
185
185
  "run",
186
186
  "--name",
187
187
  "erv2",
188
- "--mount",
189
- f"type=bind,source={input_file!s},target=/inputs/input.json",
190
- "--mount",
191
- f"type=bind,source={credentials!s},target=/credentials",
188
+ "-v",
189
+ f"{input_file!s}:/inputs/input.json:Z",
190
+ "-v",
191
+ f"{credentials!s}:/credentials:Z",
192
192
  "-e",
193
193
  "AWS_SHARED_CREDENTIALS_FILE=/credentials",
194
194
  "--entrypoint",
@@ -236,10 +236,10 @@ class Erv2Cli:
236
236
  "erv2-debug-shell",
237
237
  "--rm",
238
238
  "-it",
239
- "--mount",
240
- f"type=bind,source={input_file!s},target=/inputs/input.json",
241
- "--mount",
242
- f"type=bind,source={credentials!s},target=/credentials",
239
+ "-v",
240
+ f"{input_file!s}:/inputs/input.json:Z",
241
+ "-v",
242
+ f"{credentials!s}:/credentials:Z",
243
243
  "-e",
244
244
  "AWS_SHARED_CREDENTIALS_FILE=/credentials",
245
245
  "--entrypoint",
@@ -269,10 +269,10 @@ class Erv2Cli:
269
269
  "--name",
270
270
  "erv2-unlock",
271
271
  "--rm",
272
- "--mount",
273
- f"type=bind,source={input_file!s},target=/inputs/input.json",
274
- "--mount",
275
- f"type=bind,source={credentials!s},target=/credentials",
272
+ "-v",
273
+ f"{input_file!s}:/inputs/input.json:Z",
274
+ "-v",
275
+ f"{credentials!s}:/credentials:Z",
276
276
  "-e",
277
277
  "AWS_SHARED_CREDENTIALS_FILE=/credentials",
278
278
  "--entrypoint",