-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable console install when not 3.9 or newer #7108
Disable console install when not 3.9 or newer #7108
Conversation
playbooks/init/basic_facts.yml
Outdated
@@ -74,4 +74,4 @@ | |||
tasks: | |||
- set_fact: | |||
openshift_web_console_install: False | |||
when: openshift_deployment_subtype == 'registry' or ( osm_disabled_features is defined and 'WebConsole' in osm_disabled_features ) | |||
when: not openshift.common.version_gte_3_9 or openshift_deployment_subtype == 'registry' or ( osm_disabled_features is defined and 'WebConsole' in osm_disabled_features ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fact is likely not available at this point in playbook execution, which is unfortunate as this is the best place to ensure all code paths skip console installation.
Try moving it https://github.com/openshift/openshift-ansible/blob/master/playbooks/common/private/components.yml#L23
3249102
to
7467ce4
Compare
Thanks @sdodson updated |
/lgtm |
flake |
Automatic merge from submit-queue. |
Fixes openshift/origin#18573
/assign @sdodson
@smarterclayton @stevekuznetsov