Heat must use keystone v3 API, packstack configures v2.0

Bug #1464371 reported by John Haller
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Packstack
Won't Fix
Undecided
Ivan Chavero (imcsk8)

Bug Description

Packstack defaults the Keystone endpoint to v2.0. For Heat resources
like OS::Heat::WaitCondition and OS::Heat::SoftwareDeployment to work,
the delegated Heat requires the delegated authority, which needs the
Keystone v3 API.

Packstack uses the same CONFIG_KEYSTONE_PUBLIC_URL for all configuration files.
The default for the public URL is to provide the v2.0 API.

Heat needs the v3 API. There are two possible solutions, setting the
keystone API default to v3 for all services, by setting DEFAULT_VALUE to 'v3' below,
or by breaking out the keystone public URL used by heat separately, and defaulting that to v3.
I've tested just setting Heat to use v3 auth, haven't tested other services.

Related code snippets:

packstack/puppet/templates/heat.pp:
class { '::heat::keystone::domain':
  auth_url => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),

packstack/plugins/keystone_100.py
            {"CMD_OPTION": "keystone-api-version",
             "PROMPT": "Enter the Keystone API version string.",
             "OPTION_LIST": ['v2.0', 'v3'],
             "VALIDATORS": [validators.validate_options],
             "DEFAULT_VALUE": 'v2.0',
             "MASK_INPUT": False,
             "LOOSE_VALIDATION": False,
             "CONF_NAME": 'CONFIG_KEYSTONE_API_VERSION',
             "USE_DEFAULT": True,
             "NEED_CONFIRM": False,
             "CONDITION": False},

    config['CONFIG_KEYSTONE_PUBLIC_URL'] = "http://%s:5000/%s" % (
        config['CONFIG_KEYSTONE_HOST_URL'],
        config['CONFIG_KEYSTONE_API_VERSION']
    )

Changed in packstack:
assignee: nobody → Ivan Chavero (imcsk8) (ichavero-ichavero)
Revision history for this message
Alan Pevec (apevec) wrote :

https://www.redhat.com/archives/rdo-list/2015-December/msg00038.html
" heat works around endpoints with the v2.0 path transparently, so there's nothing to do with packstack"

Changed in packstack:
status: New → Won't Fix
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.