diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-04-12 09:50:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-12 09:50:13 -0400 |
commit | ff88247e7c3818c86a2c65ba0573e874b0998987 (patch) | |
tree | 467477b53b97c4a75c650fcd3ae5b43827d1a139 /README_ANSIBLE_CONTAINER.md | |
parent | 8d34cd374e9798e747ea02b0657571e717f25e76 (diff) | |
parent | 69fb4f0e741b09d21f14a4533193b0aa05df1b10 (diff) | |
download | openshift-ff88247e7c3818c86a2c65ba0573e874b0998987.tar.gz openshift-ff88247e7c3818c86a2c65ba0573e874b0998987.tar.bz2 openshift-ff88247e7c3818c86a2c65ba0573e874b0998987.tar.xz openshift-ff88247e7c3818c86a2c65ba0573e874b0998987.zip |
Merge pull request #3799 from rhcarvalho/docs
Documentation updates
Diffstat (limited to 'README_ANSIBLE_CONTAINER.md')
-rw-r--r-- | README_ANSIBLE_CONTAINER.md | 15 |
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 - ``` |