Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create listeners after subsystem #927

Merged
merged 1 commit into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions control/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,10 +795,11 @@ def update(self) -> bool:
with self.update_is_active_lock:
prefix_list = [
GatewayState.SUBSYSTEM_PREFIX,
GatewayState.NAMESPACE_PREFIX, GatewayState.HOST_PREFIX,
GatewayState.HOST_PREFIX,
GatewayState.LISTENER_PREFIX,
GatewayState.NAMESPACE_PREFIX,
GatewayState.NAMESPACE_QOS_PREFIX,
GatewayState.NAMESPACE_HOST_PREFIX,
GatewayState.LISTENER_PREFIX,
]

# Get version and state from OMAP
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
environment:
TOUCHFILE: /tmp/ceph.touch
entrypoint: >-
sh -c './vstart.sh --new $$CEPH_VSTART_ARGS &&
sh -c './vstart.sh --without-dashboard --new $$CEPH_VSTART_ARGS &&
echo ceph dashboard nvmeof-gateway-add -i <(echo nvmeof-devel:5500) nvmeof.1 &&
pushd /etc/ceph &&
openssl req -x509 -newkey rsa:4096 -nodes -keyout server.key -out server.crt -days 3650 -subj /CN=my.server -addext "subjectAltName = IP:192.168.13.3, IP:0.0.0.0" &&
Expand Down
Loading