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
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
---
|
|
project_name: "vmtp"
|
|
|
|
vmtp_services:
|
|
vmtp:
|
|
container_name: "vmtp"
|
|
image: "{{ vmtp_image_full }}"
|
|
enabled: true
|
|
group: "vmtp"
|
|
volumes: "{{ vmtp_default_volumes + vmtp_extra_volumes }}"
|
|
dimensions: "{{ vmtp_dimensions }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
vmtp_install_type: "{{ kolla_install_type }}"
|
|
vmtp_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ vmtp_install_type }}-vmtp"
|
|
vmtp_tag: "{{ openstack_tag }}"
|
|
vmtp_image_full: "{{ vmtp_image }}:{{ vmtp_tag }}"
|
|
vmtp_dimensions: "{{ default_container_dimensions }}"
|
|
|
|
vmtp_default_volumes:
|
|
- "{{ node_config_directory }}/vmtp/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
|
|
vmtp_extra_volumes: "{{ default_extra_volumes }}"
|
|
|
|
#########################
|
|
# VMTP Specific resources
|
|
#########################
|
|
vmtp_vm_availability_zone: "nova"
|
|
vmtp_vm_image_name: "Ubuntu Server 16.04"
|
|
vmtp_vm_ssh_username: "ubuntu"
|
|
vmtp_vm_flavor_type: "m1.small"
|
|
vmtp_vm_nameservers: ['8.8.8.8', '8.8.4.4']
|
|
vmtp_vm_image_url: "https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img"
|
|
vmtp_internal_network_name: ['vmtp-demo-net']
|
|
vmtp_internal_subnet_name: ['vmtp-demo-subnet']
|
|
vmtp_internal_subnet_name_ipv6: ['vmtp-demo-v6-subnet']
|
|
vmtp_internal_cidr: ['10.0.0.0/24']
|
|
vmtp_internal_cidr_v6: ['2001:45::/64']
|
|
vmtp_router_name: "pns-router"
|
|
vmtp_os_dp_network: "physnet1"
|