summaryrefslogtreecommitdiffstats
path: root/ansible-container
diff options
context:
space:
mode:
authorAvesh Agarwal <avagarwa@redhat.com>2015-08-14 15:28:42 -0400
committerAvesh Agarwal <avagarwa@redhat.com>2015-08-14 15:29:24 -0400
commit85c12d98930ae17c782e4d30bae5b1c0dfaadd4f (patch)
treebc6887e7dce3b1fff85a90457d7cec5679d48b5e /ansible-container
parent8d60535de208a961958dc17f65adbbd03a166200 (diff)
downloadopenshift-85c12d98930ae17c782e4d30bae5b1c0dfaadd4f.tar.gz
openshift-85c12d98930ae17c782e4d30bae5b1c0dfaadd4f.tar.bz2
openshift-85c12d98930ae17c782e4d30bae5b1c0dfaadd4f.tar.xz
openshift-85c12d98930ae17c782e4d30bae5b1c0dfaadd4f.zip
Updated Dockerfile not to clone openshift-ansible repo.
Movied Dockerfile to openshift-ansible repo root and updated README_ANSIBLE_CONTAINER.md file.
Diffstat (limited to 'ansible-container')
-rw-r--r--ansible-container/Dockerfile15
1 files changed, 0 insertions, 15 deletions
diff --git a/ansible-container/Dockerfile b/ansible-container/Dockerfile
deleted file mode 100644
index 477ea6712..000000000
--- a/ansible-container/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM rhel7
-
-MAINTAINER Aaron Weitekamp <aweiteka@redhat.com>
-
-RUN yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
-
-# Not sure if all of these packages are necessary
-# only git and ansible are known requirements
-RUN yum install -y --enablerepo rhel-7-server-extras-rpms net-tools bind-utils tmux git ansible
-
-RUN git clone https://github.com/openshift/openshift-ansible.git /opt/openshift-ansible
-
-ENTRYPOINT ["/usr/bin/ansible-playbook", "/opt/openshift-ansible/playbooks/byo/config.yml"]
-
-LABEL RUN docker run -it --rm --privileged --net=host -v ~/.ssh:/root/.ssh -v /etc/ansible:/etc/ansible --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE