--- # Copyright 2021 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: Prepare hosts: all gather_facts: false tasks: - name: populate undercloud.conf copy: dest: "/tmp/undercloud.conf" content: | [DEFAULT] undercloud_public_host = 192.168.24.1 - name: populate containers-prepare-parameter.yaml copy: dest: "/tmp/containers-prepare-parameter.yaml" content: | parameter_defaults: DockerInsecureRegistryAddress: - 192.168.24.1:8787 - docker.io ContainerImagePrepare: - push_destination: "192.168.24.1:8787" set: tag: "current-tripleo" namespace: "docker.io/tripleomaster" name_prefix: "openstack" name_suffix: "" rhel_containers: "false" ceph_namespace: "quay.ceph.io/ceph-ci" ceph_image: "daemon" ceph_tag: "v5.0.7-stable-5.0-octopus-centos-8-x86_64" openshift_tag: "v3.11.0" - name: Prepare localhost hosts: localhost gather_facts: false tasks: - name: populate containers-prepare-parameter.yaml copy: dest: "/tmp/containers-prepare-parameter.yaml" content: | parameter_defaults: DockerInsecureRegistryAddress: - 192.168.24.1:8787 - docker.io ContainerImagePrepare: - push_destination: "192.168.24.1:8787" set: tag: "current-tripleo" namespace: "docker.io/tripleomaster" name_prefix: "openstack" name_suffix: "" rhel_containers: "false" ceph_namespace: "quay.ceph.io/ceph-ci" ceph_image: "daemon" ceph_tag: "v5.0.7-stable-5.0-octopus-centos-8-x86_64" openshift_tag: "v3.11.0"