9755c924be
For the CentOS 7 to 8 transition, we will have a period where both CentOS 7 and 8 images are available. We differentiate these images via a tag - the CentOS 8 images will have a tag of train-centos8 (or master-centos8 temporarily). To achieve this, and maintain backwards compatibility for the openstack_release variable, we introduce a new 'openstack_tag' variable. This variable is based on openstack_release, but has a suffix of 'openstack_tag_suffix', which is empty except on CentOS 8 where it has a value of '-centos8'. Change-Id: I12ce4661afb3c255136cdc1aabe7cbd25560d625 Partially-Implements: blueprint centos-rhel-8
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
---
|
|
project_name: "tempest"
|
|
|
|
tempest_services:
|
|
tempest:
|
|
container_name: "tempest"
|
|
image: "{{ tempest_image_full }}"
|
|
enabled: true
|
|
group: "tempest"
|
|
volumes: "{{ tempest_default_volumes + tempest_extra_volumes }}"
|
|
dimensions: "{{ tempest_dimensions }}"
|
|
|
|
|
|
########
|
|
# Docker
|
|
########
|
|
tempest_install_type: "{{ kolla_install_type }}"
|
|
tempest_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ tempest_install_type }}-tempest"
|
|
tempest_tag: "{{ openstack_tag }}"
|
|
tempest_image_full: "{{ tempest_image }}:{{ tempest_tag }}"
|
|
tempest_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
tempest_default_volumes:
|
|
- "{{ node_config_directory }}/tempest/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
|
|
tempest_extra_volumes: "{{ default_extra_volumes }}"
|
|
|
|
###########################
|
|
# Tempest Required Resource
|
|
###########################
|
|
image_url: "http://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img"
|
|
|
|
tempest_image_id:
|
|
tempest_image_alt_id: "{{ tempest_image_id }}"
|
|
tempest_flavor_ref_id:
|
|
tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
|
|
tempest_public_network_id:
|
|
tempest_floating_network_name:
|
|
tempest_image_ssh_user: cirros
|
|
tempest_image_ssh_password: gocubsgo
|