(cleanup) remove usage of role_name
Cleanup patch, we shouldn't need the variable anymore. Change-Id: I47e1f2aa6e6e032cac141801ad23b70429ff52c6 Depends-On: I1fe40b655195b377f6587b20d9d78c887dfd91c5 Related-Bug: #1771171
This commit is contained in:
@@ -241,9 +241,6 @@ class TripleoInventory(object):
|
|||||||
'ansible_ssh_user': self.ansible_ssh_user,
|
'ansible_ssh_user': self.ansible_ssh_user,
|
||||||
'bootstrap_server_id': role_node_id_map.get(
|
'bootstrap_server_id': role_node_id_map.get(
|
||||||
'bootstrap_server_id'),
|
'bootstrap_server_id'),
|
||||||
# Keep "role_name" until we get rid of it
|
|
||||||
# https://bugs.launchpad.net/tripleo/+bug/1771171
|
|
||||||
'role_name': role,
|
|
||||||
'tripleo_role_name': role,
|
'tripleo_role_name': role,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
- name: Lookup deployment UUID
|
- name: Lookup deployment UUID
|
||||||
set_fact:
|
set_fact:
|
||||||
deployment_uuid: "{{ lookup('file', role_name ~ '/' ~ ansible_hostname ~ '/' ~ item) | from_yaml | json_query(item ~ '.id')}}"
|
deployment_uuid: "{{ lookup('file', tripleo_role_name ~ '/' ~ ansible_hostname ~ '/' ~ item) | from_yaml | json_query(item ~ '.id')}}"
|
||||||
|
|
||||||
- name: "Render deployment file for {{ item }}"
|
- name: "Render deployment file for {{ item }}"
|
||||||
copy:
|
copy:
|
||||||
content: "[ {{ lookup('file', role_name ~ '/' ~ ansible_hostname ~ '/' ~ item) | from_yaml | json_query(item) }} ]"
|
content: "[ {{ lookup('file', tripleo_role_name ~ '/' ~ ansible_hostname ~ '/' ~ item) | from_yaml | json_query(item) }} ]"
|
||||||
dest: "/var/lib/heat-config/tripleo-config-download/{{ item ~ '-' ~ deployment_uuid }}"
|
dest: "/var/lib/heat-config/tripleo-config-download/{{ item ~ '-' ~ deployment_uuid }}"
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
@@ -192,19 +192,16 @@ class TestInventory(base.TestCase):
|
|||||||
'hosts': ['cp-0'],
|
'hosts': ['cp-0'],
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'Compute',
|
|
||||||
'tripleo_role_name': 'Compute'}},
|
'tripleo_role_name': 'Compute'}},
|
||||||
'Controller': {
|
'Controller': {
|
||||||
'hosts': ['c-0', 'c-1', 'c-2'],
|
'hosts': ['c-0', 'c-1', 'c-2'],
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'Controller',
|
|
||||||
'tripleo_role_name': 'Controller'}},
|
'tripleo_role_name': 'Controller'}},
|
||||||
'CustomRole': {
|
'CustomRole': {
|
||||||
'hosts': ['cs-0'],
|
'hosts': ['cs-0'],
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'CustomRole',
|
|
||||||
'tripleo_role_name': 'CustomRole'}},
|
'tripleo_role_name': 'CustomRole'}},
|
||||||
|
|
||||||
'overcloud': {
|
'overcloud': {
|
||||||
@@ -264,19 +261,16 @@ class TestInventory(base.TestCase):
|
|||||||
'hosts': ['cp-0'],
|
'hosts': ['cp-0'],
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'Compute',
|
|
||||||
'tripleo_role_name': 'Compute'}},
|
'tripleo_role_name': 'Compute'}},
|
||||||
'Controller': {
|
'Controller': {
|
||||||
'hosts': ['c-0', 'c-1', 'c-2'],
|
'hosts': ['c-0', 'c-1', 'c-2'],
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'Controller',
|
|
||||||
'tripleo_role_name': 'Controller'}},
|
'tripleo_role_name': 'Controller'}},
|
||||||
'CustomRole': {
|
'CustomRole': {
|
||||||
'hosts': ['cs-0'],
|
'hosts': ['cs-0'],
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'CustomRole',
|
|
||||||
'tripleo_role_name': 'CustomRole'}},
|
'tripleo_role_name': 'CustomRole'}},
|
||||||
'overcloud': {
|
'overcloud': {
|
||||||
'children': ['Compute', 'Controller', 'CustomRole'],
|
'children': ['Compute', 'Controller', 'CustomRole'],
|
||||||
@@ -332,7 +326,6 @@ class TestInventory(base.TestCase):
|
|||||||
'enabled_networks': ['ctlplane']}},
|
'enabled_networks': ['ctlplane']}},
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'Compute',
|
|
||||||
'tripleo_role_name': 'Compute'}},
|
'tripleo_role_name': 'Compute'}},
|
||||||
'Controller': {
|
'Controller': {
|
||||||
'hosts': {
|
'hosts': {
|
||||||
@@ -353,7 +346,6 @@ class TestInventory(base.TestCase):
|
|||||||
'enabled_networks': ['ctlplane']}},
|
'enabled_networks': ['ctlplane']}},
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'Controller',
|
|
||||||
'tripleo_role_name': 'Controller'}},
|
'tripleo_role_name': 'Controller'}},
|
||||||
'CustomRole': {
|
'CustomRole': {
|
||||||
'hosts': {
|
'hosts': {
|
||||||
@@ -364,7 +356,6 @@ class TestInventory(base.TestCase):
|
|||||||
'enabled_networks': ['ctlplane']}},
|
'enabled_networks': ['ctlplane']}},
|
||||||
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
'vars': {'ansible_ssh_user': ansible_ssh_user,
|
||||||
'bootstrap_server_id': 'a',
|
'bootstrap_server_id': 'a',
|
||||||
'role_name': 'CustomRole',
|
|
||||||
'tripleo_role_name': 'CustomRole'}},
|
'tripleo_role_name': 'CustomRole'}},
|
||||||
'overcloud': {'children': {'Compute': {},
|
'overcloud': {'children': {'Compute': {},
|
||||||
'Controller': {},
|
'Controller': {},
|
||||||
|
Reference in New Issue
Block a user