Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Pull in instack-undercloud
Browse files Browse the repository at this point in the history
For backwards compatibility on the job that runs on instack-undercloud,
we need to continue to pull in instack-undercloud and run it since we've
removed the tripleoclient integration.

Change-Id: I77ec88ad4ace718d529ef1824d82032031c4d1eb
Depends-On: https://review.openstack.org/#/c/588606/
Depends-On: https://review.openstack.org/#/c/605747/
Related-Blueprint: remove-instack-undercloud
  • Loading branch information
mwhahaha committed Sep 27, 2018
1 parent 261a1f1 commit 7ac402f
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion config/general_config/featureset003.yml
Expand Up @@ -3,8 +3,25 @@ ssl_overcloud: false
undercloud_check_idempotency: true
undercloud_check_sanity: false

# in order to still support running this job on instack-undercloud, we need
# to specify a different install command for >= Stein since we dropped the
# python-tripleoclient integration
undercloud_install_cmd: >-
{% if containerized_undercloud|bool or release in ['ocata', 'pike', 'queens', 'rocky'] -%}
openstack undercloud install
{%- else -%}
instack-undercloud
{%- endif -%}
undercloud_rpm_dependencies: >-
{% if containerized_undercloud|bool or release in ['ocata', 'pike', 'queens', 'rocky'] -%}
python-tripleoclient
{%- else -%}
instack-undercloud python-tripleoclient
{%- endif -%}
undercloud_install_cli_options: >-
{% if release not in ['newton','ocata','pike','queens'] -%}
{% if release in ['rocky'] -%}
--use-heat=False
{%- endif -%}
Expand Down

0 comments on commit 7ac402f

Please sign in to comment.