688ec4c8cd
This change introduce tripleo-cellv2 role and playbook create-nova-cell-v2.yaml to simplify the post steps when creating an additional cellv2 in tripleo. For reference, [1] is the doc patch providing at the moment the manual steps. [1] https://review.opendev.org/672744 Change-Id: I288a9217dce948d33d9b47938e7977294d255c7a
38 lines
1.4 KiB
YAML
38 lines
1.4 KiB
YAML
---
|
|
# 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.
|
|
|
|
- name: Check if cell exist
|
|
block:
|
|
- name: Fail if cell_name or containercli are not passed
|
|
fail: msg="Both tripleo_cellv2_cell_name and tripleo_cellv2_containercli are mandatory parameters!"
|
|
when: tripleo_cellv2_cell_name is not defined or tripleo_cellv2_containercli is not defined
|
|
- name: Check if cell is already created
|
|
become: true
|
|
shell: |-
|
|
set -o pipefail
|
|
{{ tripleo_cellv2_containercli }} exec -i -u root nova_api \
|
|
nova-manage {{ (tripleo_cellv2_debug | bool) | ternary('--debug', '') }} \
|
|
cell_v2 list_cells | grep {{ tripleo_cellv2_cell_name }}
|
|
ignore_errors: true
|
|
register: cell_check_result
|
|
- name: Fail if cell already exist
|
|
fail: msg="Cell with name {{ tripleo_cellv2_cell_name }} already exist!"
|
|
when: cell_check_result.rc == 0
|
|
tags:
|
|
- check
|
|
- extract
|
|
- create
|