Skip to content

Commit

Permalink
fix(ha): Fix deploying RO clouddriver with Halyard (#4567) (#4568)
Browse files Browse the repository at this point in the history
My recent change to push the -ro config for clouddriver down to
the base config breaks deploying RO clouddriver with Halyard
because it sets the redis endpoint to redisRo.baseUrl, which
is not set by Halyard. This should default to redis.baseUrl to
handle this case.

(cherry picked from commit b5fc7d8)

Co-authored-by: Eric Zimanyi <ezimanyi@google.com>
  • Loading branch information
mergify[bot] and ezimanyi committed May 8, 2020
1 parent c67ed19 commit cc2ebed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clouddriver-web/config/clouddriver.yml
Expand Up @@ -350,7 +350,7 @@ spring:
profiles: ro

redis:
connection: ${services.redisRo.baseUrl}
connection: ${services.redisRo.baseUrl:${services.redis.baseUrl}}

caching:
writeEnabled: false
Expand Down

0 comments on commit cc2ebed

Please sign in to comment.