From f617d6ac35dc2a10e5b856449f846da1484f968c Mon Sep 17 00:00:00 2001 From: Scott Collier Date: Fri, 17 May 2019 09:02:07 -0400 Subject: [PATCH] [stable/sonarqube] Use #!/bin/bash in ./templates/copy-plugins.yaml instead of #!/bin/sh (#13484) * Modify Ingress template to be easier to --set Signed-off-by: Scott Collier * Update README Signed-off-by: Scott Collier * Updated TLS to match new Ingress format Signed-off-by: Scott Collier * Fix trailing spaces Signed-off-by: Scott Collier * Additional readme info Signed-off-by: Scott Collier * Modified ingress template to allow path configuration. Bumped major version to reflect incompatible API change. Signed-off-by: Scott Collier * Increment Chart patch version Signed-off-by: Scott Collier * Just use /bin/bash instead of /usr/bin/env bash Signed-off-by: Scott Collier --- stable/sonarqube/Chart.yaml | 2 +- stable/sonarqube/templates/copy-plugins.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/sonarqube/Chart.yaml b/stable/sonarqube/Chart.yaml index 7bf040b4ae..854ccfe655 100644 --- a/stable/sonarqube/Chart.yaml +++ b/stable/sonarqube/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: sonarqube description: Sonarqube is an open sourced code quality scanning tool -version: 1.0.2 +version: 1.0.3 appVersion: 7.7 keywords: - coverage diff --git a/stable/sonarqube/templates/copy-plugins.yaml b/stable/sonarqube/templates/copy-plugins.yaml index 2e53971909..41b0baf297 100644 --- a/stable/sonarqube/templates/copy-plugins.yaml +++ b/stable/sonarqube/templates/copy-plugins.yaml @@ -9,7 +9,7 @@ metadata: heritage: {{ .Release.Service }} data: copy_plugins.sh: |- - #! /bin/sh + #!/bin/bash {{- if .Values.plugins.deleteDefaultPlugins }} rm -f /opt/sonarqube/extensions/plugins/*.jar {{- end }}