Switch Zaqar to use Redis

Zaqar was using mongodb by default but we haven't supported mongodb
since pike.  This change switches Zaqar to use redis by default.

Change-Id: If6ed9fddf4a4fcff3bb9105b04df777ec8a8990e
Closes-Bug: #1761239
This commit is contained in:
Alex Schultz 2018-04-04 10:36:00 -06:00
parent e57e2e871b
commit e290824ce3
5 changed files with 10 additions and 5 deletions

View File

@ -13,7 +13,7 @@ parameters:
ZaqarManagementStore:
type: string
description: The management store for Zaqar
default: mongodb
default: redis
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set

View File

@ -1,3 +1,3 @@
resource_registry:
OS::TripleO::Services::Zaqar: ../../docker/services/zaqar.yaml
OS::TripleO::Services::MongoDb: ../../docker/services/database/mongodb.yaml
OS::TripleO::Services::Redis : ../../docker/services/database/redis.yaml

View File

@ -1,3 +1,3 @@
resource_registry:
OS::TripleO::Services::Zaqar: ../../docker/services/zaqar.yaml
OS::TripleO::Services::MongoDb: ../../docker/services/database/mongodb.yaml
OS::TripleO::Services::Redis : ../../docker/services/database/redis.yaml

View File

@ -61,11 +61,11 @@ parameters:
ZaqarMessageStore:
type: string
description: The messaging store for Zaqar
default: mongodb
default: redis
ZaqarManagementStore:
type: string
description: The management store for Zaqar
default: mongodb
default: redis
EnableInternalTLS:
type: boolean
default: false

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
Zaqar has been switched to use the redis backend by default from the
mongodb backend. Mongodb has not been supported by TripleO since Pike.