Skip to content

Commit 2e86caa

Browse files
Pterosaurprsunny
authored andcommitted
[vxlanmgrd]: Add vxlanmgrd start command (#2705)
* Add bridge-utils to orchagent image - Add vxlanmgrd to supervisorctl in docker -orchagent Signed-off-by: Ze Gan [email protected] * Update submodule pointer for swss to include Vxlanmgrd changes
1 parent 3a6d7be commit 2e86caa

File tree

5 files changed

+20
-1
lines changed

5 files changed

+20
-1
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 nbrmgrd
4343

44+
supervisorctl start vxlanmgrd
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

+7
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,10 @@ autorestart=false
127127
stdout_logfile=syslog
128128
stderr_logfile=syslog
129129

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

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

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ supervisorctl start buffermgrd
6363

6464
supervisorctl start nbrmgrd
6565

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

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

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

src/sonic-swss

0 commit comments

Comments
 (0)