[stable/kibana] allow to disable test (#15462)

not everyone might want the test
the hardcoded image `dwdraju/alpine-curl-jq` in templates/tests/test.yaml might pose a problem
as well as writing to the local filesystem

Signed-off-by: Christoph Maser <christoph.maser+github@gmail.com>
This commit is contained in:
Christoph Maser
2019-07-11 12:15:06 -07:00
committed by Kubernetes Prow Robot
parent e00bbe31da
commit 09004fa332
5 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: kibana
version: 3.2.2
version: 3.2.3
appVersion: 6.7.0
description: Kibana is an open source data visualization plugin for Elasticsearch
icon: https://raw.githubusercontent.com/elastic/kibana/master/src/ui/public/icons/kibana-color.svg
+1
View File
@@ -118,6 +118,7 @@ The following table lists the configurable parameters of the kibana chart and th
| `extraConfigMapMounts` | Additional configmaps to be mounted | `[]` |
| `deployment.annotations` | Annotations for deployment | `{}` |
| `initContainers` | Init containers to add to the kibana deployment | `{}` |
| `testFramework.enabled` | enable the test framework | true |
| `testFramework.image` | `test-framework` image repository. | `dduportal/bats` |
| `testFramework.tag` | `test-framework` image tag. | `0.4.0` |
@@ -1,3 +1,4 @@
{{- if .Values.testFramework.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
@@ -33,3 +34,4 @@ data:
[ "$result" == "" ]
{{- end }}
}
{{- end }}
+2
View File
@@ -1,3 +1,4 @@
{{- if .Values.testFramework.enabled }}
apiVersion: v1
kind: Pod
metadata:
@@ -40,3 +41,4 @@ spec:
- name: tools
emptyDir: {}
restartPolicy: Never
{{- end }}
+1
View File
@@ -4,6 +4,7 @@ image:
pullPolicy: "IfNotPresent"
testFramework:
enabled: "true"
image: "dduportal/bats"
tag: "0.4.0"