Skip to content

Commit

Permalink
Add s3 options (#14541)
Browse files Browse the repository at this point in the history
  • Loading branch information
sourcecd authored Feb 14, 2025
1 parent a2e1626 commit 0c292ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions ydb/tools/cfg/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ def __init__(self, template, host_info_provider, validator=None, database=None,
self.http_proxy_config = self.__cluster_description.get("http_proxy_config")
self.blob_storage_config = self.__cluster_description.get("blob_storage_config")
self.memory_controller_config = self.__cluster_description.get("memory_controller_config")
self.s3_proxy_resolver_config = self.__cluster_description.get("s3_proxy_resolver_config")
self.channel_profile_config = self.__cluster_description.get("channel_profile_config")
self.immediate_controls_config = self.__cluster_description.get("immediate_controls_config")
self.cms_config = self.__cluster_description.get("cms_config")
Expand Down
3 changes: 3 additions & 0 deletions ydb/tools/cfg/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,9 @@ def get_normalized_config(self):
if self.__cluster_details.memory_controller_config is not None:
normalized_config["memory_controller_config"] = self.__cluster_details.memory_controller_config

if self.__cluster_details.s3_proxy_resolver_config is not None:
normalized_config["s3_proxy_resolver_config"] = self.__cluster_details.s3_proxy_resolver_config

if self.__cluster_details.blob_storage_config is not None:
normalized_config["blob_storage_config"] = self.__cluster_details.blob_storage_config
else:
Expand Down

0 comments on commit 0c292ea

Please sign in to comment.