Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:
- OTEL_SERVICE_NAME=abada-engine-prod
- OTEL_RESOURCE_ATTRIBUTES=project=abada,service.version=0.8.3-alpha
deploy:
replicas: ${ABADA_ENGINE_REPLICAS:-3}
replicas: ${ABADA_ENGINE_REPLICAS:-1}
resources:
limits:
cpus: '1.0'
Expand Down
20 changes: 8 additions & 12 deletions release/quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,16 @@ check_prerequisites() {
}

download_compose() {
if [ -f "$LocalFile" ]; then
print_step "Using existing $LocalFile"
print_step "Downloading latest configuration..."
if command -v curl &> /dev/null; then
curl -sSL "$RELEASE_URL" -o "$LocalFile"
elif command -v wget &> /dev/null; then
wget -q "$RELEASE_URL" -O "$LocalFile"
else
print_step "Downloading configuration..."
if command -v curl &> /dev/null; then
curl -sSL "$RELEASE_URL" -o "$LocalFile"
elif command -v wget &> /dev/null; then
wget -q "$RELEASE_URL" -O "$LocalFile"
else
echo -e "${RED}Error: curl or wget is required to download the configuration.${NC}"
exit 1
fi
echo "✓ Configuration downloaded"
echo -e "${RED}Error: curl or wget is required to download the configuration.${NC}"
exit 1
fi
echo "✓ Configuration downloaded"
}

start_platform() {
Expand Down
Loading