5d5d5739c2
The `-sv2` suffix was used to differentiate SNMP Dockers when we transitioned from "SONiCv1" to "SONiCv2", about four years ago. The old Docker materials were removed long ago; there is no need to keep this suffix. Removing it aligns the name with all the other Dockers. Also edit Monit configuration to detect proper snmp-subagent command line in Buster, and make snmpd command line matching more robust.
33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
# docker image for snmp agent
|
|
|
|
DOCKER_SNMP_STEM = docker-snmp
|
|
DOCKER_SNMP = $(DOCKER_SNMP_STEM).gz
|
|
DOCKER_SNMP_DBG = $(DOCKER_SNMP_STEM)-$(DBG_IMAGE_MARK).gz
|
|
|
|
$(DOCKER_SNMP)_PATH = $(DOCKERS_PATH)/docker-snmp
|
|
|
|
## TODO: remove LIBPY3_DEV if we can get pip3 directly
|
|
$(DOCKER_SNMP)_DEPENDS += $(SNMP) $(SNMPD)
|
|
|
|
$(DOCKER_SNMP)_DBG_DEPENDS = $($(DOCKER_CONFIG_ENGINE_BUSTER)_DBG_DEPENDS)
|
|
$(DOCKER_SNMP)_DBG_DEPENDS += $(SNMP_DBG) $(SNMPD_DBG) $(LIBSNMP_DBG)
|
|
|
|
$(DOCKER_SNMP)_DBG_IMAGE_PACKAGES = $($(DOCKER_CONFIG_ENGINE_BUSTER)_DBG_IMAGE_PACKAGES)
|
|
|
|
$(DOCKER_SNMP)_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY3) $(SWSSSDK_PY3) $(ASYNCSNMP_PY3)
|
|
$(DOCKER_SNMP)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE_BUSTER)
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_SNMP)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_SNMP)
|
|
|
|
SONIC_DOCKER_DBG_IMAGES += $(DOCKER_SNMP_DBG)
|
|
SONIC_INSTALL_DOCKER_DBG_IMAGES += $(DOCKER_SNMP_DBG)
|
|
|
|
$(DOCKER_SNMP)_CONTAINER_NAME = snmp
|
|
$(DOCKER_SNMP)_RUN_OPT += --privileged -t
|
|
$(DOCKER_SNMP)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
# mount Arista platform python libraries to support corresponding platforms SNMP power status query
|
|
$(DOCKER_SNMP)_RUN_OPT += -v /usr/lib/python3/dist-packages/arista:/usr/lib/python3/dist-packages/arista:ro
|
|
$(DOCKER_SNMP)_FILES += $(SUPERVISOR_PROC_EXIT_LISTENER_SCRIPT)
|
|
$(DOCKER_SNMP)_BASE_IMAGE_FILES += monit_snmp:/etc/monit/conf.d
|