summaryrefslogtreecommitdiffstats
path: root/roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j2
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2014-12-15 16:00:47 -0500
committerThomas Wiest <twiest@redhat.com>2014-12-15 16:00:47 -0500
commit023f92f9e3eec7de6c1286549000be79189a4fde (patch)
tree0bb33e5ee852ea533f1f808a8e86e38c97699bb4 /roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j2
parent2848232bdaed44fadb51548fe9d6c39fe89b8e11 (diff)
downloadopenshift-023f92f9e3eec7de6c1286549000be79189a4fde.tar.gz
openshift-023f92f9e3eec7de6c1286549000be79189a4fde.tar.bz2
openshift-023f92f9e3eec7de6c1286549000be79189a4fde.tar.xz
openshift-023f92f9e3eec7de6c1286549000be79189a4fde.zip
changed atomic proxy to use pre-built container images
Diffstat (limited to 'roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j2')
-rw-r--r--roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j232
1 files changed, 32 insertions, 0 deletions
diff --git a/roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j2 b/roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j2
new file mode 100644
index 000000000..988a9f544
--- /dev/null
+++ b/roles/atomic_proxy/templates/systemd/ctr-proxy-1.service.j2
@@ -0,0 +1,32 @@
+[Unit]
+Description=Container proxy-1
+
+
+[Service]
+Type=simple
+TimeoutStartSec=5m
+Slice=container-small.slice
+
+ExecStartPre=-/usr/bin/docker rm "proxy-1"
+
+ExecStart=/usr/bin/docker run --rm --name "proxy-1" \
+ --volumes-from proxy-shared-data-1 \
+ -a stdout -a stderr -p 80:80 -p 443:443 -p 4999:4999 \
+ "docker-registry.ops.rhcloud.com/oso-v2-proxy:{{ oo_env }}"
+
+ExecReload=-/usr/bin/docker stop "proxy-1"
+ExecReload=-/usr/bin/docker rm "proxy-1"
+ExecStop=-/usr/bin/docker stop "proxy-1"
+
+[Install]
+WantedBy=container.target
+
+# Container information
+X-ContainerId=proxy-1
+X-ContainerImage=docker-registry.ops.rhcloud.com/oso-v2-proxy:{{ oo_env }}
+X-ContainerUserId=
+X-ContainerRequestId=LwiWtYWaAvSavH6Ze53QJg
+X-ContainerType=simple
+X-PortMapping=80:80
+X-PortMapping=443:443
+X-PortMapping=4999:4999