Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #887 from chaos-genius/release/bumped-version-v0.5.2
Browse files Browse the repository at this point in the history
Release/bumped version v0.5.2
  • Loading branch information
rjdp authored Apr 4, 2022
2 parents e92127f + 55112bb commit d87f9ab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion chaos_genius/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _make_bool(val: Union[str, bool]) -> bool:
TASK_CHECKPOINT_LIMIT: int = int(os.getenv("TASK_CHECKPOINT_LIMIT", 1000))
"""Number of last checkpoints to retrieve in Task Monitor"""

CHAOSGENIUS_VERSION_MAIN = os.getenv("CHAOSGENIUS_VERSION_MAIN", "0.5.1")
CHAOSGENIUS_VERSION_MAIN = os.getenv("CHAOSGENIUS_VERSION_MAIN", "0.5.2")
"""ChaosGenius version - semver part only"""
CHAOSGENIUS_VERSION_POSTFIX = os.getenv("CHAOSGENIUS_VERSION_POSTFIX", "git")
"""ChaosGenius version - postfix to identify deployment"""
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.thirdparty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:

chaosgenius-server:
container_name: chaosgenius-server
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: sh setup/run-backend-docker.sh
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down Expand Up @@ -93,7 +93,7 @@ services:

chaosgenius-webapp:
container_name: chaosgenius-webapp
image: chaosgenius/chaosgenius-webapp:0.5.1
image: chaosgenius/chaosgenius-webapp:0.5.2
command: >
sh -c "npx react-inject-env set -d ./ &&
nginx -g 'daemon off;'"
Expand Down Expand Up @@ -133,7 +133,7 @@ services:

chaosgenius-scheduler:
container_name: chaosgenius-scheduler
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: celery -A run.celery beat --loglevel=DEBUG
environment:
- IN_DOCKER=True
Expand Down Expand Up @@ -168,7 +168,7 @@ services:

chaosgenius-worker-analytics:
container_name: chaosgenius-worker-analytics
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q anomaly-rca
environment:
- IN_DOCKER=True
Expand Down Expand Up @@ -220,7 +220,7 @@ services:

chaosgenius-worker-alerts:
container_name: chaosgenius-worker-alerts
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q alerts
environment:
- IN_DOCKER=True
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ x-version:
services:
chaosgenius-server:
container_name: chaosgenius-server
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: sh setup/run-backend-docker.sh
volumes:
- /var/run/docker.sock:/var/run/docker.sock
Expand Down Expand Up @@ -67,7 +67,7 @@ services:

chaosgenius-webapp:
container_name: chaosgenius-webapp
image: chaosgenius/chaosgenius-webapp:0.5.1
image: chaosgenius/chaosgenius-webapp:0.5.2
command: >
sh -c "npx react-inject-env set -d ./ &&
nginx -g 'daemon off;'"
Expand Down Expand Up @@ -105,7 +105,7 @@ services:

chaosgenius-scheduler:
container_name: chaosgenius-scheduler
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: celery -A run.celery beat --loglevel=DEBUG
environment:
- IN_DOCKER=True
Expand Down Expand Up @@ -140,7 +140,7 @@ services:

chaosgenius-worker-analytics:
container_name: chaosgenius-worker-analytics
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q anomaly-rca
environment:
- IN_DOCKER=True
Expand Down Expand Up @@ -192,7 +192,7 @@ services:

chaosgenius-worker-alerts:
container_name: chaosgenius-worker-alerts
image: chaosgenius/chaosgenius-server:0.5.1
image: chaosgenius/chaosgenius-server:0.5.2
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q alerts
environment:
- IN_DOCKER=True
Expand Down

0 comments on commit d87f9ab

Please sign in to comment.