qontract-reconcile 0.10.1rc661__py3-none-any.whl → 0.10.1rc662__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.1rc661
3
+ Version: 0.10.1rc662
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
@@ -616,7 +616,7 @@ reconcile/utils/state.py,sha256=zjsprjbOb0WddzmAvh8ACqAt0fcayrX2YPfz7qceRWw,1609
616
616
  reconcile/utils/structs.py,sha256=LcbLEg8WxfRqM6nW7NhcWN0YeqF7SQzxOgntmLs1SgY,352
617
617
  reconcile/utils/template.py,sha256=wTvRU4AnAV_o042tD4Mwls2dwWMuk7MKnde3MaCjaYg,331
618
618
  reconcile/utils/terraform_client.py,sha256=7L55Rvxfzj3KtJH8AD8D8YRfBnFpHiTFqSa5e2_9jtk,32092
619
- reconcile/utils/terrascript_aws_client.py,sha256=iM5ouzJh8qE7ixsbpo_JIaeJdLau7yBFu6AFeTqFK3M,271964
619
+ reconcile/utils/terrascript_aws_client.py,sha256=tX-dBE8dmvtvZWDGJ0JjTRNx11MIOIhwZJIueOaEYjA,272396
620
620
  reconcile/utils/three_way_diff_strategy.py,sha256=nyqeQsLCoPI6e16k2CF3b9KNgQLU-rPf5RtfdUfVMwE,4468
621
621
  reconcile/utils/throughput.py,sha256=iP4UWAe2LVhDo69mPPmgo9nQ7RxHD6_GS8MZe-aSiuM,344
622
622
  reconcile/utils/unleash.py,sha256=1D56CsZfE3ShDtN3IErE1T2eeIwNmxhK-yYbCotJ99E,3601
@@ -723,8 +723,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
723
723
  tools/test/test_qontract_cli.py,sha256=OvalpVRfY4pNmpMaWHHYqBjV68b1eGQjX8SCyTAXb1w,3501
724
724
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
725
725
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
726
- qontract_reconcile-0.10.1rc661.dist-info/METADATA,sha256=NPoriE5uBkt2VvGsrR-LjV6SkHgb7XS3ZlMRVOI0TBo,2382
727
- qontract_reconcile-0.10.1rc661.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
728
- qontract_reconcile-0.10.1rc661.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
729
- qontract_reconcile-0.10.1rc661.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
730
- qontract_reconcile-0.10.1rc661.dist-info/RECORD,,
726
+ qontract_reconcile-0.10.1rc662.dist-info/METADATA,sha256=xAYklbK2n0Hx1Z9xs0KoH9Y1zbE69OON9UxpfPO0_CU,2382
727
+ qontract_reconcile-0.10.1rc662.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
728
+ qontract_reconcile-0.10.1rc662.dist-info/entry_points.txt,sha256=rIxI5zWtHNlfpDeq1a7pZXAPoqf7HG32KMTN3MeWK_8,429
729
+ qontract_reconcile-0.10.1rc662.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
730
+ qontract_reconcile-0.10.1rc662.dist-info/RECORD,,
@@ -4071,6 +4071,15 @@ class TerrascriptClient: # pylint: disable=too-many-public-methods
4071
4071
  for k, v in cluster_mode.items():
4072
4072
  values[k] = v
4073
4073
  values.pop("availability_zones", None)
4074
+ elif spec.provider == "msk":
4075
+ if ebs_volume_size := values.get("broker_node_group_info", {}).pop(
4076
+ "ebs_volume_size", None
4077
+ ):
4078
+ values["broker_node_group_info"].setdefault(
4079
+ "storage_info", {}
4080
+ ).setdefault("ebs_storage_info", {})[
4081
+ "volume_size"
4082
+ ] = ebs_volume_size
4074
4083
 
4075
4084
  return values
4076
4085