Deploy the undercloud/overcloud containerized in newer versions

We are missing to deploy the environment
with containers depending on the version, also the undercloud
is with <20GB in the disk, and the free space validation fails.

Change-Id: Ibcdfd71b9280615aedc4d59ef0c566c475f15d0b
This commit is contained in:
Carlos Camacho 2019-11-20 17:10:40 +01:00
parent c13b3641a7
commit 94f80c47cf
1 changed files with 18 additions and 2 deletions

View File

@ -6,8 +6,21 @@
ssl_overcloud: false
undercloud_check_sanity: true
undercloud_upgrade_cleanup: true
containerized_undercloud: false
containerized_overcloud: false
containerized_undercloud: >-
{% if release not in ['newton','ocata','pike','queens'] -%}
true
{%- else -%}
false
{%- endif -%}
containerized_overcloud: >-
{% if release in ['newton', 'ocata', 'pike'] -%}
false
{%- else -%}
true
{%- endif -%}
containerized_overcloud_upgrade: false
containerized_undercloud_upgrade: true
@ -27,3 +40,6 @@ run_tempest: false
# configured public-vip and admin-vip.
undercloud_generate_service_certificate: true
undercloud_enable_swift_encryption: true
# There is not enough space in the Undercloud <20GB
undercloud_enable_validations: false