Skip to content

Commit 43f6df4

Browse files
prsunnylguohan
authored andcommitted
Add nbrmgr to supervisor control (#2265)
* Add nbrmgr to supervisord conf * Corrected priority values [Fix typo] * Submodule update for Neighbor manager daemon Submodule update sonic-swss-common: edbfeec - Remove default docker name value of swss. (#250) 9728462 - Corrected configDB name for neigh table (#251) 6decc65 - Add NEIGH_TABLE to configDB for neighbor configuration (#249) 9918ae6 - Add ProducerStateTable temp view implementation and UT (#247) 41408f2 - Update README on dependencies d9c0ba4 -Update README on the section 'Build with Google Test' bb7fa5b - [ut]: explicit convert is to bool type (#248) 661b82c - Add gtest instruction in README Submodule update sonic-swss 705b092 - Support ConfigDB neighbor configuration, introduce nbrmgr daemon (#693) 8522390 - Add vxlan switch attributes to switch orch (#712) b123fa0 - [schema] update WARM_RESTART_TABLE:process_name schema document (#707) 2d7ab0c - Revert "Align default MTU value as SAI default (#705)" (#710) 836a58c - Align default MTU value as SAI default (#705) bffa01f - VNET/VXLAN changes (#643) b750a4b - [watermarkorch] add watermarkorch, extend queue and pg counters with wat\u2026 (#629)
1 parent 1467434 commit 43f6df4

File tree

6 files changed

+22
-2
lines changed

6 files changed

+22
-2
lines changed

dockers/docker-orchagent/start.sh

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ supervisorctl start enable_counters
4141

4242
supervisorctl start vrfmgrd
4343

44+
supervisorctl start nbrmgrd
45+
4446
# Start arp_update when VLAN exists
4547
VLAN=`sonic-cfggen -d -v 'VLAN.keys() | join(" ") if VLAN'`
4648
if [ "$VLAN" != "" ]; then

dockers/docker-orchagent/supervisord.conf

+8
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,11 @@ startretries=0
127127
stdout_logfile=syslog
128128
stderr_logfile=syslog
129129

130+
[program:nbrmgrd]
131+
command=/usr/bin/nbrmgrd
132+
priority=16
133+
autostart=false
134+
autorestart=false
135+
stdout_logfile=syslog
136+
stderr_logfile=syslog
137+

platform/vs/docker-sonic-vs/start.sh

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ supervisorctl start buffermgrd
6262

6363
supervisorctl start vrfmgrd
6464

65+
supervisorctl start nbrmgrd
66+
6567
# Start arp_update when VLAN exists
6668
VLAN=`sonic-cfggen -d -v 'VLAN.keys() | join(" ") if VLAN'`
6769
if [ "$VLAN" != "" ]; then

platform/vs/docker-sonic-vs/supervisord.conf

+8
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,11 @@ startsecs=0
164164
startretries=0
165165
stdout_logfile=syslog
166166
stderr_logfile=syslog
167+
168+
[program:nbrmgrd]
169+
command=/usr/bin/nbrmgrd
170+
priority=20
171+
autostart=false
172+
autorestart=false
173+
stdout_logfile=syslog
174+
stderr_logfile=syslog

src/sonic-swss

src/sonic-swss-common

0 commit comments

Comments
 (0)