Replace all references to the old role name

This change replaces all of the roles references in our various files with the
new role name. This is being done because Ansible no longer allows hyphens in
role names.

Change-Id: Ie899714aca49781ccd240bb259901d76f177d2ae
Signed-off-by: Kevin Carter <kecarter@redhat.com>
This commit is contained in:
Kevin Carter 2020-01-20 10:15:23 -06:00 committed by Sagi Shnaidman
parent b3fad83fd5
commit 4c2d54e95c
144 changed files with 194 additions and 194 deletions

View File

@ -16,9 +16,9 @@
- hosts: Undercloud - hosts: Undercloud
roles: roles:
- role: tripleo-ceph-run-ansible - role: tripleo_ceph_run_ansible
post_tasks: post_tasks:
- name: backup and clean fetch directory after ceph-ansible run - name: backup and clean fetch directory after ceph-ansible run
include_role: include_role:
name: tripleo-ceph-fetch-dir name: tripleo_ceph_fetch_dir
tasks_from: backup_and_clean tasks_from: backup_and_clean

View File

@ -24,7 +24,7 @@
tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}" tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}"
tasks: tasks:
- import_role: - import_role:
name: tripleo-cellv2 name: tripleo_cellv2
tasks_from: check_cell_exist.yml tasks_from: check_cell_exist.yml
- hosts: CellController[0] - hosts: CellController[0]
@ -37,7 +37,7 @@
tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}" tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}"
tasks: tasks:
- import_role: - import_role:
name: tripleo-cellv2 name: tripleo_cellv2
tasks_from: extract_cell_information.yml tasks_from: extract_cell_information.yml
- hosts: Controller[0] - hosts: Controller[0]
@ -50,7 +50,7 @@
tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}" tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}"
tasks: tasks:
- import_role: - import_role:
name: tripleo-cellv2 name: tripleo_cellv2
tasks_from: create_cell.yml tasks_from: create_cell.yml
- hosts: Controller - hosts: Controller
@ -63,7 +63,7 @@
tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}" tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}"
tasks: tasks:
- import_role: - import_role:
name: tripleo-cellv2 name: tripleo_cellv2
tasks_from: add_internalapi_hosts_entries.yml tasks_from: add_internalapi_hosts_entries.yml
- hosts: Controller[0] - hosts: Controller[0]
@ -76,5 +76,5 @@
tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}" tripleo_cellv2_cellcontroller_group: "{{ groups['CellController'] }}"
tasks: tasks:
- import_role: - import_role:
name: tripleo-cellv2 name: tripleo_cellv2
tasks_from: discover_hosts.yml tasks_from: discover_hosts.yml

View File

@ -73,7 +73,7 @@
- name: Insert storage-driver into docker daemon config (existing) - name: Insert storage-driver into docker daemon config (existing)
include_role: include_role:
name: tripleo-config name: tripleo_config
vars: vars:
tripleo_config_src: "{{ tripleo_docker_temp_file }}" tripleo_config_src: "{{ tripleo_docker_temp_file }}"
tripleo_config_type: json tripleo_config_type: json
@ -85,7 +85,7 @@
- name: Insert storage-driver into docker daemon config (new) - name: Insert storage-driver into docker daemon config (new)
include_role: include_role:
name: tripleo-config name: tripleo_config
vars: vars:
tripleo_config_type: json tripleo_config_type: json
tripleo_config_dest: /etc/docker/daemon.json tripleo_config_dest: /etc/docker/daemon.json

View File

@ -24,7 +24,7 @@
OS_IMAGE_API_VERSION: "2" OS_IMAGE_API_VERSION: "2"
OS_AUTH_TYPE: "{{ os_auth_type }}" OS_AUTH_TYPE: "{{ os_auth_type }}"
roles: roles:
- octavia-undercloud - octavia_undercloud
- hosts: octavia_nodes[0] - hosts: octavia_nodes[0]
gather_facts: true gather_facts: true
@ -55,7 +55,7 @@
OS_IMAGE_API_VERSION: "2" OS_IMAGE_API_VERSION: "2"
OS_AUTH_TYPE: "{{ os_auth_type }}" OS_AUTH_TYPE: "{{ os_auth_type }}"
roles: roles:
- octavia-overcloud-config - octavia_overcloud_config
- hosts: octavia_nodes - hosts: octavia_nodes
gather_facts: true gather_facts: true
@ -88,7 +88,7 @@
OS_IMAGE_API_VERSION: "2" OS_IMAGE_API_VERSION: "2"
OS_AUTH_TYPE: "{{ os_auth_type }}" OS_AUTH_TYPE: "{{ os_auth_type }}"
roles: roles:
- octavia-controller-config - octavia_controller_config
- hosts: octavia_nodes - hosts: octavia_nodes
gather_facts: true gather_facts: true
@ -96,4 +96,4 @@
octavia_confd_prefix: "/var/lib/config-data/puppet-generated/octavia" octavia_confd_prefix: "/var/lib/config-data/puppet-generated/octavia"
container_cli: "{{ container_cli }}" container_cli: "{{ container_cli }}"
roles: roles:
- octavia-controller-post-config - octavia_controller_post_config

View File

@ -34,7 +34,7 @@
OS_VOLUME_API_VERSION: "{{ lookup('env', 'OS_VOLUME_API_VERSION') }}" OS_VOLUME_API_VERSION: "{{ lookup('env', 'OS_VOLUME_API_VERSION') }}"
OS_REGION_NAME: "{{ lookup('env', 'OS_REGION_NAME') }}" OS_REGION_NAME: "{{ lookup('env', 'OS_REGION_NAME') }}"
roles: roles:
- role: tripleo-nova-image-cache - role: tripleo_nova_image_cache
# Standard inventory: # Standard inventory:
# #

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "backup-and-restore" will search for and load any operating system variable file # "backup_and_restore" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- backup-and-restore description: TripleO OpenStack Role -- backup_and_restore
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: backup-and-restore - role: backup_and_restore
tripleo_backup_and_restore_nfs_server: undercloud tripleo_backup_and_restore_nfs_server: undercloud
tripleo_backup_and_restore_rear_simulate: true tripleo_backup_and_restore_rear_simulate: true
tripleo_backup_and_restore_hiera_config_file: "{{ ansible_user_dir }}/hiera.yaml" tripleo_backup_and_restore_hiera_config_file: "{{ ansible_user_dir }}/hiera.yaml"

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "backup-and-restore" will search for and load any operating system variable file # "backup_and_restore" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "backup-and-restore" will search for and load any operating system variable file # "backup_and_restore" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "backup-and-restore" will search for and load any operating system variable file # "backup_and_restore" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "backup-and-restore" will search for and load any operating system variable file # "backup_and_restore" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "backup-and-restore" will search for and load any operating system variable file # "backup_and_restore" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -1,5 +1,5 @@
# This configuration file is generated automatically # This configuration file is generated automatically
# by the backup-and-restore role part of TripleO # by the backup_and_restore role part of TripleO
# Ansible. No not edit this file, all changes # Ansible. No not edit this file, all changes
# will be lost. Refer to the following URL for # will be lost. Refer to the following URL for
# more information and implementation details: # more information and implementation details:

View File

@ -1,5 +1,5 @@
# This configuration file is generated automatically # This configuration file is generated automatically
# by the backup-and-restore role part of TripleO # by the backup_and_restore role part of TripleO
# Ansible. No not edit this file, all changes # Ansible. No not edit this file, all changes
# will be lost. Refer to the following URL for # will be lost. Refer to the following URL for
# more information and implementation details: # more information and implementation details:

View File

@ -1,5 +1,5 @@
# This configuration file is generated automatically # This configuration file is generated automatically
# by the backup-and-restore role part of TripleO # by the backup_and_restore role part of TripleO
# Ansible. No not edit this file, all changes # Ansible. No not edit this file, all changes
# will be lost. Refer to the following URL for # will be lost. Refer to the following URL for
# more information and implementation details: # more information and implementation details:

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- login-defs description: TripleO OpenStack Role -- login_defs
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "login-defs" - role: "login_defs"

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "login-defs" will search for and load any operating system variable file # "login_defs" will search for and load any operating system variable file
- name: Install shadow-utils - name: Install shadow-utils
package: package:

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- octavia-controller-config description: TripleO OpenStack Role -- octavia_controller_config
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- octavia-overcloud-config description: TripleO OpenStack Role -- octavia_overcloud_config
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- octavia-undercloud description: TripleO OpenStack Role -- octavia_undercloud
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-bootstrap description: TripleO OpenStack Role -- tripleo_bootstrap
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-bootstrap" - role: "tripleo_bootstrap"

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-bootstrap" will search for and load any operating system variable file # "tripleo_bootstrap" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-cellv2 description: TripleO OpenStack Role -- tripleo_cellv2
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-cellv2" - role: "tripleo_cellv2"

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-ceph-common" - role: "tripleo_ceph_common"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-ceph-fetch-dir description: TripleO OpenStack Role -- tripleo_ceph_fetch_dir
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7
@ -39,9 +39,9 @@ galaxy_info:
- tripleo - tripleo
dependencies: dependencies:
- role: tripleo-ceph-common - role: tripleo_ceph_common
when: when:
- ceph_common_done is undefined - ceph_common_done is undefined
- role: tripleo-ceph-work-dir - role: tripleo_ceph_work_dir
when: when:
- ceph_ansible_private_key_file is undefined - ceph_ansible_private_key_file is undefined

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-ceph-fetch-dir" - role: "tripleo_ceph_fetch_dir"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-ceph-run-ansible description: TripleO OpenStack Role -- tripleo_ceph_run_ansible
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7
@ -39,15 +39,15 @@ galaxy_info:
- tripleo - tripleo
dependencies: dependencies:
- role: tripleo-ceph-common - role: tripleo_ceph_common
when: when:
- ceph_common_done is undefined - ceph_common_done is undefined
- role: tripleo-ceph-work-dir - role: tripleo_ceph_work_dir
when: when:
- ceph_ansible_private_key_file is undefined - ceph_ansible_private_key_file is undefined
- role: tripleo-ceph-fetch-dir - role: tripleo_ceph_fetch_dir
when: when:
- ceph_node_cleaned is undefined - ceph_node_cleaned is undefined
- role: tripleo-ceph-uuid - role: tripleo_ceph_uuid
when: when:
- (nodes_uuid_list is undefined) or (nodes_data is undefined) - (nodes_uuid_list is undefined) or (nodes_data is undefined)

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-ceph-run-ansible" - role: "tripleo_ceph_run_ansible"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-ceph-uuid description: TripleO OpenStack Role -- tripleo_ceph_uuid
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7
@ -39,9 +39,9 @@ galaxy_info:
- tripleo - tripleo
dependencies: dependencies:
- role: tripleo-ceph-common - role: tripleo_ceph_common
when: when:
- ceph_common_done is undefined - ceph_common_done is undefined
- role: tripleo-ceph-work-dir - role: tripleo_ceph_work_dir
when: when:
- ceph_ansible_private_key_file is undefined - ceph_ansible_private_key_file is undefined

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-ceph-uuid" - role: "tripleo_ceph_uuid"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-ceph-work-dir description: TripleO OpenStack Role -- tripleo_ceph_work_dir
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7
@ -39,6 +39,6 @@ galaxy_info:
- tripleo - tripleo
dependencies: dependencies:
- role: tripleo-ceph-common - role: tripleo_ceph_common
when: when:
- ceph_common_done is undefined - ceph_common_done is undefined

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-ceph-work-dir" - role: "tripleo_ceph_work_dir"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-clients-install description: TripleO OpenStack Role -- tripleo_clients_install
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -22,4 +22,4 @@
aodh: installed aodh: installed
barbican: installed barbican: installed
roles: roles:
- role: "tripleo-clients-install" - role: "tripleo_clients_install"

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-clients-install" will search for and load any operating system variable file # "tripleo_clients_install" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -17,7 +17,7 @@
# All variables intended for modification should be placed in this file. # All variables intended for modification should be placed in this file.
# All variables within this role should have a prefix of "tripleo-config" # All variables within this role should have a prefix of "tripleo_config"
tripleo_config_type: ini tripleo_config_type: ini
tripleo_config_src: "{{ tripleo_config_type }}-config.j2" tripleo_config_src: "{{ tripleo_config_type }}-config.j2"
tripleo_config_owner: root tripleo_config_owner: root

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-config description: TripleO OpenStack Role -- tripleo_config
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,10 +18,10 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-config" - role: "tripleo_config"
tripleo_config_dest: /tmp/test.ini tripleo_config_dest: /tmp/test.ini
- role: "tripleo-config" - role: "tripleo_config"
tripleo_config_dest: /tmp/test2.ini tripleo_config_dest: /tmp/test2.ini
tripleo_config_overrides: tripleo_config_overrides:
testSection: testSection:

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-container-image-prepare description: TripleO OpenStack Role -- tripleo_container_image_prepare
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-container-image-prepare" - role: "tripleo_container_image_prepare"

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-container-image-prepare" will search for and load any operating system variable file # "tripleo_container_image_prepare" will search for and load any operating system variable file
- name: Container image prepare - name: Container image prepare
become: true become: true
block: block:
@ -47,7 +47,7 @@
dest: "{{ role_data.path }}" dest: "{{ role_data.path }}"
content: "{{ tripleo_container_image_prepare_roles }}" content: "{{ tripleo_container_image_prepare_roles }}"
- name: "Run tripleo-container-image-prepare logged to: {{ tripleo_container_image_prepare_log_file }}" - name: "Run tripleo_container_image_prepare logged to: {{ tripleo_container_image_prepare_log_file }}"
command: >- command: >-
/usr/bin/tripleo-container-image-prepare /usr/bin/tripleo-container-image-prepare
--roles-file {{ role_data.path }} --roles-file {{ role_data.path }}

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-container-manage description: TripleO OpenStack Role -- tripleo_container_manage
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -25,7 +25,7 @@
tripleo_container_manage_systemd_order: true tripleo_container_manage_systemd_order: true
tasks: tasks:
- include_role: - include_role:
name: tripleo-container-manage name: tripleo_container_manage
post_tasks: post_tasks:
- name: Verify that Fedora container was created correctly - name: Verify that Fedora container was created correctly
become: true become: true

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-container-manage" will search for and load any operating system variable file # "tripleo_container_manage" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system
@ -44,9 +44,9 @@
copy: copy:
dest: "{{ tripleo_container_manage_config | dirname }}/.ansible-managed" dest: "{{ tripleo_container_manage_config | dirname }}/.ansible-managed"
content: | content: |
Containers are managed by the tripleo-container-manage role in Containers are managed by the tripleo_container_manage role in
tripleo-ansible project. This file is used by paunch to show a warning tripleo-ansible project. This file is used by paunch to show a warning
if paunch is used against a deployment done with tripleo-container-manage. if paunch is used against a deployment done with tripleo_container_manage.
- name: Generate containers configs data - name: Generate containers configs data
no_log: "{{ false if tripleo_container_manage_debug else true }}" no_log: "{{ false if tripleo_container_manage_debug else true }}"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-container-rm description: TripleO OpenStack Role -- tripleo_container_rm
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-container-rm - role: tripleo_container_rm
tripleo_containers_to_rm: tripleo_containers_to_rm:
- docker-container1 - docker-container1
- docker-container2 - docker-container2

View File

@ -15,15 +15,15 @@
# under the License. # under the License.
# NOTE(Cloudnull): This role is a linked role to `tripleo-container-rm`. This role and exists # NOTE(Cloudnull): This role is a linked role to `tripleo_container_rm`. This role and exists
# to ensure we're providing a stable interface as we transition. In a future # to ensure we're providing a stable interface as we transition. In a future
# release this link will be removed in favor of using the stable role, # release this link will be removed in favor of using the stable role,
# `tripleo-container-rm`. # `tripleo_container_rm`.
- name: Converge - name: Converge
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-docker-rm - role: tripleo_container_rm
container_cli: docker container_cli: docker
containers_to_rm: containers_to_rm:
- docker-container1 - docker-container1

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-container-rm - role: tripleo_container_rm
container_cli: podman container_cli: podman
containers_to_rm: containers_to_rm:
- podman-legacy-container1 - podman-legacy-container1

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-container-rm - role: tripleo_container_rm
tripleo_container_cli: podman tripleo_container_cli: podman
tripleo_containers_to_rm: tripleo_containers_to_rm:
- podman-container1 - podman-container1

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-container-rm - role: tripleo_container_rm
tripleo_container_cli: podman tripleo_container_cli: podman
tripleo_containers_to_rm: tripleo_containers_to_rm:
- podman-container1 - podman-container1

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-container-stop description: TripleO OpenStack Role -- tripleo_container_stop
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-container-stop - role: tripleo_container_stop
tripleo_containers_to_stop: tripleo_containers_to_stop:
- docker-container1 - docker-container1
- docker-container2 - docker-container2

View File

@ -19,7 +19,7 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: tripleo-container-stop - role: tripleo_container_stop
tripleo_containers_to_stop: tripleo_containers_to_stop:
- podman-container1 - podman-container1
- podman-container2 - podman-container2

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-container-stop" will search for and load any operating system variable file # "tripleo_container_stop" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.

View File

@ -17,7 +17,7 @@
# All variables intended for modification should be placed in this file. # All variables intended for modification should be placed in this file.
# All variables within this role should have a prefix of "tripleo-container-tag" # All variables within this role should have a prefix of "tripleo_container_tag"
# NOTE(cloudnull): This role used to use a non-namespaced option, which has a high # NOTE(cloudnull): This role used to use a non-namespaced option, which has a high
# probability of creating conflicts with other roles in the greater # probability of creating conflicts with other roles in the greater

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-container-tag description: TripleO OpenStack Role -- tripleo_container_tag
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -19,12 +19,12 @@
become: true become: true
hosts: all hosts: all
roles: roles:
- role: "tripleo-container-tag" - role: "tripleo_container_tag"
tripleo_container_image: centos:8 tripleo_container_image: centos:8
tripleo_container_image_latest: test-latest tripleo_container_image_latest: test-latest
tripleo_container_cli: docker tripleo_container_cli: docker
tripleo_container_pull_image: true tripleo_container_pull_image: true
- role: "tripleo-container-tag" - role: "tripleo_container_tag"
tripleo_container_image: centos:8 tripleo_container_image: centos:8
tripleo_container_image_latest: test-latest-2 tripleo_container_image_latest: test-latest-2
tripleo_container_cli: docker tripleo_container_cli: docker

View File

@ -19,11 +19,11 @@
hosts: all hosts: all
become: true become: true
roles: roles:
- role: "tripleo-container-tag" - role: "tripleo_container_tag"
container_image: centos:8 container_image: centos:8
container_image_latest: test-latest container_image_latest: test-latest
container_cli: podman container_cli: podman
- role: "tripleo-container-tag" - role: "tripleo_container_tag"
container_image: centos:8 container_image: centos:8
container_image_latest: test-latest-2 container_image_latest: test-latest-2
container_cli: podman container_cli: podman

View File

@ -19,11 +19,11 @@
hosts: all hosts: all
become: true become: true
roles: roles:
- role: "tripleo-container-tag" - role: "tripleo_container_tag"
tripleo_container_image: centos:8 tripleo_container_image: centos:8
tripleo_container_image_latest: test-latest tripleo_container_image_latest: test-latest
tripleo_container_cli: podman tripleo_container_cli: podman
- role: "tripleo-container-tag" - role: "tripleo_container_tag"
tripleo_container_image: centos:8 tripleo_container_image: centos:8
tripleo_container_image_latest: test-latest-2 tripleo_container_image_latest: test-latest-2
tripleo_container_cli: podman tripleo_container_cli: podman

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-container-tag" will search for and load any operating system variable file # "tripleo_container_tag" will search for and load any operating system variable file
- name: Fail if container image is undefined - name: Fail if container image is undefined
fail: fail:

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-create-admin description: TripleO OpenStack Role -- tripleo_create_admin
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,10 +18,10 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-create-admin" - role: "tripleo_create_admin"
post_tasks: post_tasks:
- import_role: - import_role:
name: tripleo-create-admin name: tripleo_create_admin
tasks_from: authorize_user.yml tasks_from: authorize_user.yml
vars: vars:
tripleo_admin_user: tripleo-admin tripleo_admin_user: tripleo-admin

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-create-admin" - role: "tripleo_create_admin"

View File

@ -18,5 +18,5 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-create-admin" - role: "tripleo_create_admin"
tripleo_admin_generate_key: true tripleo_admin_generate_key: true

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-firewall description: TripleO OpenStack Role -- tripleo_firewall
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-firewall" - role: "tripleo_firewall"

View File

@ -18,7 +18,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-firewall" - role: "tripleo_firewall"
tripleo_firewall_rules: tripleo_firewall_rules:
'003 accept ftp from all': '003 accept ftp from all':
proto: 'tcp' proto: 'tcp'

View File

@ -18,7 +18,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-firewall" - role: "tripleo_firewall"
tripleo_firewall_rules: tripleo_firewall_rules:
'003 accept ftp from all': '003 accept ftp from all':
proto: 'tcp' proto: 'tcp'

View File

@ -18,7 +18,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-firewall" - role: "tripleo_firewall"
tripleo_firewall_rules: tripleo_firewall_rules:
'003 accept ftp from all': '003 accept ftp from all':
proto: 'tcp' proto: 'tcp'

View File

@ -18,7 +18,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-firewall" - role: "tripleo_firewall"
tripleo_firewall_rules: tripleo_firewall_rules:
'003 accept ftp from all': '003 accept ftp from all':
proto: 'tcp' proto: 'tcp'

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-firewall" will search for and load any operating system variable file # "tripleo_firewall" will search for and load any operating system variable file
- name: Gather variables for each operating system - name: Gather variables for each operating system
include_vars: "{{ item }}" include_vars: "{{ item }}"
with_first_found: with_first_found:

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-hieradata description: TripleO OpenStack Role -- tripleo_hieradata
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: tripleo-hieradata - role: tripleo_hieradata

View File

@ -32,7 +32,7 @@
tasks: tasks:
- name: Create hieradata from templates - name: Create hieradata from templates
include_role: include_role:
name: tripleo-hieradata name: tripleo_hieradata
tasks_from: hieradata_vars.yaml tasks_from: hieradata_vars.yaml
vars: vars:
hieradata_templates_list: hieradata_templates_list:

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-hosts-entries description: TripleO OpenStack Role -- tripleo_hosts_entries
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-hosts-entries" - role: "tripleo_hosts_entries"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-image-serve description: TripleO OpenStack Role -- tripleo_image_serve
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-image-serve" - role: "tripleo_image_serve"

View File

@ -18,7 +18,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-image-serve" - role: "tripleo_image_serve"
container_registry_host: 'localhost' container_registry_host: 'localhost'
container_registry_port: 8787 container_registry_port: 8787
image_data_dir: "/var/lib/image-serve-legacy" image_data_dir: "/var/lib/image-serve-legacy"

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-kernel description: TripleO OpenStack Role -- tripleo_kernel
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-kernel" - role: "tripleo_kernel"

View File

@ -18,7 +18,7 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-kernel" - role: "tripleo_kernel"
tripleo_kernel_extra_modules: tripleo_kernel_extra_modules:
dummy: {} dummy: {}
tripleo_kernel_extra_packages: tripleo_kernel_extra_packages:

View File

@ -20,7 +20,7 @@
become: true become: true
tasks: tasks:
- include_role: - include_role:
name: "tripleo-kernel" name: "tripleo_kernel"
tasks_from: kernelargs.yml tasks_from: kernelargs.yml
vars: vars:
tripleo_kernel_args: "test=1" tripleo_kernel_args: "test=1"

View File

@ -44,14 +44,14 @@
# Apply DPDK workarounds before reboot # Apply DPDK workarounds before reboot
- name: Apply DPDK workarounds - name: Apply DPDK workarounds
include_role: include_role:
name: tripleo-ovs-dpdk name: tripleo_ovs_dpdk
tasks_from: workarounds.yml tasks_from: workarounds.yml
when: reboot_required is defined and reboot_required when: reboot_required is defined and reboot_required
# Kernel modules loading # Kernel modules loading
- name: Load type1 IOMMU driver for VFIO on boot - name: Load type1 IOMMU driver for VFIO on boot
import_role: import_role:
name: tripleo-module-load name: tripleo_module_load
vars: vars:
modules: modules:
- name: vfio_iommu_type1 - name: vfio_iommu_type1

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-kernel" will search for and load any operating system variable file # "tripleo_kernel" will search for and load any operating system variable file
- name: Kernel tuning block - name: Kernel tuning block
become: true become: true

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-keystone-resources description: TripleO OpenStack Role -- tripleo_keystone_resources
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -24,7 +24,7 @@
state: directory state: directory
- name: Configure /etc/openstack/clouds.yaml - name: Configure /etc/openstack/clouds.yaml
include_role: include_role:
name: tripleo-keystone-resources name: tripleo_keystone_resources
tasks_from: clouds tasks_from: clouds
vars: vars:
tripleo_keystone_resources_cloud_name: openstack tripleo_keystone_resources_cloud_name: openstack
@ -40,7 +40,7 @@
region_name: RegionOne region_name: RegionOne
- name: Create keystone admin resources - name: Create keystone admin resources
include_role: include_role:
name: tripleo-keystone-resources name: tripleo_keystone_resources
tasks_from: admin tasks_from: admin
vars: vars:
tripleo_keystone_resources_cloud_name: openstack tripleo_keystone_resources_cloud_name: openstack

View File

@ -34,7 +34,7 @@
- name: "Configure {{ tripleo_keystone_resources_clouds_file_path }}" - name: "Configure {{ tripleo_keystone_resources_clouds_file_path }}"
include_role: include_role:
name: tripleo-config name: tripleo_config
vars: vars:
tripleo_config_dest: "{{ tripleo_keystone_resources_clouds_file_path }}" tripleo_config_dest: "{{ tripleo_keystone_resources_clouds_file_path }}"
tripleo_config_group: "{{ tripleo_keystone_resources_clouds_file_group }}" tripleo_config_group: "{{ tripleo_keystone_resources_clouds_file_group }}"

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-keystone-resources" will search for and load any operating system variable file # "tripleo_keystone_resources" will search for and load any operating system variable file
# found within the "vars/" path. If no OS files are found the task will skip. # found within the "vars/" path. If no OS files are found the task will skip.
- name: Gather variables for each operating system - name: Gather variables for each operating system

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-module-load description: TripleO OpenStack Role -- tripleo_module_load
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,6 +18,6 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-module-load" - role: "tripleo_module_load"
tripleo_modules: tripleo_modules:
- name: dummy - name: dummy

View File

@ -18,6 +18,6 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-module-load" - role: "tripleo_module_load"
modules: modules:
- name: dummy - name: dummy

View File

@ -18,10 +18,10 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-module-load" - role: "tripleo_module_load"
tripleo_modules: tripleo_modules:
- name: dummy - name: dummy
- role: "tripleo-module-load" - role: "tripleo_module_load"
tripleo_modules: tripleo_modules:
- name: dummy - name: dummy
state: absent state: absent

View File

@ -15,7 +15,7 @@
# under the License. # under the License.
# "tripleo-module-load" will search for and load any operating system variable file # "tripleo_module_load" will search for and load any operating system variable file
- name: Kernel module block - name: Kernel module block
become: true become: true

View File

@ -17,7 +17,7 @@
galaxy_info: galaxy_info:
author: OpenStack author: OpenStack
description: TripleO OpenStack Role -- tripleo-nova-image-cache description: TripleO OpenStack Role -- tripleo_nova_image_cache
company: Red Hat company: Red Hat
license: Apache-2.0 license: Apache-2.0
min_ansible_version: 2.7 min_ansible_version: 2.7

View File

@ -18,4 +18,4 @@
- name: Converge - name: Converge
hosts: all hosts: all
roles: roles:
- role: "tripleo-nova-image-cache" - role: "tripleo_nova_image_cache"

Some files were not shown because too many files have changed in this diff Show More