a477dbb175
Why I did it Upgrade FRR to version 8.2.2. Build libyang2 required by FRR. How I did it Update FRR version and tag. How to verify it Following tests were performed on sonic-vs: BGP docker status check BGP configuration and session establishment Route redistribution and ping Issued show commands to check the bgp neighbor and routes Checked app-db to ensure bgp routes are installed with correct interface and nexthop. Create VRF and check FRR knows the VRF Check VRF routes are installed in app-db with correct Vrf name and next-hop Establish BGP Evpn session and check if Evpn routes (multicast, mac, prefix) are exchanged and installed correctly in app-db.
45 lines
1.7 KiB
Makefile
45 lines
1.7 KiB
Makefile
# docker image for fpm-frr
|
|
|
|
DOCKER_FPM_FRR_STEM = docker-fpm-frr
|
|
DOCKER_FPM_FRR = $(DOCKER_FPM_FRR_STEM).gz
|
|
DOCKER_FPM_FRR_DBG = $(DOCKER_FPM_FRR_STEM)-$(DBG_IMAGE_MARK).gz
|
|
|
|
$(DOCKER_FPM_FRR)_PATH = $(DOCKERS_PATH)/$(DOCKER_FPM_FRR_STEM)
|
|
$(DOCKER_FPM_FRR)_PYTHON_WHEELS += $(SONIC_BGPCFGD) $(SONIC_FRR_MGMT_FRAMEWORK)
|
|
|
|
$(DOCKER_FPM_FRR)_DEPENDS += $(FRR) $(FRR_SNMP) $(SWSS) $(LIBYANG2)
|
|
$(DOCKER_FPM_FRR)_DBG_DEPENDS = $($(DOCKER_SWSS_LAYER_BUSTER)_DBG_DEPENDS)
|
|
$(DOCKER_FPM_FRR)_DBG_DEPENDS += $(SWSS_DBG) $(LIBSWSSCOMMON_DBG) \
|
|
$(FRR_DBG) $(FRR_SNMP_DBG) $(LIBYANG2_DBG)
|
|
|
|
$(DOCKER_FPM_FRR)_DBG_IMAGE_PACKAGES = $($(DOCKER_SWSS_LAYER_BUSTER)_DBG_IMAGE_PACKAGES)
|
|
|
|
$(DOCKER_FPM_FRR)_LOAD_DOCKERS += $(DOCKER_SWSS_LAYER_BUSTER)
|
|
|
|
$(DOCKER_FPM_FRR)_VERSION = 1.0.0
|
|
$(DOCKER_FPM_FRR)_PACKAGE_NAME = fpm-frr
|
|
$(DOCKER_FPM_FRR)_WARM_SHUTDOWN_BEFORE = swss
|
|
$(DOCKER_FPM_FRR)_WARM_SHUTDOWN_AFTER = radv
|
|
$(DOCKER_FPM_FRR)_FAST_SHUTDOWN_BEFORE = swss
|
|
$(DOCKER_FPM_FRR)_FAST_SHUTDOWN_AFTER = radv
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_FPM_FRR)
|
|
|
|
SONIC_DOCKER_DBG_IMAGES += $(DOCKER_FPM_FRR_DBG)
|
|
|
|
$(DOCKER_FPM_FRR)_CONTAINER_NAME = bgp
|
|
$(DOCKER_FPM_FRR)_RUN_OPT += --privileged -t
|
|
$(DOCKER_FPM_FRR)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
|
|
$(DOCKER_FPM_FRR)_FILES += $(SUPERVISOR_PROC_EXIT_LISTENER_SCRIPT)
|
|
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += vtysh:/usr/bin/vtysh
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += rvtysh:/usr/bin/rvtysh
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += TSA:/usr/bin/TSA
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += TSB:/usr/bin/TSB
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += TSC:/usr/bin/TSC
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += TS:/usr/bin/TS
|
|
|
|
SONIC_BUSTER_DOCKERS += $(DOCKER_FPM_FRR)
|
|
SONIC_BUSTER_DBG_DOCKERS += $(DOCKER_FPM_FRR_DBG)
|