Re-enable idempotent check for releases before master

A previous review disabled it due to a master
failure.

This review also sets overcloud ssl back to false.

Change-Id: I60078d6368132130537a6ed1b53d3f9dd7acd855
This commit is contained in:
Ronelle Landy 2019-01-08 08:35:22 -05:00
parent 364c4ecce9
commit 0b8cf2e5a0

View File

@ -9,7 +9,7 @@
# This enables TLS for the undercloud which will also make haproxy bind to the
# configured public-vip and admin-vip.
undercloud_generate_service_certificate: true
ssl_overcloud: true
ssl_overcloud: false
overcloud_templates_path: /usr/share/openstack-tripleo-heat-templates
undercloud_templates_path: /usr/share/openstack-tripleo-heat-templates
step_introspect: true
@ -21,7 +21,12 @@ containerized_overcloud: >-
{%- else -%}
true
{%- endif -%}
undercloud_check_idempotency: false
undercloud_check_idempotency: >-
{% if release not in ['ocata','pike','queens', 'rocky'] -%}
false
{%- else -%}
true
{%- endif -%}
delete_docker_cache: true
containerized_undercloud: >-