From 101d7043fc6a700d476c7b27650441543c57502a Mon Sep 17 00:00:00 2001 From: VictorGgl Date: Wed, 30 Mar 2022 21:53:29 -0400 Subject: [PATCH 1/2] Fix ingress "wrong type for value" error Fix #339 --- charts/sonarqube/templates/ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/sonarqube/templates/ingress.yaml b/charts/sonarqube/templates/ingress.yaml index 1125644..60677e4 100644 --- a/charts/sonarqube/templates/ingress.yaml +++ b/charts/sonarqube/templates/ingress.yaml @@ -31,7 +31,7 @@ spec: {{- end }} {{- if .Values.ingress.annotations }} {{- range $key, $value := .Values.ingress.annotations }} - {{- if and (eq $key "kubernetes.io/ingress.class") (contains $value "gce") }} + {{- if and (eq $key "kubernetes.io/ingress.class") (contains (toString $value) "gce") }} backend: serviceName: {{ default $serviceName .serviceName }} servicePort: {{ default $servicePort .servicePort }} From 60d27ac62f0a3344556ad36ddcc57f49759be954 Mon Sep 17 00:00:00 2001 From: Robert Kernick Date: Wed, 1 Jun 2022 09:40:37 -0400 Subject: [PATCH 2/2] update chart.yaml: --- charts/sonarqube/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/sonarqube/Chart.yaml b/charts/sonarqube/Chart.yaml index 236340c..8b44afb 100644 --- a/charts/sonarqube/Chart.yaml +++ b/charts/sonarqube/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: sonarqube description: SonarQube is an open sourced code quality scanning tool -version: 9.10.2 +version: 9.10.3 appVersion: 8.9.7-community keywords: - coverage