diff options
author | Adam King <adking@redhat.com> | 2024-08-20 16:51:09 +0200 |
---|---|---|
committer | Adam King <adking@redhat.com> | 2024-08-20 16:51:09 +0200 |
commit | 8cc3a35c2dcd7553f0c1b45a895401c4e575f99d (patch) | |
tree | 15e909de12239dcb9934755a502a4f0ca6841591 /src/cephadm | |
parent | Merge pull request #58460 from rkachach/fix_issue_oauth2_support (diff) | |
download | ceph-8cc3a35c2dcd7553f0c1b45a895401c4e575f99d.tar.xz ceph-8cc3a35c2dcd7553f0c1b45a895401c4e575f99d.zip |
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 <adking@redhat.com>
Diffstat (limited to 'src/cephadm')
-rw-r--r-- | src/cephadm/cephadmlib/daemons/nvmeof.py | 1 |
1 files changed, 1 insertions, 0 deletions
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]] |