Puppet Class: profile::dns::auth::perf

Defined in:
modules/profile/manifests/dns/auth/perf.pp

Overview

SPDX-License-Identifier: Apache-2.0 Perf tweaks that do not impact correctness



3
4
5
6
7
8
9
10
11
12
13
14
# File 'modules/profile/manifests/dns/auth/perf.pp', line 3

class profile::dns::auth::perf {
    # Enable TFO, which gdnsd-3.x supports by default if enabled
    sysctl::parameters { 'TCP Fast Open for AuthDNS':
        values => {
            'net.ipv4.tcp_fastopen' => 3,
        },
    }

    interface::rps { 'primary':
        interface => $facts['interface_primary'],
    }
}