Puppet Class: openstack::profile::memcache

Defined in:
manifests/profile/memcache.pp

Overview

The profile to install a local instance of memcache



2
3
4
5
6
7
8
# File 'manifests/profile/memcache.pp', line 2

class openstack::profile::memcache {
  class { 'memcached':
    listen_ip => hiera('openstack::controller::address::management'), #'127.0.0.1',
    tcp_port  => '11211',
    udp_port  => '11211',
  }
}