summaryrefslogtreecommitdiffstats
path: root/playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service
diff options
context:
space:
mode:
authorMatt Woodson <mwoodson@gmail.com>2015-08-11 15:52:31 -0400
committerMatt Woodson <mwoodson@gmail.com>2015-08-11 15:52:31 -0400
commit813bf4fb5ac36e16304ae1ee9d141e42d898c9f4 (patch)
tree9d07c84d0f4137ab3f7864d3888c437e3a1e1a2f /playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service
parentdeb216049be6f94631e81975214c749ebd49e51d (diff)
parent1dff2ee13fbaabad521ead7bf83cd3c1a4d8de55 (diff)
downloadopenshift-813bf4fb5ac36e16304ae1ee9d141e42d898c9f4.tar.gz
openshift-813bf4fb5ac36e16304ae1ee9d141e42d898c9f4.tar.bz2
openshift-813bf4fb5ac36e16304ae1ee9d141e42d898c9f4.tar.xz
openshift-813bf4fb5ac36e16304ae1ee9d141e42d898c9f4.zip
Merge pull request #445 from mwoodson/remove_monitor
removed deploy monitoring containders
Diffstat (limited to 'playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service')
-rw-r--r--playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service36
1 files changed, 0 insertions, 36 deletions
diff --git a/playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service b/playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service
deleted file mode 100644
index 852be09b6..000000000
--- a/playbooks/adhoc/deploy_monitoring_containers/oso-f22-host-monitoring.service
+++ /dev/null
@@ -1,36 +0,0 @@
-# This is a systemd file to run this docker container under systemd.
-# To make this work:
-# * pull the image (probably from ops docker registry)
-# * place this file in /etc/systemd/system without the .systemd extension
-# * run the commands:
-# systemctl daemon-reload
-# systemctl enable pcp-docker
-# systemctl start pcp-docker
-#
-#
-[Unit]
-Description=PCP Collector Contatainer
-Requires=docker.service
-After=docker.service
-
-
-[Service]
-Type=simple
-TimeoutStartSec=5m
-#Slice=container-small.slice
-
-ExecStartPre=-/usr/bin/docker rm "oso-f22-host-monitoring"
-
-ExecStart=/usr/bin/docker run --rm --name=oso-f22-host-monitoring \
- --privileged --net=host --pid=host --ipc=host \
- -v /sys:/sys:ro -v /etc/localtime:/etc/localtime:ro \
- -v /var/lib/docker:/var/lib/docker:ro -v /run:/run \
- -v /var/log:/var/log \
- docker-registry.ops.rhcloud.com/ops/oso-f22-host-monitoring
-
-ExecReload=-/usr/bin/docker stop "oso-f22-host-monitoring"
-ExecReload=-/usr/bin/docker rm "oso-f22-host-monitoring"
-ExecStop=-/usr/bin/docker stop "oso-f22-host-monitoring"
-
-[Install]
-WantedBy=default.target