diff options
Diffstat (limited to 'src/ceph/systemd/ceph-radosgw@.service')
-rw-r--r-- | src/ceph/systemd/ceph-radosgw@.service | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ceph/systemd/ceph-radosgw@.service b/src/ceph/systemd/ceph-radosgw@.service new file mode 100644 index 0000000..3f7fcac --- /dev/null +++ b/src/ceph/systemd/ceph-radosgw@.service @@ -0,0 +1,23 @@ +[Unit] +Description=Ceph rados gateway +After=network-online.target local-fs.target time-sync.target +Wants=network-online.target local-fs.target time-sync.target +PartOf=ceph-radosgw.target + +[Service] +LimitNOFILE=1048576 +LimitNPROC=1048576 +EnvironmentFile=-/etc/sysconfig/ceph +Environment=CLUSTER=ceph +ExecStart=/usr/bin/radosgw -f --cluster ${CLUSTER} --name client.%i --setuser ceph --setgroup ceph +PrivateDevices=yes +ProtectHome=true +ProtectSystem=full +PrivateTmp=true +TasksMax=infinity +Restart=on-failure +StartLimitInterval=30s +StartLimitBurst=5 + +[Install] +WantedBy=ceph-radosgw.target |