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

Commit

Permalink
fix: Fix redis hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Christie committed Jul 25, 2023
1 parent df44000 commit 5f0a098
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions roles/fragalysis-stack/templates/statefulset-stack.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ spec:
port: 80
env:
- name: CELERY_BROKER_URL
value: redis://:{{ redis_password }}@{{ redis_hostname }}:6379/0
value: redis://:{{ redis_password }}@redis:6379/0
- name: CELERY_RESULT_BACKEND
value: redis://:{{ redis_password }}@{{ redis_hostname }}:6379/0
value: redis://:{{ redis_password }}@redis:6379/0
- name: NEO4J_BOLT_URL
value: bolt://neo4j:test@{{ graph_hostname }}:7687
- name: NEO4J_QUERY
Expand Down
4 changes: 2 additions & 2 deletions roles/fragalysis-stack/templates/statefulset-worker.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ spec:
- name: CONTAINER_ROLE
value: worker
- name: CELERY_BROKER_URL
value: redis://:{{ redis_password }}@{{ redis_hostname }}:6379/0
value: redis://:{{ redis_password }}@redis:6379/0
- name: CELERY_RESULT_BACKEND
value: redis://:{{ redis_password }}@{{ redis_hostname }}:6379/0
value: redis://:{{ redis_password }}@redis:6379/0
- name: NEO4J_BOLT_URL
value: bolt://neo4j:test@{{ graph_hostname }}:7687
- name: NEO4J_QUERY
Expand Down

0 comments on commit 5f0a098

Please sign in to comment.