aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles
diff options
context:
space:
mode:
authorchigang <chigang@huawei.com>2017-07-03 14:40:34 +0800
committerchigang <chigang@huawei.com>2017-07-03 15:35:45 +0800
commitd529e77a45c77c10ac6970ca9e733e92e89d138f (patch)
treeccfe80af7b21392c335cb56b2afb6843502dc942 /deploy/adapters/ansible/roles
parent06b95e349cf3e6bc5d45b7030683d53eeae490ec (diff)
Fix DNS flush
JIRA:- It doesn't need to config DNS in ansible roles, just need to set NAMESERVERS variable Change-Id: I37a70b32c766c1fad7afa5289ffbbc27b956b2d5 Signed-off-by: chigang <chigang@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles')
-rw-r--r--deploy/adapters/ansible/roles/config-compute/tasks/Ubuntu.yml6
-rw-r--r--deploy/adapters/ansible/roles/config-compute/templates/compute.j23
-rwxr-xr-xdeploy/adapters/ansible/roles/config-controller/templates/controller.j21
-rw-r--r--deploy/adapters/ansible/roles/config-deployment/files/setup-ovs.yml10
-rw-r--r--deploy/adapters/ansible/roles/config-deployment/tasks/main.yml14
-rw-r--r--deploy/adapters/ansible/roles/config-deployment/templates/user_variables.yml.j2 (renamed from deploy/adapters/ansible/roles/config-deployment/templates/user_variables.yml)2
-rw-r--r--deploy/adapters/ansible/roles/setup-host/tasks/main.yml6
7 files changed, 18 insertions, 24 deletions
diff --git a/deploy/adapters/ansible/roles/config-compute/tasks/Ubuntu.yml b/deploy/adapters/ansible/roles/config-compute/tasks/Ubuntu.yml
index 4bf243b5..886a407f 100644
--- a/deploy/adapters/ansible/roles/config-compute/tasks/Ubuntu.yml
+++ b/deploy/adapters/ansible/roles/config-compute/tasks/Ubuntu.yml
@@ -7,12 +7,6 @@
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---
-- name: remove resolv.conf
- file: "dest=/etc/resolv.conf state=absent"
-
-- name: make a symbolic link
- shell: "ln -s /var/run/resolvconf/resolv.conf /etc/resolv.conf"
-
- name: configure network
template:
src: compute.j2
diff --git a/deploy/adapters/ansible/roles/config-compute/templates/compute.j2 b/deploy/adapters/ansible/roles/config-compute/templates/compute.j2
index 9a734385..66c3297b 100644
--- a/deploy/adapters/ansible/roles/config-compute/templates/compute.j2
+++ b/deploy/adapters/ansible/roles/config-compute/templates/compute.j2
@@ -69,9 +69,8 @@ iface br-vlan inet static
# -- Putting this here is primarily for tempest to work.
address {{host_info[inventory_hostname].VLAN_IP_SECOND}}
netmask 255.255.252.0
- dns-nameservers {{ DNS }}
-# compute1 Storage bridge
+# compute storage bridge
auto br-storage
iface br-storage inet static
bridge_stp off
diff --git a/deploy/adapters/ansible/roles/config-controller/templates/controller.j2 b/deploy/adapters/ansible/roles/config-controller/templates/controller.j2
index d28297db..215807f0 100755
--- a/deploy/adapters/ansible/roles/config-controller/templates/controller.j2
+++ b/deploy/adapters/ansible/roles/config-controller/templates/controller.j2
@@ -53,7 +53,6 @@ iface br-vlan inet static
address {{ ip_settings[inventory_hostname]["br-prv"]["ip"] }}
netmask 255.255.255.0
gateway {{ ip_settings[inventory_hostname]["br-prv"]["gw"] }}
- dns-nameservers {{ DNS }}
# compute1 Storage bridge
auto br-storage
diff --git a/deploy/adapters/ansible/roles/config-deployment/files/setup-ovs.yml b/deploy/adapters/ansible/roles/config-deployment/files/setup-ovs.yml
index 10972401..57bc5ef1 100644
--- a/deploy/adapters/ansible/roles/config-deployment/files/setup-ovs.yml
+++ b/deploy/adapters/ansible/roles/config-deployment/files/setup-ovs.yml
@@ -10,13 +10,14 @@
name: neutron-openvswitch-agent
state: stopped
+ # yamllint disable rule:line-length
- name: change the openvswitch_agent.ini
lineinfile:
dest: /etc/neutron/plugins/ml2/openvswitch_agent.ini
insertafter: '^bridge_mappings'
line: "local_ip = {{ hostvars[inventory_hostname]['container_networks']['tunnel_address']['address'] }}"
when:
- - inventory_hostname not in groups['nova_compute']
+ - inventory_hostname not in groups['nova_compute']
- name: change the openvswitch_agent.ini
lineinfile:
@@ -27,7 +28,8 @@
notify:
- Restart neutron-openvswitch-agent
when:
- - inventory_hostname in groups['nova_compute']
+ - inventory_hostname in groups['nova_compute']
+ # yamllint enable rule:line-length
- name: Setup br-provider
openvswitch_bridge:
@@ -36,7 +38,7 @@
notify:
- Restart neutron-openvswitch-agent
when:
- - inventory_hostname not in groups['nova_compute']
+ - inventory_hostname not in groups['nova_compute']
- name: Add port to br-provider
openvswitch_port:
@@ -46,7 +48,7 @@
notify:
- Restart neutron-openvswitch-agent
when:
- - inventory_hostname not in groups['nova_compute']
+ - inventory_hostname not in groups['nova_compute']
handlers:
- name: Restart neutron-openvswitch-agent
diff --git a/deploy/adapters/ansible/roles/config-deployment/tasks/main.yml b/deploy/adapters/ansible/roles/config-deployment/tasks/main.yml
index 1269cd3f..8246d6e7 100644
--- a/deploy/adapters/ansible/roles/config-deployment/tasks/main.yml
+++ b/deploy/adapters/ansible/roles/config-deployment/tasks/main.yml
@@ -1,11 +1,11 @@
-##############################################################################
+# #############################################################################
# Copyright (c) 2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
+# #############################################################################
---
- name: create osa log directory
file:
@@ -19,7 +19,7 @@
- name: copy user_variables
template:
- src: user_variables.yml
+ src: user_variables.yml.j2
dest: /etc/openstack_deploy/user_variables.yml
- name: copy cinder.yml
@@ -44,13 +44,13 @@
- name: generate create-network.yml
template:
- src: create-network.yml.j2
- dest: /opt/openstack-ansible/playbooks/create-network.yml
+ src: create-network.yml.j2
+ dest: /opt/openstack-ansible/playbooks/create-network.yml
- name: generate create-flavor.yml
template:
- src: create-flavor.yml.j2
- dest: /opt/openstack-ansible/playbooks/create-flavor.yml
+ src: create-flavor.yml.j2
+ dest: /opt/openstack-ansible/playbooks/create-flavor.yml
- name: copy http.yml
copy:
diff --git a/deploy/adapters/ansible/roles/config-deployment/templates/user_variables.yml b/deploy/adapters/ansible/roles/config-deployment/templates/user_variables.yml.j2
index 16f78ff8..443a3f5b 100644
--- a/deploy/adapters/ansible/roles/config-deployment/templates/user_variables.yml
+++ b/deploy/adapters/ansible/roles/config-deployment/templates/user_variables.yml.j2
@@ -29,7 +29,7 @@ haproxy_keepalived_internal_interface: br-mgmt
{% if "openvswitch" == NEUTRON_MECHANISM_DRIVERS[0] or
"opendaylight" == NEUTRON_MECHANISM_DRIVERS[0]
- %}
+%}
openstack_host_specific_kernel_modules:
- name: "openvswitch"
pattern: "CONFIG_OPENVSWITCH="
diff --git a/deploy/adapters/ansible/roles/setup-host/tasks/main.yml b/deploy/adapters/ansible/roles/setup-host/tasks/main.yml
index e7aabcbb..73f572ea 100644
--- a/deploy/adapters/ansible/roles/setup-host/tasks/main.yml
+++ b/deploy/adapters/ansible/roles/setup-host/tasks/main.yml
@@ -1,11 +1,11 @@
-##############################################################################
+# #############################################################################
# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
+# #############################################################################
---
- name: setup hosts
shell: "export ANSIBLE_LOG_PATH=/var/ansible/run/openstack_ocata-opnfv2/ansible.log; \
@@ -27,7 +27,7 @@
-e force_containers_data_destroy=yes > /dev/null;"
with_items:
- "{{ failed_container.stdout_lines }}"
- ignore_errors: True
+ ignore_errors: "True"
- name: retry to setup failed_container
shell: "export ANSIBLE_LOG_PATH=/var/ansible/run/openstack_ocata-opnfv2/ansible.log; \