oc-k8s/opencloud/charts/mongo-express/templates/tests/configmap.yaml

26 lines
814 B
YAML
Raw Normal View History

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "mongo-express.tests.fullname" . }}
labels:
{{- include "mongo-express.tests.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: test
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
test_all.py: |
import requests
def test_service_connection():
url = "http://{{ include "mongo-express.fullname" . }}:{{ .Values.service.ports.http }}{{ .Values.siteBaseUrl }}"
response = requests.get(url)
assert response.status_code == 200