Bug 1615504
| Summary: | Installer fails on task "Wait for the ServiceMonitor CRD to be created" | |||
|---|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Matt Bruzek <mbruzek> | |
| Component: | Installer | Assignee: | Frederic Branczyk <fbranczy> | |
| Status: | CLOSED ERRATA | QA Contact: | Gaoyun Pei <gpei> | |
| Severity: | unspecified | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 3.11.0 | CC: | aos-bugs, jliberma, jokerman, knakayam, mmccomas, rgregory, sdodson | |
| Target Milestone: | --- | |||
| Target Release: | 3.11.0 | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | No Doc Update | ||
| Doc Text: |
undefined
|
Story Points: | --- | |
| Clone Of: | ||||
| : | 1655693 (view as bug list) | Environment: | ||
| Last Closed: | 2018-10-11 07:24:39 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: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1655693 | |||
|
Description
Matt Bruzek
2018-08-13 18:08:30 UTC
Yeah, we need to account for evaluating oreg_url in order to support disconnected installs. Here's a relatively decent pattern to follow, https://github.com/openshift/openshift-ansible/blob/master/roles/ansible_service_broker/defaults/main.yml#L26-L33 However, I've just noticed a bug, in that the default dictionary should contain ${component} l_asb_default_images_dict: origin: 'docker.io/ansibleplaybookbundle/origin-${component}:latest' openshift-enterprise: 'registry.redhat.io/openshift3/ose-${component}:${version}' l_asb_default_images_default: "{{ l_asb_default_images_dict[openshift_deployment_type] }}" l_asb_image_url: "{{ oreg_url | default(l_asb_default_images_default) | regex_replace('${version}' | regex_escape, openshift_image_tag) }}" ansible_service_broker_image: "{{ l_asb_image_url | regex_replace('${component}' | regex_escape, 'ansible-service-broker') }}" https://github.com/openshift/openshift-ansible/pull/9477 should address this. Should be in openshift-ansible-3.11.0-0.15.0 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2018:2652 |