sonar.lf.logoUrl still broken in SonarQube 10.6

Hello,

Just upgraded to 10.6. sonar.lf.logoUrl is still broken in this version. I reopen this case, since this thread has been closed:

sonar.lf.logoUrl is broken after upgrade from SonarQube 10.4.1 to 10.5.0 - SonarQube - Sonar Community (sonarsource.com)

Regards

My workaround for the logo is to store it on the same domain server.

For users deploying SonarQube via Helm this can be achieved via an initContainer and and empty volume to added via the values.yaml and image added on the web/images folder.

  extraVolumes:
    - name: download-assets
      emptyDir: {}
  extraVolumeMounts:
    - name: download-assets
      mountPath: /opt/sonarqube/web/images
  extraInitContainers:
    - name: download-assets
      image: sonarqube:10.6.0-enterprise
      imagePullPolicy: IfNotPresent
      volumeMounts:
        - name: download-assets
          mountPath: /tmp/download-assets
      command:
        - bash
        - -ec
        - |
          rm -Rf /tmp/download-assets/* &&
          cp -R /opt/sonarqube/web/images/* /tmp/download-assets/ &&
          wget -q https://<original image location>.png &&
          echo "Done"
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.