
We normally see ssh connection issues during the lxc container setup portion of OSA builds. Most people usually end up tweaking ansible ssh pipeline and retry settings or nerfing the build via ansible fork lowering to work around it. This is an old issue that we normally put a more permanent fix in our physical environments by setting the ssh maxsessions and maxstartups. On the mnaio builds I have been working around this by stopping the build before deployment and making the changes in a script. Change-Id: I54c223e1fb9edf6947bc7f76ff689bad22456420 Closes-Bug: 1752914
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
---
|
|
# Copyright 2017, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in witing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
mnaio_host_distro_packages:
|
|
- bridge-utils
|
|
- ifenslave
|
|
- iptables-persistent
|
|
- libvirt-bin
|
|
- lvm2
|
|
- ntp
|
|
- openssh-server
|
|
- python2.7
|
|
- python-software-properties
|
|
- qemu-kvm
|
|
- qemu-utils
|
|
- software-properties-common
|
|
- virtinst
|
|
- virt-manager
|
|
- vlan
|
|
|
|
mnaio_pxe_distro_packages:
|
|
- tftpd-hpa
|
|
- inetutils-inetd
|
|
- nginx
|
|
- p7zip-full
|
|
|
|
mnaio_dhcp_distro_packages:
|
|
- isc-dhcp-server
|
|
|
|
mnaio_pkg_cache_server_distro_packages:
|
|
- apt-cacher-ng
|
|
|
|
mnaio_host_iptables_service: "{{ (ansible_distribution | lower + '-' + ansible_distribution_version | lower == 'ubuntu-14.04') | ternary('iptables-persistent', 'netfilter-persistent') }}"
|
|
|
|
ssh_service_name: ssh
|
|
|