How to enable the https instead of http in sonarqube-lts helm charts

Currently sonarqube is up and running by using port-forward( http://localhost:8080 )
Now i want to enable the https instead of http. so i am expecting the sonarqube will up on
https://localhost:8080.
Could please help with which place i need to update the soanrqube-lts helm charts so that it works with https

Can some one please help me

Hello @pjaggu1

Regarding the helm chart, you have the possibility to configure the ingress to support TLS

ingress:
  ...
  tls:
    - secretName: testsecret-tls
      hosts:
        - sonarqube.example.com

You can use the official documentation to setup the TLS secret:

But I don’t think that you will be easily able to set it up on localhost, since you also need an ingress controller