Fixes problem with kolla-kubernetes 3.0.2 images

The kolla-kubernetes deliverable uses Newton images, however,
the kolla-ansible 4.0.0 deliverable is targeted at Ocata.  In
Ocata, nova requires the placement API implementation.  This
change is transitory until genconfig is no longer required
for kolla-kubernetes to operate.

Change-Id: I1c192a01d91b4f507bafadb53b6abb1efdcdb46c
Closes-Bug: #1663961
This commit is contained in:
Steven Dake 2017-02-11 23:28:35 -07:00
parent 5872392b59
commit 6cb4507267
1 changed files with 8 additions and 4 deletions

View File

@ -218,16 +218,20 @@ api_paste_config = /etc/nova/api-paste.ini
[scheduler]
max_attempts = 10
# TODO(sdake): rework this hacky workaround after the placement API is
# implemented in the Kolla-kubernetes deliverable.
# In order to implement the placement API, the kolla-kubernetes
# deliverable needs the Kolla deliverable to release 4.0.0
# images to docker hub. See this blueprint for status:
# https://blueprints.launchpad.net/kolla-kubernetes/+spec/kolla-kubernetes-placement
{% if orchestration_engine != 'KUBERNETES' %}
[placement]
auth_type = password
{% if orchestration_engine == 'KUBERNETES' %}
auth_url = {{ keystone_admin_url }}
{% else %}
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
{% endif %}
username = {{ placement_keystone_user }}
password = {{ placement_keystone_password }}
user_domain_name = default
project_name = service
project_domain_name = default
os_region_name = {{ openstack_region_name }}
{% endif %}