[stable/grafana] Add variable to disable creating test resources (#17757)

Signed-off-by: Andrew Drake <andrew@frontapp.com>
This commit is contained in:
Andrew Drake
2019-10-08 16:37:51 -07:00
committed by Kubernetes Prow Robot
parent aa6767bf99
commit b7e5ce71c5
9 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: grafana
version: 3.8.19
version: 3.9.0
appVersion: 6.3.5
kubeVersion: "^1.8.0-0"
description: The leading tool for querying and visualizing time series and metrics.
+1
View File
@@ -129,6 +129,7 @@ The command removes all the Kubernetes components associated with the chart and
| `rbac.extraRoleRules` | Additional rules to add to the Role | [] |
| `rbac.extraClusterRoleRules` | Additional rules to add to the ClusterRole | [] |
| `command` | Define command to be executed by grafana container at startup | `nil` |
| `testFramework.enabled` | Whether to create test-related resources | `true` |
| `testFramework.image` | `test-framework` image repository. | `dduportal/bats` |
| `testFramework.tag` | `test-framework` image tag. | `0.4.0` |
| `testFramework.securityContext` | `test-framework` securityContext | `{}` |
@@ -1,3 +1,4 @@
{{- if .Values.testFramework.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
@@ -16,3 +17,4 @@ data:
code=$(curl -s -o /dev/null -I -w "%{http_code}" $url)
[ "$code" == "200" ]
}
{{- end }}
@@ -1,4 +1,4 @@
{{- if .Values.rbac.pspEnabled }}
{{- if and .Values.testFramework.enabled .Values.rbac.pspEnabled }}
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
@@ -1,4 +1,4 @@
{{- if .Values.rbac.pspEnabled -}}
{{- if and .Values.testFramework.enabled .Values.rbac.pspEnabled -}}
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
@@ -1,4 +1,4 @@
{{- if .Values.rbac.pspEnabled -}}
{{- if and .Values.testFramework.enabled .Values.rbac.pspEnabled -}}
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
@@ -1,4 +1,4 @@
{{- if .Values.serviceAccount.create }}
{{- if and .Values.testFramework.enabled .Values.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
+2
View File
@@ -1,3 +1,4 @@
{{- if .Values.testFramework.enabled }}
apiVersion: v1
kind: Pod
metadata:
@@ -63,3 +64,4 @@ spec:
- name: tools
emptyDir: {}
restartPolicy: Never
{{- end }}
+1
View File
@@ -54,6 +54,7 @@ image:
# - myRegistrKeySecretName
testFramework:
enabled: true
image: "dduportal/bats"
tag: "0.4.0"
securityContext: {}