aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/manifests/overcloud_object.pp
diff options
context:
space:
mode:
authorJames Slagle <jslagle@redhat.com>2016-02-03 16:33:16 +0100
committerJames Slagle <jslagle@redhat.com>2016-02-09 16:21:17 -0500
commit834f5b62289b89d7745495dfea7e65e47f1b46e9 (patch)
tree5be84c62bd3a5e5c79ff8dc3dfd55148e0b87afe /puppet/manifests/overcloud_object.pp
parentb9e421ec6db97782c4b3024203e827812e87ddf3 (diff)
Increase size of connection tracking table
During high load, the default limit of the kernel connection tracking table (65536) is often too low, resuling in error messages such as: kernel: nf_conntrack: table full, dropping packet This patch increases the limit to 500,000. Since the nf_conntrack kernel module is not always loaded by default, it also adds a mechanism to load kernel modules via hieradata using the kmod puppet module. In order to express the needed dependency in puppet that kernel modules are loaded before sysctl settings are applied, the Exec resources tagged with 'kmod::load' are specified in a resource collector to express that that Exec resources with the tag should run before Sysctl resources. Depends-On: I59cc2280ebae315af38fb5008e6ee0073195ae51 Change-Id: Iffa0a77852729786b69945c1e72bc90ad57ce3bb
Diffstat (limited to 'puppet/manifests/overcloud_object.pp')
-rw-r--r--puppet/manifests/overcloud_object.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/puppet/manifests/overcloud_object.pp b/puppet/manifests/overcloud_object.pp
index 63ac396e..1ac66904 100644
--- a/puppet/manifests/overcloud_object.pp
+++ b/puppet/manifests/overcloud_object.pp
@@ -16,7 +16,9 @@
include ::tripleo::packages
include ::tripleo::firewall
+create_resources(kmod::load, hiera('kernel_modules'), {})
create_resources(sysctl::value, hiera('sysctl_settings'), {})
+Exec <| tag == 'kmod::load' |> -> Sysctl <| |>
if count(hiera('ntp::servers')) > 0 {
include ::ntp