Add logic to use different Ceph container images based on OSP version

Previously there were some overrides in tripleo-quickstart to use
a different Ceph container image for pike; having a condition in
tripleo-quickstart-extras seems better as it moves the logic to
pick the right container image in one repo/file.

Change-Id: Iefa73f7df58d9ef0c32ace3cdfc92fee3540841c
This commit is contained in:
Giulio Fidente 2019-01-24 18:11:13 +01:00
parent 29b0bd845a
commit 75b10e1710

View File

@ -27,7 +27,12 @@ docker_prep_prefix: centos-binary-
docker_prep_suffix: ""
docker_ceph_namespace: docker.io/ceph
docker_ceph_image: daemon
docker_ceph_tag: v3.2.1-stable-3.2-luminous-centos-7-x86_64
docker_ceph_tag: >-
{% if release in ['pike'] -%}
v3.0.3-stable-3.0-jewel-centos-7-x86_64
{%- else -%}
v3.2.1-stable-3.2-luminous-centos-7-x86_64
{%- endif -%}
additional_insecure_registry: false
deployed_server: false
overcloud_templates_path: /usr/share/openstack-tripleo-heat-templates