Add ssh-keyscan to unblock kolla gate
As a change to remove puppet from infra nodepool, ssh-keyscan is needed for each node [0] Permissions to ssh/config file should be 600 instead of current 664 [1] Refs: [0] http://lists.openstack.org/pipermail/openstack-dev/2017-April/116036.html [1] http://logs.openstack.org/68/461368/1/check/gate-kolla-ansible-dsvm-deploy-centos-binary-centos-7-nv/0a94da7/console.html#_2017-05-01_12_06_08_440775 Closes-Bug: #1687408 Change-Id: I338e457fff35d8a28bd9f96e88dbb4ee55a47864
This commit is contained in:
parent
4433a95698
commit
508f73e059
@ -122,6 +122,7 @@ function setup_ssh {
|
||||
|
||||
# From now on use the new IdentityFile for connecting to other hosts
|
||||
echo "IdentityFile /home/jenkins/.ssh/kolla" >> /home/jenkins/.ssh/config
|
||||
chmod 600 /home/jenkins/.ssh/config
|
||||
}
|
||||
|
||||
function setup_inventory {
|
||||
@ -134,6 +135,7 @@ function setup_inventory {
|
||||
# wordround fix for the rabbitmq failed when deploy on CentOS in the CI
|
||||
# gate. the ideal fix should set the hostname in setup_gate.sh script.
|
||||
# But it do not work as expect with unknown reason
|
||||
ssh-keyscan "${ip}" >> ~/.ssh/known_hosts
|
||||
echo -e "${ip}\tnode${counter}" >> /tmp/hosts
|
||||
echo -e "${ip}\t$(ssh ${ip} hostname)" >> /tmp/hosts
|
||||
echo "node${counter}" >> ${RAW_INVENTORY}
|
||||
@ -154,15 +156,16 @@ function setup_ansible {
|
||||
|
||||
setup_inventory
|
||||
|
||||
# Record the running state of the environment as seen by the setup module
|
||||
ansible all -i ${RAW_INVENTORY} -m setup > /tmp/logs/ansible/initial-setup
|
||||
|
||||
sudo -H pip install ara
|
||||
sudo mkdir /etc/ansible
|
||||
sudo tee /etc/ansible/ansible.cfg<<EOF
|
||||
[defaults]
|
||||
callback_plugins = /usr/lib/python2.7/site-packages/ara/plugins/callbacks:\$VIRTUAL_ENV/lib/python2.7/site-packages/ara/plugins/callbacks
|
||||
host_key_checking = False
|
||||
EOF
|
||||
|
||||
# Record the running state of the environment as seen by the setup module
|
||||
ansible all -i ${RAW_INVENTORY} -m setup > /tmp/logs/ansible/initial-setup
|
||||
}
|
||||
|
||||
function setup_node {
|
||||
|
Loading…
x
Reference in New Issue
Block a user