puppet-prod/modules/etcd/templates/etcd.service.erb
Ben Vincent 8e38a2c5b1 feat: add etcd module/role
- add etcd module
- add etcd role, profile and hieradata
2025-01-26 19:56:20 +11:00

18 lines
382 B
Plaintext

# DO NOT EDIT: This file is being managed by Puppet.
[Unit]
Description=etcd key-value store
Documentation=https://github.com/etcd-io/etcd
After=network.target
[Service]
User=<%= @user %>
Group=<%= @group %>
Type=notify
ExecStart=/usr/bin/etcd --config-file <%= @config_file %>
Restart=always
RestartSec=10s
LimitNOFILE=<%= @max_open_files %>
[Install]
WantedBy=multi-user.target