Can't deploy runner with helm chart project when using the ubi-fips
When deploying GitLab Runner using the ubi-fps image, the installation fails with the following error
mkdir: cannot create directory '/home/gitlab-runner': Permission denied
After investigations, in the runner ubi-fips image, a volume is created and mounted on /home/gitlab-runner
which seems the source of the issue. A qucick patch (replacing all occurrence of /home/gitlab-runner
in the helm chart configmaps.yaml by another directory) prove to fix the issue.
However after comparing with the dockerfile of other tag, it also seems that some permissions are also missing thus the Permission denied
error