Hosting SonarQube into EKS

HI Team

I am hosting SonarQube on AWS EKS. my docker file is like this
"# Use the SonarQube 7.4 Community Edition base image from Docker Hub
FROM sonarqube:7.4-community

Optional: Add any additional configurations or plugins here if needed

Expose the default SonarQube ports

EXPOSE 9000

Entry point: Start SonarQube

CMD [“bin/run.sh”]
"
Image was pushed properly to ECR and i deployed to EKS.
In ingress SonarQube is configured as sub path. when we are trying to hit it (https://test/sonarqube), it is showing as loading and while inspect we are seeing this error:

GET https://test/js/vendors~main.e8d73981.chunk.js net::ERR_ABORTED 404 (Not Found)

GET https://test/js/main.1f2ef3a6.js net::ERR_ABORTED 404 (Not Found)

BUT WHEN WE DEPLOYING IN LOCAL AND THE HITTING URL LIKE localhost:9000, it is loading fine, plz help



Bb202262922e445a3a06c62d70d4ba63f638696892537496150_docker.txt (282 Bytes)

Hey there.

I don’t think you’re going to find much support for running SonarQube 7.4 (released in November 18, the very first version of SonarQube that had an official Docker image) in EKS.

I suggest you work on upgrading your SonarQube instance to a supported verison. Your upgrade path is:

7.4 → 7.9.6 → 8.9.10 → 9.9.8 → 24.12 (last step optional)

You may find these resources helpful:

Or starting over from scratch.

Once on a supported version, we have clear guidance on how to install either usign the Zip File, Docker Image, or deploying to Kubernetes.