Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
openshift-ansible/inventory/hosts.example
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (18 sloc)
783 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[all:vars] | |
# 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_user=root | |
# If ansible_user is not root, ansible_become must be set to true and the | |
# user must be configured for passwordless sudo | |
#ansible_become=True | |
############################################################################### | |
# Required configuration variables # | |
############################################################################### | |
openshift_kubeconfig_path="~/.kube/config" | |
# For running RHEL worker upgrades | |
[workers] | |
mycluster-worker-[1:3].example.com | |
# For running RHEL worker scaleup | |
[new_workers] | |
mycluster-worker-[4:6].example.com |