From: John Mulligan Date: Wed, 25 Feb 2026 00:21:14 +0000 (-0500) Subject: mgr/cephadm: pass tunables smb service spec param to binary X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a045b0f595b852ef5606d41ca22ba7e8c14845b2;p=ceph.git mgr/cephadm: pass tunables smb service spec param to binary Signed-off-by: John Mulligan --- diff --git a/src/pybind/mgr/cephadm/services/smb.py b/src/pybind/mgr/cephadm/services/smb.py index 344b97b5b1c..ef945d9b1f4 100644 --- a/src/pybind/mgr/cephadm/services/smb.py +++ b/src/pybind/mgr/cephadm/services/smb.py @@ -189,6 +189,8 @@ class SMBService(CephService): _add_cfg(files, c_name, _to_conf(ext_cluster)) k_name = f'{ext_cluster.alias}.ceph.keyring' _add_cfg(files, k_name, _to_keyring(ext_cluster)) + if smb_spec.tunables: + config_blobs['tunables'] = smb_spec.tunables logger.debug('smb generate_config: %r', config_blobs) self._configure_cluster_meta(smb_spec, daemon_spec)