Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manage resource limits of services #13

Merged
merged 1 commit into from
Oct 31, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,24 @@ file { '/etc/tmpfiles.d/foo.conf':
} ~>
Exec['systemd-tmpfiles-create']
```

### service limits

Manage soft and hard limits on various resources for executed processes.

```puppet
::systemd::service_limits { 'foo.service':
limits => {
LimitNOFILE => 8192,
LimitNPROC => 16384
}
}
```

Or provide the configuration file yourself. Systemd reloading and restarting of the service are handled by the module.

```puppet
::systemd::service_limits { 'foo.service':
source => "puppet:///modules/${module_name}/foo.conf",
}
```
8 changes: 7 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
class systemd {
# -- Class systemd
# This module allows triggering systemd commands once for all modules
class systemd (
$service_limits = {}
){

Exec {
refreshonly => true,
Expand All @@ -15,4 +19,6 @@
command => 'systemd-tmpfiles --create',
}

create_resources('systemd::service_limits', $service_limits, {})

}
50 changes: 50 additions & 0 deletions manifests/service_limits.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# -- Define: systemd::service_limits
# Creates a custom config file and reloads systemd
define systemd::service_limits(
$ensure = file,
$path = '/etc/systemd/system',
$limits = undef,
$source = undef,
$restart_service = true
) {
include ::systemd

if $limits {
validate_hash($limits)
$content = template('systemd/limits.erb')
}
else {
$content = undef
}

if $limits and $source {
fail('You may not supply both limits and source parameters to systemd::service_limits')
} elsif $limits == undef and $source == undef {
fail('You must supply either the limits or source parameter to systemd::service_limits')
}

file { "${path}/${title}.d/":
ensure => 'directory',
owner => 'root',
group => 'root',
}
->
file { "${path}/${title}.d/limits.conf":
ensure => $ensure,
content => $content,
source => $source,
owner => 'root',
group => 'root',
mode => '0444',
notify => Exec['systemctl-daemon-reload'],
}

if $restart_service {
exec { "systemctl restart ${title}":
path => $::path,
refreshonly => true,
subscribe => File["${path}/${title}.d/limits.conf"],
require => Exec['systemctl-daemon-reload'],
}
}
}
26 changes: 26 additions & 0 deletions templates/limits.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This file is created by Puppet
[Service]
<%
[
'LimitCPU',
'LimitFSIZE',
'LimitDATA',
'LimitSTACK',
'LimitCORE',
'LimitRSS',
'LimitNOFILE',
'LimitAS',
'LimitNPROC',
'LimitMEMLOCK',
'LimitLOCKS',
'LimitSIGPENDING',
'LimitMSGQUEUE',
'LimitNICE',
'LimitRTPRIO',
'LimitRTTIME'
].each do |d|
if @limits[d] -%>
<%= d %>=<%= @limits[d] %>
<%
end
end %>