Installing from Helm repository
SonarQube Data Center Edition (DCE) can be installed from a customized SonarQube Server Helm chart.
Pre-installation steps
echo -n "your_secret" | openssl dgst -sha256 -hmac "your_key" -binary | base64Installation command
helm repo add sonarqube https://SonarSource.github.io/helm-chart-sonarqube
helm repo update
kubectl create namespace sonarqube-dce
export JWT_SECRET=$(echo -n "your_secret" | openssl dgst -sha256 -hmac "your_key" -binary | base64)
helm upgrade --install -n sonarqube-dce sonarqube-dce --set ApplicationNodes.jwtSecret=$JWT_SECRET sonarqube/sonarqube-dceLast updated
Was this helpful?

