Bug #34525
closedEnsure that the insights snippet is being called by honoring the value of host_registration_insights parameter
Description
Description of problem:
The insights registration steps happen during host build even if the host_registration_insights parameter is set to false in Satellite 7.0
The problem is that we call the snippet "insights" directly in "kickstart default" template without validating the conditional.
Steps to Reproduce:
1. Build a Satellite 7 beta and configure it for PXE provisioning
2. Set the value of "host_registration_insights" boolean to false in global parameters.
3. Create and submit the host for build.
4. Once the host is built either render the Provisioning template against the host or else check the /root/install.post.log file on the host.
Actual results:
We will be able to see that even after the host_registration_insights parameter is set to false, as a part of build process, the insights-client package was installed and the registration was attempted.
Expected results:
The build process should honor the value of host_registration_insights boolean and based on that, it should execute the insights-related actions in the post-provisioning steps.
Additional info:
In kickstart_default template and kickstart_ovirt template, we directly call the snippet for insights in this way:
<%= snippet 'insights' -%>
but it should be called in this way:
<% if host_param_true?('host_registration_insights') ->
<= snippet 'insights' ->
< end -%>
Updated by The Foreman Bot almost 3 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/9121 added
Updated by Sayan Das over 2 years ago
- Status changed from Ready For Testing to Closed
Applied in changeset foreman|db39969134220ef7969b47c6e8d7480a63436bfd.
Updated by The Foreman Bot over 2 years ago
- Pull request https://github.com/theforeman/foreman/pull/9143 added
Updated by The Foreman Bot over 2 years ago
- Pull request https://github.com/theforeman/foreman/pull/9144 added