diff options
author | Russell Teague <rteague@redhat.com> | 2017-11-15 10:19:55 -0500 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-11-15 10:50:30 -0500 |
commit | 87843c941ed61fe7ed5a9e36df2426783502f4e4 (patch) | |
tree | 80569b8aacf710d2e18a6606618e6c26a079d573 /inventory | |
parent | d4b6e2cf22856069d3956b08ec7feaf73380c2d1 (diff) | |
download | openshift-87843c941ed61fe7ed5a9e36df2426783502f4e4.tar.gz openshift-87843c941ed61fe7ed5a9e36df2426783502f4e4.tar.bz2 openshift-87843c941ed61fe7ed5a9e36df2426783502f4e4.tar.xz openshift-87843c941ed61fe7ed5a9e36df2426783502f4e4.zip |
Minor tweaks to ansible.cfg and example inventory
- Adds reference to plugins and library path to support removal of symlinks
- Removes references to old example inventories
- Corrects deprecated ansible_ssh_user
- Adds [nfs] group for proper parsing of the example inventory
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/byo/hosts.example | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/inventory/byo/hosts.example b/inventory/byo/hosts.example index 698b7450a..1a9a5b6cf 100644 --- a/inventory/byo/hosts.example +++ b/inventory/byo/hosts.example @@ -17,9 +17,9 @@ nfs # SSH user, this user should allow ssh based auth without requiring a # password. If using ssh key based auth, then the key should be managed by an # ssh agent. -ansible_ssh_user=root +ansible_user=root -# If ansible_ssh_user is not root, ansible_become must be set to true and the +# If ansible_user is not root, ansible_become must be set to true and the # user must be configured for passwordless sudo #ansible_become=yes @@ -1087,3 +1087,6 @@ ose3-lb-ansible.test.example.com containerized=false [nodes] ose3-master[1:3]-ansible.test.example.com ose3-node[1:2]-ansible.test.example.com openshift_node_labels="{'region': 'primary', 'zone': 'default'}" + +[nfs] +ose3-nfs-ansible.test.example.com |