Fix memcache configuration of manila-share
TrivialFix Change-Id: I1e900ef3a13222eeeb7bad3b53c1c91f82d8a8fa
This commit is contained in:
parent
97686e9fab
commit
8d39cbe249
@ -15,6 +15,9 @@ region_name = {{ openstack_region_name }}
|
|||||||
project_name = service
|
project_name = service
|
||||||
username = cinder
|
username = cinder
|
||||||
password = {{ cinder_keystone_password }}
|
password = {{ cinder_keystone_password }}
|
||||||
|
|
||||||
|
memcache_security_strategy = ENCRYPT
|
||||||
|
memcache_secret_key = {{ memcache_secret_key }}
|
||||||
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||||
|
|
||||||
[nova]
|
[nova]
|
||||||
@ -27,6 +30,9 @@ region_name = {{ openstack_region_name }}
|
|||||||
project_name = service
|
project_name = service
|
||||||
username = {{ nova_keystone_user }}
|
username = {{ nova_keystone_user }}
|
||||||
password = {{ nova_keystone_password }}
|
password = {{ nova_keystone_password }}
|
||||||
|
|
||||||
|
memcache_security_strategy = ENCRYPT
|
||||||
|
memcache_secret_key = {{ memcache_secret_key }}
|
||||||
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||||
|
|
||||||
[neutron]
|
[neutron]
|
||||||
@ -40,6 +46,9 @@ region_name = {{ openstack_region_name }}
|
|||||||
project_name = service
|
project_name = service
|
||||||
username = {{ neutron_keystone_user }}
|
username = {{ neutron_keystone_user }}
|
||||||
password = {{ neutron_keystone_password }}
|
password = {{ neutron_keystone_password }}
|
||||||
|
|
||||||
|
memcache_security_strategy = ENCRYPT
|
||||||
|
memcache_secret_key = {{ memcache_secret_key }}
|
||||||
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||||
|
|
||||||
{% if enable_manila_backend_generic | bool %}
|
{% if enable_manila_backend_generic | bool %}
|
||||||
|
Loading…
Reference in New Issue
Block a user