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

[stable/sonarqube] Fix failing deployment and tests #4871

Merged
merged 1 commit into from
Apr 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/sonarqube/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sonarqube
description: Sonarqube is an open sourced code quality scanning tool
version: 0.3.6
version: 0.3.7
appVersion: 6.5
keywords:
- coverage
Expand Down
4 changes: 0 additions & 4 deletions stable/sonarqube/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ spec:
subPath: extensions
- name: install-plugins
mountPath: /opt/sonarqube/extensions/plugins/install_plugins.sh
subPath: install_plugins.sh
{{- end }}
containers:
- name: {{ .Chart.Name }}
Expand Down Expand Up @@ -73,7 +72,6 @@ spec:
{{- if .Values.sonarProperties }}
- name: config
mountPath: /opt/sonarqube/conf/sonar.properties
subPath: sonar.properties
{{- end}}
- mountPath: /opt/sonarqube/data
name: sonarqube
Expand All @@ -83,7 +81,6 @@ spec:
subPath: extensions
- name: install-plugins
mountPath: /opt/sonarqube/extensions/plugins/install_plugins.sh
subPath: install_plugins.sh
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- if .Values.nodeSelector }}
Expand All @@ -97,7 +94,6 @@ spec:
- name: install-plugins
configMap:
name: {{ template "sonarqube.fullname" . }}-install-plugins
defaultMode: 0775
- name: sonarqube
{{- if .Values.persistence.enabled }}
persistentVolumeClaim:
Expand Down
4 changes: 2 additions & 2 deletions stable/sonarqube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ ingress:
# - chart-example.local

readinessProbe:
initialDelaySeconds: 120
initialDelaySeconds: 60
periodSeconds: 30
failureThreshold: 6
livenessProbe:
initialDelaySeconds: 120
initialDelaySeconds: 60
periodSeconds: 30

# Set extra env variables. Like proxy settings.
Expand Down