-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sms-soak-test
- Loading branch information
Showing
25 changed files
with
352 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker run --rm -v "$PWD:/mnt" koalaman/shellcheck:v0.9.0 -P ./bin/ -x ./scripts/*.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Shellcheck | ||
on: | ||
push: | ||
paths: | ||
- "**/*.sh" | ||
|
||
jobs: | ||
shellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Shellcheck | ||
run: | | ||
.github/workflows/scripts/run-shellcheck.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
# Check and see if this is running in K8s and if so, wait for cloudwatch agent | ||
if [ -n "${STATSD_HOST}" ]; then | ||
echo "Initializing... Waiting for CWAgent to become ready within the next 30 seconds." | ||
timeout=30 | ||
while [ $timeout -gt 0 ]; do | ||
if nc -vz "$STATSD_HOST" 25888; then | ||
echo "CWAgent is Ready." | ||
break | ||
else | ||
echo "Waiting for CWAgent to become ready." | ||
sleep 1 | ||
timeout=$((timeout - 1)) | ||
fi | ||
done | ||
|
||
if [ $timeout -eq 0 ]; then | ||
echo "Timeout reached. CWAgent did not become ready in 30 seconds." | ||
exit 1 | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,9 @@ | ||
#!/bin/sh | ||
|
||
# runs celery with all celery queues except the throtted sms queue | ||
|
||
set -e | ||
|
||
# Check and see if this is running in K8s and if so, wait for cloudwatch agent | ||
if [[ ! -z "${STATSD_HOST}" ]]; then | ||
|
||
echo "Initializing... Waiting for CWAgent to become ready." | ||
while : | ||
do | ||
if nc -vz $STATSD_HOST 25888; then | ||
echo "CWAgent is Ready." | ||
break; | ||
else | ||
echo "Waiting for CWAgent to become ready." | ||
sleep 1 | ||
fi | ||
done | ||
fi | ||
# Runs celery with all celery queues except the throtted sms queue. | ||
|
||
echo "Start celery, concurrency: ${CELERY_CONCURRENCY-4}" | ||
|
||
celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=${CELERY_CONCURRENCY-4} -Q database-tasks,-priority-database-tasks.fifo,-normal-database-tasks,-bulk-database-tasks,job-tasks,notify-internal-tasks,periodic-tasks,priority-tasks,normal-tasks,bulk-tasks,reporting-tasks,research-mode-tasks,retry-tasks,send-sms-tasks,send-sms-high,send-sms-medium,send-sms-low,send-email-tasks,service-callbacks,delivery-receipts | ||
celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency="${CELERY_CONCURRENCY-4}" -Q database-tasks,-priority-database-tasks.fifo,-normal-database-tasks,-bulk-database-tasks,job-tasks,notify-internal-tasks,periodic-tasks,priority-tasks,normal-tasks,bulk-tasks,reporting-tasks,research-mode-tasks,retry-tasks,send-sms-tasks,send-sms-high,send-sms-medium,send-sms-low,send-email-tasks,service-callbacks,delivery-receipts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# runs the celery beat process. This runs the periodic tasks | ||
|
||
set -e | ||
|
||
# Check and see if this is running in K8s and if so, wait for cloudwatch agent | ||
if [[ ! -z "${STATSD_HOST}" ]]; then | ||
|
||
echo "Initializing... Waiting for CWAgent to become ready." | ||
while : | ||
do | ||
if nc -vz $STATSD_HOST 25888; then | ||
echo "CWAgent is Ready." | ||
break; | ||
else | ||
echo "Waiting for CWAgent to become ready." | ||
sleep 1 | ||
fi | ||
done | ||
fi | ||
# Runs the celery beat process, i.e the Celery periodic tasks. | ||
|
||
celery -A run_celery.notify_celery beat --loglevel=INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,10 @@ | ||
#!/bin/sh | ||
|
||
# runs celery with all celery queues except send-throttled-sms-tasks, send-sms-* and send-email-* | ||
|
||
set -e | ||
|
||
# Check and see if this is running in K8s and if so, wait for cloudwatch agent | ||
if [[ ! -z "${STATSD_HOST}" ]]; then | ||
|
||
echo "Initializing... Waiting for CWAgent to become ready." | ||
while : | ||
do | ||
if nc -vz $STATSD_HOST 25888; then | ||
echo "CWAgent is Ready." | ||
break; | ||
else | ||
echo "Waiting for CWAgent to become ready." | ||
sleep 1 | ||
fi | ||
done | ||
fi | ||
# Runs celery with all celery queues except send-throttled-sms-tasks, | ||
# send-sms-* and send-email-*. | ||
|
||
echo "Start celery, concurrency: ${CELERY_CONCURRENCY-4}" | ||
|
||
celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency=${CELERY_CONCURRENCY-4} -Q database-tasks,-priority-database-tasks.fifo,-normal-database-tasks,-bulk-database-tasks,job-tasks,notify-internal-tasks,periodic-tasks,priority-tasks,normal-tasks,bulk-tasks,reporting-tasks,research-mode-tasks,retry-tasks,service-callbacks,delivery-receipts | ||
celery -A run_celery.notify_celery worker --pidfile="/tmp/celery.pid" --loglevel=INFO --concurrency="${CELERY_CONCURRENCY-4}" -Q database-tasks,-priority-database-tasks.fifo,-normal-database-tasks,-bulk-database-tasks,job-tasks,notify-internal-tasks,periodic-tasks,priority-tasks,normal-tasks,bulk-tasks,reporting-tasks,research-mode-tasks,retry-tasks,service-callbacks,delivery-receipts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.