[install] Horizon updates for Mitaka

Update horizon configuration for Mitaka.

1) Change memcached endpoint from '127.0.0.1' to
   'controller' because memcached listens on the
   controller management interface.

Change-Id: I29908dbe0782873860ecbb9297006c54bcc3845a
Implements: bp installguide-mitaka
This commit is contained in:
Matthew Kassawara 2016-03-24 16:43:42 -06:00
parent d45e590bb1
commit 05346e4bef

View File

@ -112,7 +112,7 @@ Install and configure components
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
'LOCATION': 'controller:11211',
}
}
@ -211,7 +211,7 @@ Install and configure components
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
'LOCATION': 'controller:11211',
}
}
@ -310,7 +310,7 @@ Install and configure components
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
'LOCATION': 'controller:11211',
}
}