Skip to content

Commit

Permalink
Merge pull request #1026 from chaos-genius/release-0.9.1
Browse files Browse the repository at this point in the history
release: bump version to v0.9.1
  • Loading branch information
Samyak2 committed Jul 8, 2022
2 parents 0553fef + 06aee72 commit ba9292b
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 @@ -149,7 +149,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.9.0")
CHAOSGENIUS_VERSION_MAIN = os.getenv("CHAOSGENIUS_VERSION_MAIN", "0.9.1")
"""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 @@ -38,7 +38,7 @@ services:

chaosgenius-server:
container_name: chaosgenius-server
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: sh setup/run-backend-docker.sh
restart: unless-stopped
volumes:
Expand Down Expand Up @@ -97,7 +97,7 @@ services:

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

chaosgenius-scheduler:
container_name: chaosgenius-scheduler
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: celery -A run.celery beat --loglevel=DEBUG
restart: unless-stopped
environment:
Expand Down Expand Up @@ -175,7 +175,7 @@ services:

chaosgenius-worker-analytics:
container_name: chaosgenius-worker-analytics
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q anomaly-rca
restart: unless-stopped
environment:
Expand Down Expand Up @@ -229,7 +229,7 @@ services:

chaosgenius-worker-alerts:
container_name: chaosgenius-worker-alerts
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q alerts
restart: unless-stopped
environment:
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.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: sh setup/run-backend-docker.sh
restart: unless-stopped
volumes:
Expand Down Expand Up @@ -70,7 +70,7 @@ services:

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

chaosgenius-scheduler:
container_name: chaosgenius-scheduler
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: celery -A run.celery beat --loglevel=DEBUG
restart: unless-stopped
environment:
Expand Down Expand Up @@ -146,7 +146,7 @@ services:

chaosgenius-worker-analytics:
container_name: chaosgenius-worker-analytics
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q anomaly-rca
restart: unless-stopped
environment:
Expand Down Expand Up @@ -200,7 +200,7 @@ services:

chaosgenius-worker-alerts:
container_name: chaosgenius-worker-alerts
image: chaosgenius/chaosgenius-server:0.9.0
image: chaosgenius/chaosgenius-server:0.9.1
command: celery -A run.celery worker --loglevel=INFO --concurrency=2 -P processes -Q alerts
restart: unless-stopped
environment:
Expand Down

0 comments on commit ba9292b

Please sign in to comment.