mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
Kubernetes Prow Robot
parent
e00bbe31da
commit
09004fa332
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{{- if .Values.testFramework.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
@@ -40,3 +41,4 @@ spec:
|
||||
- name: tools
|
||||
emptyDir: {}
|
||||
restartPolicy: Never
|
||||
{{- end }}
|
||||
|
||||
@@ -4,6 +4,7 @@ image:
|
||||
pullPolicy: "IfNotPresent"
|
||||
|
||||
testFramework:
|
||||
enabled: "true"
|
||||
image: "dduportal/bats"
|
||||
tag: "0.4.0"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user