18 lines
505 B
YAML
18 lines
505 B
YAML
|
{{- if .Values.testFramework.enabled }}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ template "grafana.fullname" . }}-test
|
||
|
namespace: {{ template "grafana.namespace" . }}
|
||
|
labels:
|
||
|
{{- include "grafana.labels" . | nindent 4 }}
|
||
|
data:
|
||
|
run.sh: |-
|
||
|
@test "Test Health" {
|
||
|
url="http://{{ template "grafana.fullname" . }}/api/health"
|
||
|
|
||
|
code=$(wget --server-response --spider --timeout 10 --tries 1 ${url} 2>&1 | awk '/^ HTTP/{print $2}')
|
||
|
[ "$code" == "200" ]
|
||
|
}
|
||
|
{{- end }}
|