qontract-reconcile 0.9.1rc146__py3-none-any.whl → 0.9.1rc147__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.9.1rc146
3
+ Version: 0.9.1rc147
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
@@ -408,7 +408,7 @@ reconcile/utils/ldap_client.py,sha256=atreTLA1f7gnG54Ub3JWkToP9tCwAci-q17dqB5XSh
408
408
  reconcile/utils/lean_terraform_client.py,sha256=PJio087h5zUoievA3SppDP_io6ypiS9refaN5Hpm1Dg,1055
409
409
  reconcile/utils/make.py,sha256=QaEwucrzbl8-VHS66Wfdjfo0ubmAcvt_hZGpiGsKU50,231
410
410
  reconcile/utils/metrics.py,sha256=7DO12hEJ7sNOjrTNmA24l5wmAe4MT0WgY-Y2iPhBgXI,2015
411
- reconcile/utils/oc.py,sha256=142wodk2C-z-jwOHMVDbEeSAhcK1TqIo4If6HwoQmDg,67876
411
+ reconcile/utils/oc.py,sha256=cBd9q6sBupVeZ7QvWvKHR533cuhgDf1tfd7UuSWBUKg,67901
412
412
  reconcile/utils/oc_connection_parameters.py,sha256=6ut-o751NVRFZgFYf8--CCWXWaHCVcSPSXioxU8xEMo,8699
413
413
  reconcile/utils/oc_filters.py,sha256=RWn8pC5A7ZZT7C6WPq9bOw5KBNkiAb5puFSr_FpdAf8,1358
414
414
  reconcile/utils/oc_map.py,sha256=qzjLGmZYsDA27RCqInZuhSIll4BXYMX6joCqhGpX1kU,9570
@@ -482,8 +482,8 @@ tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y
482
482
  tools/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
483
483
  tools/test/test_qontract_cli.py,sha256=awwTHEc2DWlykuqGIYM0WOBoSL0KRnOraCLk3C7izis,1401
484
484
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
485
- qontract_reconcile-0.9.1rc146.dist-info/METADATA,sha256=QeCDghJa6V2IskiYDJFUZKF2gPvTdD_XcC7BLrhSp5Y,2259
486
- qontract_reconcile-0.9.1rc146.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
487
- qontract_reconcile-0.9.1rc146.dist-info/entry_points.txt,sha256=3BPvsRryM1C4S_mb5kXmP5AVv-wJBzVCrOJyv6qUmc0,195
488
- qontract_reconcile-0.9.1rc146.dist-info/top_level.txt,sha256=j0CHPIc8TsVRB50wOz_jhxjjaRyCJB3NOQeXhuHS67c,34
489
- qontract_reconcile-0.9.1rc146.dist-info/RECORD,,
485
+ qontract_reconcile-0.9.1rc147.dist-info/METADATA,sha256=dgXfAlUj5bqwBXlPP8EVkpkGrcxcx8Vdkgw3jiJ--4s,2259
486
+ qontract_reconcile-0.9.1rc147.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
487
+ qontract_reconcile-0.9.1rc147.dist-info/entry_points.txt,sha256=3BPvsRryM1C4S_mb5kXmP5AVv-wJBzVCrOJyv6qUmc0,195
488
+ qontract_reconcile-0.9.1rc147.dist-info/top_level.txt,sha256=j0CHPIc8TsVRB50wOz_jhxjjaRyCJB3NOQeXhuHS67c,34
489
+ qontract_reconcile-0.9.1rc147.dist-info/RECORD,,
reconcile/utils/oc.py CHANGED
@@ -753,7 +753,7 @@ class OCDeprecated: # pylint: disable=too-many-public-methods
753
753
 
754
754
  def job_logs(self, namespace, name, follow, output):
755
755
  self.wait_for_job_running(namespace, name)
756
- cmd = ["logs", "-n", namespace, f"job/{name}"]
756
+ cmd = ["logs", "--all-containers=true", "-n", namespace, f"job/{name}"]
757
757
  if follow:
758
758
  cmd.append("-f")
759
759
  # pylint: disable=consider-using-with