summaryrefslogtreecommitdiffstats
path: root/README_ANSIBLE_CONTAINER.md
diff options
context:
space:
mode:
authorRodolfo Carvalho <rhcarvalho@gmail.com>2017-03-29 16:28:45 +0200
committerRodolfo Carvalho <rhcarvalho@gmail.com>2017-04-11 13:21:39 +0200
commit7fd854bda49e1a6b2fea951f2605e4b9dbd062f2 (patch)
tree0e3aac398bc02e008f2e530bb3c2c45bc5874f7f /README_ANSIBLE_CONTAINER.md
parentb1f99916176560d9c5f1e7f43fc5422218b0c5d7 (diff)
downloadopenshift-7fd854bda49e1a6b2fea951f2605e4b9dbd062f2.tar.gz
openshift-7fd854bda49e1a6b2fea951f2605e4b9dbd062f2.tar.bz2
openshift-7fd854bda49e1a6b2fea951f2605e4b9dbd062f2.tar.xz
openshift-7fd854bda49e1a6b2fea951f2605e4b9dbd062f2.zip
Remove outdated documentation
This documentation was about a previous Dockerfile that was based on RHEL and not easily buildable by people cloning this repository. The new Dockerfile, with images available at https://hub.docker.com/r/openshift/openshift-ansible/, is documented in README_CONTAINER_IMAGE.md.
Diffstat (limited to 'README_ANSIBLE_CONTAINER.md')
-rw-r--r--README_ANSIBLE_CONTAINER.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/README_ANSIBLE_CONTAINER.md b/README_ANSIBLE_CONTAINER.md
deleted file mode 100644
index 30c5f8503..000000000
--- a/README_ANSIBLE_CONTAINER.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Running ansible in a docker container
-* Building ansible container:
-
- ```sh
- git clone https://github.com/openshift/openshift-ansible.git
- cd openshift-ansible
- docker build --rm -t ansible .
- ```
-* Create /etc/ansible directory on the host machine and copy inventory file (hosts) into it.
-* Copy ssh public key of the host machine to master and nodes machines in the cluster.
-* Running the ansible container:
-
- ```sh
- docker run -it --rm --privileged --net=host -v ~/.ssh:/root/.ssh -v /etc/ansible:/etc/ansible ansible
- ```