Merge "Memcached: Replace hiera by lookup"

This commit is contained in:
Zuul 2022-05-04 01:54:29 +00:00 committed by Gerrit Code Review
commit e5e313e9a8
1 changed files with 2 additions and 2 deletions

View File

@ -38,12 +38,12 @@
# [*step*] # [*step*]
# (Optional) The current step in deployment. See tripleo-heat-templates # (Optional) The current step in deployment. See tripleo-heat-templates
# for more details. # for more details.
# Defaults to hiera('step') # Defaults to Integer(lookup('step'))
# #
class tripleo::profile::base::memcached ( class tripleo::profile::base::memcached (
$enable_internal_memcached_tls = false, $enable_internal_memcached_tls = false,
$certificate_specs = {}, $certificate_specs = {},
$step = Integer(hiera('step')), $step = Integer(lookup('step')),
) { ) {
if $step >= 1 { if $step >= 1 {
if $enable_internal_memcached_tls { if $enable_internal_memcached_tls {