Bug 1359911
| Summary: | Cannot generate overcloud images with liberty | ||
|---|---|---|---|
| Product: | [Community] RDO | Reporter: | David Hill <dhill> |
| Component: | openstack-tripleo | Assignee: | James Slagle <jslagle> |
| Status: | CLOSED UPSTREAM | QA Contact: | Shai Revivo <srevivo> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | Liberty | CC: | apevec, chris.brown, dhill |
| Target Milestone: | --- | ||
| Target Release: | trunk | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2017-06-18 12:09:34 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
This is fixed by a patch in RDO Liberty CloudSIG builds: http://cbs.centos.org/koji/buildinfo?buildID=7087 You are probably using RDO Trunk Liberty packages built from pure upstream stable/liberty sources, please report this issue upstream at https://bugs.launchpad.net/tripleo/+filebug Fixed upstream. |
Description of problem: Cannot generate overcloud images with liberty because kilo is hardcoded in overcloud_image.py in RDO_RELEASE. --- a/tripleoclient/v1/overcloud_image.py +++ b/tripleoclient/v1/overcloud_image.py @@ -448,7 +448,7 @@ class BuildOvercloudImage(command.Command): self._set_env_var(env_vars, 'FS_TYPE', 'xfs') if env_vars.get('RHOS') == '0': - env_vars['RDO_RELEASE'] = 'kilo' + env_vars['RDO_RELEASE'] = 'liberty' dib_common_elements.extend([ 'epel', 'rdo-release', Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. Install rdo liberty packages and try to build overcloud images. 2. 3. Actual results: Fails Expected results: Succeeds Additional info: What am I missing?