Installing Helm chart
How to install the Helm chart for SonarQube Server’s Developer or Enterprise Edition.
General installation command
helm repo add sonarqube https://SonarSource.github.io/helm-chart-sonarqube
helm repo update
kubectl create namespace sonarqube
export MONITORING_PASSCODE="yourPasscode"
helm upgrade --install -n sonarqube sonarqube sonarqube/sonarqube --set edition=developer,monitoringPasscode=$MONITORING_PASSCODEExample: installing on OpenShift
helm repo add sonarqube https://SonarSource.github.io/helm-chart-sonarqube
helm repo update
kubectl create namespace sonarqube
export MONITORING_PASSCODE="yourPasscode"
helm upgrade --install -n sonarqube sonarqube sonarqube/sonarqube \
--set OpenShift.enabled=true \
--set postgresql.securityContext.enabled=false \
--set OpenShift.createSCC=false \
--set postgresql.containerSecurityContext.enabled=false \
--set edition=developer \
--set monitoringPasscode=$MONITORING_PASSCODERelated pages
Was this helpful?

