Merge "Set 'distro_python_version' variable"

This commit is contained in:
Zuul 2019-08-13 04:00:55 +00:00 committed by Gerrit Code Review
commit 5c70e0a615

View File

@ -1049,3 +1049,16 @@ enable_vitrage_prometheus_datasource: "{{ enable_prometheus | bool }}"
# InfluxDB options # InfluxDB options
#################### ####################
influxdb_address: "{{ kolla_internal_fqdn }}" influxdb_address: "{{ kolla_internal_fqdn }}"
#########################
# Internal Image options
#########################
distro_python_version_map: {
"centos": "2.7",
"debian": "3.7",
"oraclelinux": "2.7",
"rhel": "2.7",
"ubuntu": "3.6"
}
distro_python_version: "{{ distro_python_version_map[kolla_base_distro] }}"