743b939640
The basic provisioning tools we had in the MNAIO could long be used on a set of physical machines however doing so required a healthy understanding of everything going on under the hood. This change extracts the PXE components out of our older MNAIO tooling and will allow operators to easily deploy operating systems on machines in the most compatible way possible. Change-Id: I2188f0f0de7f8be331a35b5f22cf5114ea9b6718 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
20 lines
752 B
Plaintext
20 lines
752 B
Plaintext
export ANSIBLE_GATHERING="${ANSIBLE_GATHERING:-smart}"
|
|
export ANSIBLE_GATHER_SUBSET="${ANSIBLE_GATHER_SUBSET:-network,hardware,virtual}"
|
|
|
|
export ANSIBLE_CACHE_PLUGIN="${ANSIBLE_CACHE_PLUGIN:-jsonfile}"
|
|
export ANSIBLE_CACHE_PLUGIN_CONNECTION="${ANSIBLE_CACHE_PLUGIN_CONNECTION:-/tmp/mnaio_facts}"
|
|
export ANSIBLE_CACHE_PLUGIN_TIMEOUT="${ANSIBLE_CACHE_PLUGIN_TIMEOUT:-86400}"
|
|
|
|
export ANSIBLE_HOST_KEY_CHECKING=False
|
|
export ANSIBLE_SSH_CONTROL_PATH=/tmp/%%h-%%r
|
|
export ANSIBLE_SSH_ARGS="-o ControlMaster=no \
|
|
-o UserKnownHostsFile=/dev/null \
|
|
-o StrictHostKeyChecking=no \
|
|
-o ServerAliveInterval=64 \
|
|
-o ServerAliveCountMax=1024 \
|
|
-o Compression=no \
|
|
-o TCPKeepAlive=yes \
|
|
-o VerifyHostKeyDNS=no \
|
|
-o ForwardX11=no \
|
|
-o ForwardAgent=yes"
|