Add tripleo_overcloud_profiles_match role
Change-Id: I07117e24ef8bcea4f109ed01e6d38cb239cf01cd
This commit is contained in:
64
roles/tripleo_overcloud_profiles_match/README.md
Normal file
64
roles/tripleo_overcloud_profiles_match/README.md
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
tripleo_overcloud_profiles_match
|
||||||
|
================================
|
||||||
|
|
||||||
|
A role to run profiles match.
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
------------
|
||||||
|
|
||||||
|
None.
|
||||||
|
|
||||||
|
Role Variables
|
||||||
|
--------------
|
||||||
|
|
||||||
|
* `tripleo_overcloud_profiles_match_debug`: (Boolean) Flag used to enable the debug version of commands. Default: false
|
||||||
|
* `tripleo_overcloud_profiles_match_generate_scripts`: (Boolean) Write out a shell script that can be used to reproduce the command being executed. By default uses the value of `tripleo_generate_scripts` or False if `tripleo_generate_scripts` is not defined.
|
||||||
|
* `tripleo_overcloud_profiles_match_home_dir`: (String) Home directory to where the command is run from. Default: "{{ ansible_env.HOME }}"
|
||||||
|
* `tripleo_overcloud_profiles_match_all`: List all nodes, even those not available to Nova.
|
||||||
|
* `tripleo_overcloud_profiles_list_control_flavor`: (Deprecated in U) Nova flavor to use for control nodes.
|
||||||
|
* `tripleo_overcloud_profiles_list_compute_flavor`: (Deprecated in U) Nova flavor to use for compute nodes.
|
||||||
|
* `tripleo_overcloud_profiles_list_ceph_storage_flavor`: (Deprecated in U) Nova flavor to use for ceph storage nodes.
|
||||||
|
* `tripleo_overcloud_profiles_list_block_storage_flavor`: (Deprecated in U) Nova flavor to use for cinder storage nodes.
|
||||||
|
* `tripleo_overcloud_profiles_list_swift_storage_flavor`: (Deprecated in U) Nova flavor to use for swift storage nodes.
|
||||||
|
* `tripleo_overcloud_profiles_match_control_scale`: (Deprecated in U) New number of control nodes.
|
||||||
|
* `tripleo_overcloud_profiles_match_compute_scale`: (Deprecated in U) New number of compute nodes.
|
||||||
|
* `tripleo_overcloud_profiles_match_ceph_storage_scale`: (Deprecated in U) New number of ceph storage nodes.
|
||||||
|
* `tripleo_overcloud_profiles_match_block_storage_scale`: (Deprecated in U) New number of cinder storage nodes.
|
||||||
|
* `tripleo_overcloud_profiles_match_swift_storage_scale`: (Deprecated in U) New number of swift storage nodes.
|
||||||
|
* `tripleo_overcloud_profiles_match_os_cloud`: (String) OS_CLOUD value to use when running the command. If `tripleo_os_cloud` is defined, it will be the default. Otherwise the default is ''. This variable takes precedence over `tripleo_overcloud_profiles_match_rc_file`.
|
||||||
|
* `tripleo_overcloud_profiles_match_rc_file`: (String) Path to the credential file to use. If `tripleo_rc_file` is defined, it will be the default. Default: "{{ ansible_env.HOME }}/stackrc"
|
||||||
|
|
||||||
|
NOTE: Please note that this command should be run against the undercloud so the
|
||||||
|
OS_CLOUD or rc file variables should be set to use the 'undercloud' when
|
||||||
|
calling this role. If you are not defining `tripleo_os_cloud` or `tripleo_rc_file`,
|
||||||
|
stackrc will be used by default.
|
||||||
|
|
||||||
|
Output Variables
|
||||||
|
----------------
|
||||||
|
|
||||||
|
* `tripleo_overcloud_profiles_match_output`: (String) The command standard output.
|
||||||
|
* `tripleo_overcloud_profiles_match_result`: Ansible shell execution results
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
|
||||||
|
None.
|
||||||
|
|
||||||
|
Example Playbook
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Example overcloud profiles match playbook
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- hosts: undercloud
|
||||||
|
gather_facts: true
|
||||||
|
tasks:
|
||||||
|
- name: Match profiles
|
||||||
|
import_role:
|
||||||
|
name: tripleo_overcloud_profiles_match
|
||||||
|
```
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
|
||||||
|
Apache-2.0
|
||||||
19
roles/tripleo_overcloud_profiles_match/defaults/main.yml
Normal file
19
roles/tripleo_overcloud_profiles_match/defaults/main.yml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
# defaults file for tripleo_overcloud_profiles_match
|
||||||
|
openstack_bin: openstack
|
||||||
|
tripleo_overcloud_profiles_match_all: false
|
||||||
|
tripleo_overcloud_profiles_match_block_storage_flavor:
|
||||||
|
tripleo_overcloud_profiles_match_block_storage_scale:
|
||||||
|
tripleo_overcloud_profiles_match_ceph_storage_flavor:
|
||||||
|
tripleo_overcloud_profiles_match_ceph_storage_scale:
|
||||||
|
tripleo_overcloud_profiles_match_compute_flavor:
|
||||||
|
tripleo_overcloud_profiles_match_compute_scale:
|
||||||
|
tripleo_overcloud_profiles_match_control_flavor:
|
||||||
|
tripleo_overcloud_profiles_match_control_scale:
|
||||||
|
tripleo_overcloud_profiles_match_debug: false
|
||||||
|
tripleo_overcloud_profiles_match_generate_scripts: "{{ tripleo_generate_scripts | default(False) }}"
|
||||||
|
tripleo_overcloud_profiles_match_home_dir: "{{ ansible_env.HOME }}"
|
||||||
|
tripleo_overcloud_profiles_match_os_cloud: "{{ tripleo_os_cloud | default('') }}"
|
||||||
|
tripleo_overcloud_profiles_match_rc_file: "{{ tripleo_rc_file | default(ansible_env.HOME ~ '/stackrc') }}"
|
||||||
|
tripleo_overcloud_profiles_match_swift_storage_flavor:
|
||||||
|
tripleo_overcloud_profiles_match_swift_storage_scale:
|
||||||
42
roles/tripleo_overcloud_profiles_match/meta/main.yml
Normal file
42
roles/tripleo_overcloud_profiles_match/meta/main.yml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
---
|
||||||
|
# Copyright 2019 Red Hat, Inc.
|
||||||
|
# All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
# not use this file except in compliance with the License. You may obtain
|
||||||
|
# a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
# License for the specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
|
galaxy_info:
|
||||||
|
author: OpenStack
|
||||||
|
description: TripleO Operator Role -- tripleo_overcloud_profiles_match
|
||||||
|
company: Red Hat
|
||||||
|
license: Apache-2.0
|
||||||
|
min_ansible_version: 2.8
|
||||||
|
#
|
||||||
|
# Provide a list of supported platforms, and for each platform a list of versions.
|
||||||
|
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
|
||||||
|
# To view available platforms and versions (or releases), visit:
|
||||||
|
# https://galaxy.ansible.com/api/v1/platforms/
|
||||||
|
#
|
||||||
|
platforms:
|
||||||
|
- name: CentOS
|
||||||
|
versions:
|
||||||
|
- 7
|
||||||
|
- 8
|
||||||
|
|
||||||
|
galaxy_tags:
|
||||||
|
- tripleo
|
||||||
|
|
||||||
|
|
||||||
|
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||||
|
# if you add dependencies to this list.
|
||||||
|
dependencies: []
|
||||||
@@ -0,0 +1,166 @@
|
|||||||
|
---
|
||||||
|
- name: Converge
|
||||||
|
hosts: all
|
||||||
|
collections:
|
||||||
|
- tripleo.operator
|
||||||
|
vars:
|
||||||
|
openstack_bin: echo
|
||||||
|
tripleo_overcloud_profiles_match_debug: true
|
||||||
|
tripleo_os_cloud: undercloud
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: "Include tripleo_overcloud_profiles_match"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
|
||||||
|
- name: Check role
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_all"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_all: true
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_all"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --all"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_control_flavor"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_control_flavor: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_control_flavor"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --control-flavor value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_compute_flavor"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_compute_flavor: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_compute_flavor"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --compute-flavor value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_ceph_storage_flavor"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_ceph_storage_flavor: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_ceph_storage_flavor"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --ceph-storage-flavor value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_block_storage_flavor"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_block_storage_flavor: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_block_storage_flavor"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --block-storage-flavor value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_swift_storage_flavor"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_swift_storage_flavor: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_swift_storage_flavor"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --swift-storage-flavor value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_control_scale"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_control_scale: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_control_scale"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --control-scale value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_compute_scale"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_compute_scale: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_compute_scale"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --compute-scale value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_ceph_storage_scale"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_ceph_storage_scale: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_ceph_storage_scale"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --ceph-storage-scale value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_block_storage_scale"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_block_storage_scale: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_block_storage_scale"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --block-storage-scale value"
|
||||||
|
|
||||||
|
- name: Check parameter "tripleo_overcloud_profiles_match_swift_storage_scale"
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_swift_storage_scale: value
|
||||||
|
|
||||||
|
- name: Assert "tripleo_overcloud_profiles_match_swift_storage_scale"
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output == "overcloud profiles match --swift-storage-scale value"
|
||||||
|
|
||||||
|
|
||||||
|
- name: Check all parameters for role tripleo_overcloud_profiles_match
|
||||||
|
include_role:
|
||||||
|
name: "tripleo_overcloud_profiles_match"
|
||||||
|
vars:
|
||||||
|
tripleo_overcloud_profiles_match_all: true
|
||||||
|
tripleo_overcloud_profiles_match_control_flavor: value
|
||||||
|
tripleo_overcloud_profiles_match_compute_flavor: value
|
||||||
|
tripleo_overcloud_profiles_match_ceph_storage_flavor: value
|
||||||
|
tripleo_overcloud_profiles_match_block_storage_flavor: value
|
||||||
|
tripleo_overcloud_profiles_match_swift_storage_flavor: value
|
||||||
|
tripleo_overcloud_profiles_match_control_scale: value
|
||||||
|
tripleo_overcloud_profiles_match_compute_scale: value
|
||||||
|
tripleo_overcloud_profiles_match_ceph_storage_scale: value
|
||||||
|
tripleo_overcloud_profiles_match_block_storage_scale: value
|
||||||
|
tripleo_overcloud_profiles_match_swift_storage_scale: value
|
||||||
|
|
||||||
|
- name: Assert all parameters for role tripleo_overcloud_profiles_match
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- tripleo_overcloud_profiles_match_output ==
|
||||||
|
"overcloud profiles match --all --control-flavor value --compute-flavor value
|
||||||
|
--ceph-storage-flavor value --block-storage-flavor value --swift-storage-flavor value
|
||||||
|
--control-scale value --compute-scale value --ceph-storage-scale value --block-storage-scale value
|
||||||
|
--swift-storage-scale value"
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
driver:
|
||||||
|
name: delegated
|
||||||
|
options:
|
||||||
|
managed: false
|
||||||
|
ansible_connection_options:
|
||||||
|
ansible_connection: local
|
||||||
|
log: true
|
||||||
|
platforms:
|
||||||
|
- name: instance
|
||||||
|
provisioner:
|
||||||
|
name: ansible
|
||||||
|
scenario:
|
||||||
|
name: default
|
||||||
|
test_sequence:
|
||||||
|
- prepare
|
||||||
|
- syntax
|
||||||
|
- converge
|
||||||
|
- verify
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- name: Prepare
|
||||||
|
hosts: all
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: Include molecule prep
|
||||||
|
include_role:
|
||||||
|
name: test_molecule_prep
|
||||||
59
roles/tripleo_overcloud_profiles_match/tasks/main.yml
Normal file
59
roles/tripleo_overcloud_profiles_match/tasks/main.yml
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
---
|
||||||
|
# tasks file for tripleo_overcloud_profiles_match
|
||||||
|
- name: Setup overcloud profiles match command
|
||||||
|
set_fact:
|
||||||
|
_match_cmd: >-
|
||||||
|
{{ tripleo_overcloud_profiles_match_os_cloud | ternary('', "source " ~ tripleo_overcloud_profiles_match_rc_file ~ "; ") }}
|
||||||
|
{{ openstack_bin }} overcloud profiles match
|
||||||
|
{{ tripleo_overcloud_profiles_match_all | ternary('--all', '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_control_flavor | ternary('--control-flavor '
|
||||||
|
~ tripleo_overcloud_profiles_match_control_flavor, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_compute_flavor | ternary('--compute-flavor '
|
||||||
|
~ tripleo_overcloud_profiles_match_compute_flavor, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_ceph_storage_flavor | ternary('--ceph-storage-flavor '
|
||||||
|
~ tripleo_overcloud_profiles_match_ceph_storage_flavor, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_block_storage_flavor | ternary('--block-storage-flavor '
|
||||||
|
~ tripleo_overcloud_profiles_match_block_storage_flavor, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_swift_storage_flavor | ternary('--swift-storage-flavor '
|
||||||
|
~ tripleo_overcloud_profiles_match_swift_storage_flavor, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_control_scale | ternary('--control-scale '
|
||||||
|
~ tripleo_overcloud_profiles_match_control_scale, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_compute_scale | ternary('--compute-scale '
|
||||||
|
~ tripleo_overcloud_profiles_match_compute_scale, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_ceph_storage_scale | ternary('--ceph-storage-scale '
|
||||||
|
~ tripleo_overcloud_profiles_match_ceph_storage_scale, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_block_storage_scale | ternary('--block-storage-scale '
|
||||||
|
~ tripleo_overcloud_profiles_match_block_storage_scale, '') }}
|
||||||
|
{{ tripleo_overcloud_profiles_match_swift_storage_scale | ternary('--swift-storage-scale '
|
||||||
|
~ tripleo_overcloud_profiles_match_swift_storage_scale, '') }}
|
||||||
|
|
||||||
|
_match_env:
|
||||||
|
OS_CLOUD: "{{ tripleo_overcloud_profiles_match_os_cloud }}"
|
||||||
|
|
||||||
|
- name: Show debug information
|
||||||
|
when: tripleo_overcloud_profiles_match_debug|bool
|
||||||
|
block:
|
||||||
|
- name: Show the profiles match command
|
||||||
|
debug:
|
||||||
|
var: _match_cmd
|
||||||
|
|
||||||
|
- name: Show the profiles match environment
|
||||||
|
debug:
|
||||||
|
var: _match_env
|
||||||
|
|
||||||
|
- name: Write reproducer script
|
||||||
|
tripleo_shell_script:
|
||||||
|
dest: "{{ tripleo_overcloud_profiles_match_home_dir }}/tripleo_overcloud_profiles_match.sh"
|
||||||
|
shell_command: "{{ _match_cmd }}"
|
||||||
|
shell_environment: "{{ _match_env }}"
|
||||||
|
when: tripleo_overcloud_profiles_match_generate_scripts|bool
|
||||||
|
|
||||||
|
- name: Match profiles
|
||||||
|
shell: "{{ _match_cmd }}" # noqa 305
|
||||||
|
environment: "{{ _match_env }}"
|
||||||
|
register: tripleo_overcloud_profiles_match_result
|
||||||
|
changed_when: true
|
||||||
|
|
||||||
|
- name: Set output fact
|
||||||
|
set_fact:
|
||||||
|
tripleo_overcloud_profiles_match_output: "{{ tripleo_overcloud_profiles_match_result.stdout }}"
|
||||||
1
roles/tripleo_overcloud_profiles_match/tests/inventory
Normal file
1
roles/tripleo_overcloud_profiles_match/tests/inventory
Normal file
@@ -0,0 +1 @@
|
|||||||
|
localhost
|
||||||
4
roles/tripleo_overcloud_profiles_match/tests/test.yml
Normal file
4
roles/tripleo_overcloud_profiles_match/tests/test.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- tripleo_overcloud_profiles_match
|
||||||
@@ -44,6 +44,7 @@
|
|||||||
- tripleo-operator-molecule-tripleo_overcloud_node_provision
|
- tripleo-operator-molecule-tripleo_overcloud_node_provision
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_node_unprovision
|
- tripleo-operator-molecule-tripleo_overcloud_node_unprovision
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_profiles_list
|
- tripleo-operator-molecule-tripleo_overcloud_profiles_list
|
||||||
|
- tripleo-operator-molecule-tripleo_overcloud_profiles_match
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_raid_create
|
- tripleo-operator-molecule-tripleo_overcloud_raid_create
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_roles_list
|
- tripleo-operator-molecule-tripleo_overcloud_roles_list
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_roles_show
|
- tripleo-operator-molecule-tripleo_overcloud_roles_show
|
||||||
@@ -104,6 +105,7 @@
|
|||||||
- tripleo-operator-molecule-tripleo_overcloud_node_provision
|
- tripleo-operator-molecule-tripleo_overcloud_node_provision
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_node_unprovision
|
- tripleo-operator-molecule-tripleo_overcloud_node_unprovision
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_profiles_list
|
- tripleo-operator-molecule-tripleo_overcloud_profiles_list
|
||||||
|
- tripleo-operator-molecule-tripleo_overcloud_profiles_match
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_raid_create
|
- tripleo-operator-molecule-tripleo_overcloud_raid_create
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_roles_list
|
- tripleo-operator-molecule-tripleo_overcloud_roles_list
|
||||||
- tripleo-operator-molecule-tripleo_overcloud_roles_show
|
- tripleo-operator-molecule-tripleo_overcloud_roles_show
|
||||||
@@ -615,6 +617,20 @@
|
|||||||
vars:
|
vars:
|
||||||
tox_extra_args: tripleo_overcloud_profiles_list
|
tox_extra_args: tripleo_overcloud_profiles_list
|
||||||
|
|
||||||
|
- job:
|
||||||
|
files:
|
||||||
|
- ^roles/tripleo_overcloud_profiles_match/.*
|
||||||
|
- ^bindep.txt
|
||||||
|
- ^galaxy.yml
|
||||||
|
- ^requirements.txt
|
||||||
|
- ^setup.cfg
|
||||||
|
- ^test-requirements.txt
|
||||||
|
- ^tox.ini
|
||||||
|
name: tripleo-operator-molecule-tripleo_overcloud_profiles_match
|
||||||
|
parent: tripleo-operator-molecule-base
|
||||||
|
vars:
|
||||||
|
tox_extra_args: tripleo_overcloud_profiles_match
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
files:
|
files:
|
||||||
- ^roles/tripleo_overcloud_raid_create/.*
|
- ^roles/tripleo_overcloud_raid_create/.*
|
||||||
|
|||||||
Reference in New Issue
Block a user