Updated the connection plugins and add env options
These changes allow users to leverage newer versions of ansible with sane defaults providing a consistent user experience. Things like retries, host key checking, and pipelinning are not generally set by default and when left unset these options can create an inconsistent experience with intermittent failures. The plugins repo checkout was updated to resolve issues with newer versions of ansible requiring SFTP options to be set. ** The cluster jobs have been commented out for the time being. we're seing lots of timeouts with them and it doesn't make sense to keep consuming resources for jobs that are known fail due to timeout issues. Change-Id: Ia103b2b31b7dcd540db977ae7c2d486c80bbdffe Signed-off-by: cloudnull <kevin.carter@rackspace.com>
This commit is contained in:
parent
2923df2295
commit
c2514c00cd
@ -61,7 +61,7 @@ if [[ ! -d "${ANSIBLE_EMBED_HOME}/repositories/openstack-ansible-plugins" ]]; th
|
||||
mkdir -p "${ANSIBLE_EMBED_HOME}/repositories"
|
||||
git clone https://git.openstack.org/openstack/openstack-ansible-plugins "${ANSIBLE_EMBED_HOME}/repositories/openstack-ansible-plugins"
|
||||
pushd "${ANSIBLE_EMBED_HOME}/repositories/openstack-ansible-plugins"
|
||||
git checkout cef7946b3b3b3e4d02406c228741985a94b72cff # HEAD of master from 20-06-18
|
||||
git checkout 761338d09c4cfb356c53fbd0d28a0e55a4776da0 # HEAD of master from 29-11-18
|
||||
popd
|
||||
fi
|
||||
|
||||
@ -94,7 +94,12 @@ EOF
|
||||
export USER_VARS="$(for i in $(ls -1 /etc/openstack_deploy/user_*secret*.yml); do echo -n "-e@$i "; done)"
|
||||
OPTS+=('USER_VARS')
|
||||
echo "env USER_VARS set"
|
||||
echo "Extra users variables can be expanded by including the option \$USER_VARS on a playbook run."
|
||||
|
||||
export USER_ALL_VARS="$(for i in $(ls -1 /etc/openstack_deploy/user_*.yml); do echo -n "-e@$i "; done)"
|
||||
OPTS+=('USER_ALL_VARS')
|
||||
echo "env USER_ALL_VARS set"
|
||||
|
||||
echo "Extra users variables can be expanded by including the option \$USER_VARS or \$USER_ALL_VARS on a playbook run."
|
||||
|
||||
export ANSIBLE_INVENTORY="${ANSIBLE_EMBED_HOME}/inventory/openstack_inventory.sh"
|
||||
OPTS+=('ANSIBLE_INVENTORY')
|
||||
@ -117,6 +122,22 @@ export ANSIBLE_CONNECTION_PLUGINS="${ANSIBLE_EMBED_HOME}/repositories/openstack-
|
||||
OPTS+=('ANSIBLE_CONNECTION_PLUGINS')
|
||||
echo "env ANSIBLE_CONNECTION_PLUGINS set"
|
||||
|
||||
export ANSIBLE_TRANSPORT="${ANSIBLE_TRANSPORT:-ssh}"
|
||||
OPTS+=('ANSIBLE_TRANSPORT')
|
||||
echo "env ANSIBLE_TRANSPORT set"
|
||||
|
||||
export ANSIBLE_SSH_PIPELINING="${ANSIBLE_SSH_PIPELINING:-True}"
|
||||
OPTS+=('ANSIBLE_SSH_PIPELINING')
|
||||
echo "env ANSIBLE_SSH_PIPELINING set"
|
||||
|
||||
export ANSIBLE_PIPELINING="${ANSIBLE_SSH_PIPELINING}"
|
||||
OPTS+=('ANSIBLE_SSH_PIPELINING')
|
||||
echo "env ANSIBLE_SSH_PIPELINING set"
|
||||
|
||||
export ANSIBLE_SSH_RETRIES="${ANSIBLE_SSH_RETRIES:-5}"
|
||||
OPTS+=('ANSIBLE_SSH_RETRIES')
|
||||
echo "env ANSIBLE_SSH_RETRIES set"
|
||||
|
||||
source ${ANSIBLE_EMBED_HOME}/bin/activate
|
||||
echo "Embedded Ansible has been activated. Run 'deactivate' to leave the embedded environment".
|
||||
|
||||
|
@ -21,18 +21,18 @@
|
||||
jobs:
|
||||
- openstack-ansible-linters
|
||||
- openstack-ansible-ops:elk_metrics_6x-centos-7
|
||||
- openstack-ansible-ops:elk_metrics_6x-centos-7-clustered
|
||||
# - openstack-ansible-ops:elk_metrics_6x-centos-7-clustered
|
||||
- openstack-ansible-ops:elk_metrics_6x-opensuse-423
|
||||
- openstack-ansible-ops:elk_metrics_6x-opensuse-423-clustered
|
||||
# - openstack-ansible-ops:elk_metrics_6x-opensuse-423-clustered
|
||||
- openstack-ansible-ops:elk_metrics_6x-ubuntu-trusty
|
||||
- openstack-ansible-ops:elk_metrics_6x-ubuntu-xenial
|
||||
- openstack-ansible-ops:elk_metrics_6x-ubuntu-bionic
|
||||
- openstack-ansible-ops:elk_metrics_6x-ubuntu-xenial-clustered
|
||||
- openstack-ansible-ops:elk_metrics_6x-ubuntu-bionic-clustered
|
||||
# - openstack-ansible-ops:elk_metrics_6x-ubuntu-xenial-clustered
|
||||
# - openstack-ansible-ops:elk_metrics_6x-ubuntu-bionic-clustered
|
||||
- openstack-ansible-ops:osquery-ubuntu-xenial
|
||||
- openstack-ansible-ops:osquery-ubuntu-xenial-clustered
|
||||
# - openstack-ansible-ops:osquery-ubuntu-xenial-clustered
|
||||
- openstack-ansible-ops:osquery-ubuntu-bionic
|
||||
- openstack-ansible-ops:osquery-ubuntu-bionic-clustered
|
||||
# - openstack-ansible-ops:osquery-ubuntu-bionic-clustered
|
||||
gate:
|
||||
jobs:
|
||||
- openstack-ansible-linters
|
||||
|
Loading…
x
Reference in New Issue
Block a user