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 #911 from chaos-genius/0.6.0-version-upgrade
Browse files Browse the repository at this point in the history
0.6.0 version upgrade and avoid misleading timezone deprecation warning
  • Loading branch information
manassolanki authored Apr 11, 2022
2 parents 176342f + 62f8d4f commit 9f4c5f8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
2 changes: 0 additions & 2 deletions chaos_genius/core/utils/constants.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""Provides constants for Chaos Genius."""

SUPPORTED_TIMEZONES = {
"GMT": "GMT+00:00",
"UTC": "GMT+00:00",
"ECT": "GMT+01:00",
"EET": "GMT+02:00",
"ART": "GMT+02:00",
Expand Down
2 changes: 1 addition & 1 deletion chaos_genius/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,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.2")
CHAOSGENIUS_VERSION_MAIN = os.getenv("CHAOSGENIUS_VERSION_MAIN", "0.6.0")
"""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.5.2
image: chaosgenius/chaosgenius-server:0.6.0
command: sh setup/run-backend-docker.sh
restart: unless-stopped
volumes:
Expand Down Expand Up @@ -95,7 +95,7 @@ services:

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

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

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

chaosgenius-worker-alerts:
container_name: chaosgenius-worker-alerts
image: chaosgenius/chaosgenius-server:0.5.2
image: chaosgenius/chaosgenius-server:0.6.0
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.5.2
image: chaosgenius/chaosgenius-server:0.6.0
command: sh setup/run-backend-docker.sh
restart: unless-stopped
volumes:
Expand Down Expand Up @@ -68,7 +68,7 @@ services:

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

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

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

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

0 comments on commit 9f4c5f8

Please sign in to comment.