diff options
author | Redouane Kachach <rkachach@redhat.com> | 2023-07-11 09:09:50 +0200 |
---|---|---|
committer | Redouane Kachach <rkachach@redhat.com> | 2023-07-11 09:15:37 +0200 |
commit | 1dcbf61e13e2eafca88a86ea8adb1210c8f73c94 (patch) | |
tree | f22679388b023d9e00eab329df03569d3102bdc9 /src/python-common | |
parent | mgr/cephadm: Adding suppport for nvmeof (diff) | |
download | ceph-1dcbf61e13e2eafca88a86ea8adb1210c8f73c94.tar.xz ceph-1dcbf61e13e2eafca88a86ea8adb1210c8f73c94.zip |
Adding more ports needed by nvmeof daemon
Signed-off-by: Redouane Kachach <rkachach@redhat.com>
Diffstat (limited to 'src/python-common')
-rw-r--r-- | src/python-common/ceph/deployment/service_spec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python-common/ceph/deployment/service_spec.py b/src/python-common/ceph/deployment/service_spec.py index a7aa46c9dda..3f25db333d6 100644 --- a/src/python-common/ceph/deployment/service_spec.py +++ b/src/python-common/ceph/deployment/service_spec.py @@ -1175,7 +1175,7 @@ class NvmeofServiceSpec(ServiceSpec): self.transports = transports def get_port_start(self) -> List[int]: - return [self.port or 5500] + return [5500, 4420, 8009] def validate(self) -> None: # TODO: what other parameters should be validated as part of this function? |