diff options
author | Steven Hardy <shardy@redhat.com> | 2017-07-06 12:29:50 +0100 |
---|---|---|
committer | Steven Hardy <shardy@redhat.com> | 2017-07-13 09:17:54 +0100 |
commit | 6462e2e3c37d4778e27c26e1286e905009318aef (patch) | |
tree | 20374f984b0dd50cdd0fc230bf287c9629f481f1 /spec | |
parent | dbc3c765e5747a526ef154f0497e136a8c8cdfb4 (diff) |
Remove dependency on memcached_node_ips_v6
This is set via all_nodes_config in t-h-t, but it's a special case for
this service, so it'll be better if we handle the ipv6 transformation
in puppet instead of relying on the service specific list mangling in
t-h-t (one aspect of which has been identified as a potential performance
problem).
Related-Bug: #1684272
Change-Id: Iccb9089db4b382db3adb9340f18f6d2364ca7f58
Diffstat (limited to 'spec')
-rw-r--r-- | spec/classes/tripleo_profile_base_nova_authtoken_spec.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/classes/tripleo_profile_base_nova_authtoken_spec.rb b/spec/classes/tripleo_profile_base_nova_authtoken_spec.rb index f910729..0a87bf4 100644 --- a/spec/classes/tripleo_profile_base_nova_authtoken_spec.rb +++ b/spec/classes/tripleo_profile_base_nova_authtoken_spec.rb @@ -32,6 +32,7 @@ describe 'tripleo::profile::base::nova::authtoken' do context 'with step 3' do let(:params) { { :step => 3, + :memcached_ips => '127.0.0.1', } } it { @@ -44,7 +45,7 @@ describe 'tripleo::profile::base::nova::authtoken' do context 'with step 3 with ipv6' do let(:params) { { :step => 3, - :use_ipv6 => true, + :memcached_ips => '::1', } } it { |