Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Fixed Sonarqube secrets definition #7641

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/sonarqube/Chart.yaml
@@ -1,6 +1,6 @@
name: sonarqube
description: Sonarqube is an open sourced code quality scanning tool
version: 0.9.0
version: 0.9.1
appVersion: 6.7.3
keywords:
- coverage
Expand Down
4 changes: 2 additions & 2 deletions stable/sonarqube/templates/secret.yaml
@@ -1,5 +1,5 @@
{{- if eq .Values.database.type "postgresql" -}}
{{- if eq .Values.postgresql.enabled false -}}
{{- if eq .Values.postgresql.enabled true -}}
apiVersion: v1
kind: Secret
metadata:
Expand All @@ -15,7 +15,7 @@ data:
{{- end -}}
{{- end -}}
{{- if eq .Values.database.type "mysql" -}}
{{- if eq .Values.mysql.enabled false -}}
{{- if eq .Values.mysql.enabled true -}}
apiVersion: v1
kind: Secret
metadata:
Expand Down