From 8cc3a35c2dcd7553f0c1b45a895401c4e575f99d Mon Sep 17 00:00:00 2001 From: Adam King Date: Tue, 20 Aug 2024 10:51:09 -0400 Subject: [PATCH] cephadm: mount nvmeof certs into container https://github.com/ceph/ceph/commit/2946b195edfc0b6a5cfcc661079e351601707ecb incorrectly removed this line and since then these certs are not being properly mounted into the container. This commit adds the line back Signed-off-by: Adam King --- src/cephadm/cephadmlib/daemons/nvmeof.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cephadm/cephadmlib/daemons/nvmeof.py b/src/cephadm/cephadmlib/daemons/nvmeof.py index 9b849497e0e..9bce32201bb 100644 --- a/src/cephadm/cephadmlib/daemons/nvmeof.py +++ b/src/cephadm/cephadmlib/daemons/nvmeof.py @@ -111,6 +111,7 @@ class CephNvmeof(ContainerDaemonForm): ) else: mounts.update(self._get_container_mounts(data_dir, log_dir)) + mounts.update(self._get_tls_cert_key_mounts(data_dir, self.files)) def customize_container_binds( self, ctx: CephadmContext, binds: List[List[str]] -- 2.39.5