Merge "Work around bad DNS resolution"

This commit is contained in:
Jenkins 2017-07-06 06:34:12 +00:00 committed by Gerrit Code Review
commit 75f8ea102f

View File

@ -37,6 +37,16 @@
register: key_get register: key_get
- set_fact: - set_fact:
lxc_container_ssh_key: key_get.stdout lxc_container_ssh_key: key_get.stdout
# This is a very dirty hack due to images.linuxcontainers.org
# constantly failing to resolve in openstack-infra.
- name: Implement hard-coded hosts entries for consistently failing name
lineinfile:
path: "/etc/hosts"
line: "{{ item }}"
state: present
with_items:
- "91.189.91.21 images.linuxcontainers.org us.images.linuxcontainers.org"
- "91.189.88.37 images.linuxcontainers.org uk.images.linuxcontainers.org"
roles: roles:
- role: "lxc_hosts" - role: "lxc_hosts"
lxc_net_address: 10.100.100.1 lxc_net_address: 10.100.100.1