Add install survey link to package installation output
Overview
We would like to run a survey to get feedback on the ease of installation for self-managed GitLab. The survey has already been created and links are ready to go, thanks @akiripolsky!
Requirements
We should display a link during each reconfigure run, asking a user for their feedback. If it is trivial to only show during upgrades/installs that is ideal, but otherwise let's show on all reconfigure for now and we can refine later.
Help us improve the installation experience, let us know how we did with a 1 minute survey: <survey link>
We should output this at the end of the installation output, below where we link to the README: Help us improve the installation experience"
Next steps
- Engineering review of details and schedule for a milestone
Survey links
Information about installation type and release of GitLab should be passed through the link. You can read more about it in the Qualtrics documentation. Values for installation type should be 'omnibus', 'helm', 'docker', 'other'
. For release value should be release number with -
instead of .
(e.g. for GitLab version 13.6 the value would be 13-6
).
I guess that link should be created dynamically. Bellow I try to illustrate how I think it should happen:
installation = 'omnibus'
release = '13-7'
link_base = 'https://gitlab.fra1.qualtrics.com/jfe/form/SV_6kVqZANThUQ1bZb'
full_link = link_base + '?installation=' + installation + '&release=' + release
Where the value of the full_link
would be https://gitlab.fra1.qualtrics.com/jfe/form/SV_6kVqZANThUQ1bZb?installation=omnibus&release=13-7