315663241d
* Made Change to have Configurable option to enable/disable docker image * [Submodule-Update] sonic-utilities . Following PR has been merged tp 201911 * Platform Driver Development Framework (PDDF): Adding PDDF CLI utils * [config] Add 'feature' subcommand * [fwutil]: Command-line utility for interacting with platform components * [show] Add subcommand to display the status of auto-restart feature for each container * [config] Add subcommand to configure the status of auto-restart feature for each container * [Command Reference] Document CLI commands related to container auto-restart feature * [config/main.py] Modify reload() function to load configuration from init_cfg.json * Fix for dhcp_relay deletion on a VLAN * [config] Check if service exists before start/stop/restart of service * Multi-Db changes for NAT feature * [reboot] make sure the reboot happens even if platform reboot failed
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
# docker image for nat
|
|
|
|
DOCKER_NAT_STEM = docker-nat
|
|
DOCKER_NAT = $(DOCKER_NAT_STEM).gz
|
|
DOCKER_NAT_DBG = $(DOCKER_NAT_STEM)-$(DBG_IMAGE_MARK).gz
|
|
|
|
$(DOCKER_NAT)_PATH = $(DOCKERS_PATH)/$(DOCKER_NAT_STEM)
|
|
|
|
$(DOCKER_NAT)_DEPENDS += $(SWSS) $(REDIS_TOOLS) $(IPTABLESIP4TC) $(IPTABLESIP6TC) $(IPTABLESIPTC) $(IPXTABLES12) $(IPTABLES)
|
|
$(DOCKER_NAT)_DBG_DEPENDS = $($(DOCKER_CONFIG_ENGINE_STRETCH)_DBG_DEPENDS)
|
|
$(DOCKER_NAT)_DBG_DEPENDS += $(SWSS_DBG) $(LIBSWSSCOMMON_DBG)
|
|
$(DOCKER_NAT)_DBG_IMAGE_PACKAGES = $($(DOCKER_CONFIG_ENGINE_STRETCH)_DBG_IMAGE_PACKAGES)
|
|
|
|
$(DOCKER_NAT)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE_STRETCH)
|
|
|
|
ifeq ($(ENABLE_NAT), y)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_NAT)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_NAT)
|
|
SONIC_STRETCH_DOCKERS += $(DOCKER_NAT)
|
|
endif
|
|
|
|
ifeq ($(ENABLE_NAT), y)
|
|
SONIC_DOCKER_DBG_IMAGES += $(DOCKER_NAT_DBG)
|
|
SONIC_INSTALL_DOCKER_DBG_IMAGES += $(DOCKER_NAT_DBG)
|
|
SONIC_STRETCH_DBG_DOCKERS += $(DOCKER_NAT_DBG)
|
|
endif
|
|
|
|
$(DOCKER_NAT)_CONTAINER_NAME = nat
|
|
$(DOCKER_NAT)_RUN_OPT += --privileged -t
|
|
$(DOCKER_NAT)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
$(DOCKER_NAT)_RUN_OPT += -v /host/warmboot:/var/warmboot
|
|
|
|
$(DOCKER_NAT)_BASE_IMAGE_FILES += natctl:/usr/bin/natctl
|
|
|