4a4bd9c06a
This change removes logic for releases older than train, because these releases are already EOLed. This covers only overcloud-* roles and playbooks and the other items will be covered by separate changes. Note that this change also removes the containerized_* variables because current active releases(>=Train) no longer supports non-containerized deployment. The containerized_overcloud_upgrade variable is still left because the variable is still required by the tripleo-ci-base-multinode-standard job template. Change-Id: If29ec2c2219a28a1f79db0e552e2c622c0a7bda6
15 lines
387 B
YAML
15 lines
387 B
YAML
---
|
|
# tasks file for ansible-role-tripleo-overcloud-prep-containers
|
|
- name: gather facts needed by role
|
|
setup:
|
|
gather_subset: "!min,user_dir,python"
|
|
when: >
|
|
ansible_user_dir is not defined or
|
|
ansible_python is not defined
|
|
|
|
- name: set python_cmd
|
|
set_fact:
|
|
python_cmd: "python{{ ansible_python.version.major }}"
|
|
cacheable: true
|
|
when: python_cmd is not defined
|