You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current installer runs the install through a subprocess. However, the recommended and best practice is to use ansible runner to run the installer. Due to time constraints downstream, it was better to run it through a subprocess.
A lot of the same benefits we got for switching to runner for the quipucords server will apply here. Additionally, it just keeps our different packages consistent.
This will allow us to clean up the logs that go to the terminal, and it will also allow us to implement callbacks.
Additionally, we should save the install logs to a file.
The current installer runs the install through a subprocess. However, the recommended and best practice is to use ansible runner to run the installer. Due to time constraints downstream, it was better to run it through a subprocess.
A lot of the same benefits we got for switching to runner for the quipucords server will apply here. Additionally, it just keeps our different packages consistent.