1234567891011121314151617 |
- {{- 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 }}
|