6bffcb9e71
- Add INCLUDE_PINS to config to enable/disable container - Add Docker files and supporting resources - Add sonic-pins submodule and associated make files Submission containing materials of a third party: Copyright Google LLC; Licensed under Apache 2.0 #### Why I did it Adds P4RT container to SONiC for PINS The P4RT app is covered by this HLD: https://github.com/pins/SONiC/blob/master/doc/pins/p4rt_app_hld.md #### How I did it Followed the pattern and templates used for other SONiC applications #### How to verify it Build SONiC with INCLUDE_P4RT set to "y". Verify that the resulting build has a container called "p4rt" running. You can verify that the service is up by running the following command on the SONiC switch: ```bash sudo netstat -lpnt | grep p4rt ``` You should see the service listening on TCP port 9559. #### Which release branch to backport (provide reason below if selected) None #### Description for the changelog Build P4RT container for PINS
36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
# docker image for p4rt
|
|
|
|
DOCKER_P4RT_STEM = docker-sonic-p4rt
|
|
DOCKER_P4RT = $(DOCKER_P4RT_STEM).gz
|
|
DOCKER_P4RT_DBG = $(DOCKER_P4RT_STEM)-$(DBG_IMAGE_MARK).gz
|
|
|
|
$(DOCKER_P4RT)_PATH = $(DOCKERS_PATH)/$(DOCKER_P4RT_STEM)
|
|
|
|
$(DOCKER_P4RT)_DEPENDS += $(SONIC_P4RT)
|
|
$(DOCKER_P4RT)_DBG_DEPENDS = $($(DOCKER_CONFIG_ENGINE_BUSTER)_DBG_DEPENDS)
|
|
$(DOCKER_P4RT)_DBG_DEPENDS += $(SONIC_P4RT_DBG) $(LIBSWSSCOMMON_DBG)
|
|
$(DOCKER_P4RT)_DBG_DEPENDS += $(LIBSAIREDIS_DBG)
|
|
$(DOCKER_P4RT)_DBG_IMAGE_PACKAGES = $($(DOCKER_CONFIG_ENGINE_BUSTER)_DBG_IMAGE_PACKAGES)
|
|
|
|
$(DOCKER_P4RT)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE_BUSTER)
|
|
|
|
$(DOCKER_P4RT)_VERSION = 1.0.0
|
|
$(DOCKER_P4RT)_PACKAGE_NAME = p4rt
|
|
$(DOCKER_P4RT)_WARM_SHUTDOWN_BEFORE = swss
|
|
$(DOCKER_P4RT)_FAST_SHUTDOWN_BEFORE = swss
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_P4RT)
|
|
SONIC_DOCKER_DBG_IMAGES += $(DOCKER_P4RT_DBG)
|
|
|
|
ifeq ($(INCLUDE_P4RT), y)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_P4RT)
|
|
SONIC_INSTALL_DOCKER_DBG_IMAGES += $(DOCKER_P4RT_DBG)
|
|
endif
|
|
|
|
$(DOCKER_P4RT)_CONTAINER_NAME = p4rt
|
|
$(DOCKER_P4RT)_RUN_OPT += --privileged -t
|
|
$(DOCKER_P4RT)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
$(DOCKER_P4RT)_GIT_COMMIT = $(shell cd "$($(SONIC_P4RT)_SRC_PATH)" && git log -n 1 --format=format:"%H %s" || echo "Unable to fetch git log for p4rt")
|
|
|
|
$(DOCKER_P4RT)_FILES += $(SUPERVISOR_PROC_EXIT_LISTENER_SCRIPT)
|