Run auction handler script from main script

This commit is contained in:
Prathamesh Musale 2024-10-24 18:46:35 +05:30
parent 3bd5de4b18
commit 07f6d5a0c9
3 changed files with 11 additions and 3 deletions

View File

@ -11,10 +11,11 @@ services:
cerc-webapp-auction-handler:
image: cerc/webapp-deployer-backend:local
restart: always
environment:
RUN_AUCTIONS_HANDLER: "true"
volumes:
- srv:/srv
- config:/etc/config:ro
command: "./scripts/handle-auctions.sh"
volumes:
config:

View File

@ -11,8 +11,11 @@ if [ "$HANDLE_AUCTION_REQUESTS" = "true" ]; then
exit 2
fi
else
echo "Not handling auction requests, exiting..."
exit 0
echo "Not handling auction requests"
# k8s integration only supports "always" restart policy, so wait indefinitely
# TODO: Exit container once restart policy is supported
tail -f /dev/null
fi
STORAGE_ROOT="${STORAGE_ROOT:-/srv}"

View File

@ -1,5 +1,9 @@
#!/bin/bash
if [ "$RUN_AUCTIONS_HANDLER" = "true" ]; then
exec "./scripts/handle-auctions.sh"
fi
function is_privileged {
ip link add dummy0 type dummy >/dev/null
if [[ $? -eq 0 ]]; then