Skip to content

Commit c16c199

Browse files
committed
fix helm update with quote on the yaml resource
1 parent 230b501 commit c16c199

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

configuration-sample/ods-core.env.sample

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ SONARQUBE_DB_CAPACITY=2Gi
175175
SONARQUBE_DB_BACKUP_CAPACITY=1Gi
176176

177177
# SonarQube scan configuration
178-
SONAR_SCAN_ENABLED=true
179-
SONAR_SCAN_EXCLUSIONS=
178+
SONAR_SCAN_ENABLED="true"
179+
SONAR_SCAN_EXCLUSIONS=""
180180
SONAR_SCAN_NEXUS_REPOSITORY=leva-documentation
181181
SONAR_SCAN_ALERT_EMAILS=
182182

sonarqube/chart/templates/cm-scan.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ metadata:
66
apiVersion: v1
77
data:
88
alertEmails: {{ .Values.scan.sonaralertEmails }}
9-
enabled: {{ .Values.scan.sonarEnabled }}
10-
exclusions: {{ .Values.scan.sonarExclusions }}
9+
enabled: {{ .Values.scan.sonarEnabled | quote }}
10+
exclusions: {{ .Values.scan.sonarExclusions | quote }}
1111
nexusRepository: {{ .Values.scan.sonarNexusRepository }}

0 commit comments

Comments
 (0)