Bug 1913039
| Summary: | Not able to get latest ovn_controller image after hotfix and minor update | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Jeremy <jmelvin> |
| Component: | python-paunch | Assignee: | Steve Baker <sbaker> |
| Status: | CLOSED DUPLICATE | QA Contact: | nlevinki <nlevinki> |
| Severity: | urgent | Docs Contact: | |
| Priority: | urgent | ||
| Version: | 16.1 (Train) | CC: | aschultz, dbecker, mburns, morazi |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| 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: | 2021-01-05 20:42:05 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: | |||
|
Description
Jeremy
2021-01-05 19:34:40 UTC
You are currently suffering from https://bugzilla.redhat.com/show_bug.cgi?id=1881476. Additionally the container-image-prepare is incorrect if that's the entirety for what you are trying to do. You would likely only want to patch the ovn containers instead of all of them but that's not what you have configured. You would want to do something like: parameter_defaults: ContainerImagePrepare: - push_destination: true set: name_prefix: openstack- name_suffix: '' namespace: registry.redhat.io/rhosp-rhel8 neutron_driver: ovn rhel_containers: false tag_from_label: '{version}-{release}' excludes: - ovn-controller - push_destination: true set: name_prefix: openstack- name_suffix: '' namespace: registry.redhat.io/rhosp-rhel8 neutron_driver: ovn rhel_containers: false tag_from_label: '{version}-{release}' includes: - ovn-controller modify_role: tripleo-modify-image modify_append_tag: "-hotfix" modify_vars: tasks_from: rpm_install.yml rpms_path: /home/stack/neutron-hotfix-pkgs ContainerImageRegistryCredentials: registry.redhat.io: xxxx Note: do not specify both tag and tag_from_label. You should do either but not both. As of 16.1.2, tag takes precedence so it's being defined as :16.1 and not being updated due to the paunch bug. If you want to lock to a specific 16.1.x, you can use tag: 16.1.3 instead of tag_from_label but you'll also need the paunch patch. *** This bug has been marked as a duplicate of bug 1881476 *** |