Skip to content

Commit

Permalink
Merge pull request #370 from maxbrunet/fix/deploy/cache-server-url
Browse files Browse the repository at this point in the history
fix(deploy): add protocol to Redis URL
  • Loading branch information
stefanprodan authored Jun 14, 2024
2 parents b0c487c + c52654c commit 1d7de0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/bases/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
- --grpc-port=9999
- --grpc-service-name=backend
- --level=info
- --cache-server=cache:6379
- --cache-server=tcp://cache:6379
env:
- name: PODINFO_UI_COLOR
value: "#34577c"
Expand Down
2 changes: 1 addition & 1 deletion deploy/bases/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- --port-metrics=9797
- --level=info
- --backend-url=http://backend:9898/echo
- --cache-server=cache:6379
- --cache-server=tcp://cache:6379
env:
- name: PODINFO_UI_COLOR
value: "#34577c"
Expand Down

0 comments on commit 1d7de0b

Please sign in to comment.