4de0bc4d94
Add two playbooks which call the tripleo_hosts_entries and tripleo_podman roles. These roles are usually called from THT deploy-steps but in order to deploy Ceph before the overcloud the 'openstack overcloud ceph deploy' command needs to be able to call them earlier so these two playbooks provide it an interface to do so. See I24bea131cc949888518994a3aa08c200d579cb7d which depends-on this patch. Related-Bug: 1958524 Change-Id: Ibaeb1249ae02651cbefba75d0912da205880a495
26 lines
935 B
YAML
26 lines
935 B
YAML
---
|
|
# Copyright 2022 Red Hat, Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
# Used by deployed ceph to configure container registry before overcloud deploy
|
|
|
|
- name: Configure overcloud container registry
|
|
hosts: allovercloud
|
|
become: true
|
|
tasks:
|
|
- name: Configure podman and include insecure registries
|
|
include_role:
|
|
name: tripleo_podman
|
|
tasks_from: tripleo_podman_install.yml
|