Merge "Limit LXC hosts playbook to container hosts only"

This commit is contained in:
Jenkins
2016-08-20 19:22:38 +00:00
committed by Gerrit Code Review
2 changed files with 19 additions and 1 deletions

View File

@@ -14,7 +14,18 @@
# limitations under the License.
- name: Basic lxc host setup
hosts: "{{ lxc_host_group|default('hosts') }}"
hosts: >
{{ lxc_host_group |
default('
shared-infra_hosts
:os-infra_hosts
:repo-infra_hosts
:identity_hosts
:storage-infra_hosts
:log_hosts
:network_hosts
')
}}
gather_facts: "{{ gather_facts | default(True) }}"
max_fail_percentage: 20
user: root

View File

@@ -0,0 +1,7 @@
---
upgrade:
- LXC package installation and cache preparation will now occur by default
only on hosts which will actually implement containers.
fixes:
- LXC package installation and cache preparation will now occur by default
only on hosts which will actually implement containers.