mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
{{- if .Values.testFramework.enabled }}
|
|
{{- if or (eq .Values.backend.type "forward") (and (eq .Values.backend.type "es") (eq .Values.backend.es.tls "off")) }}
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: {{ template "fluent-bit.fullname" . }}-test
|
|
labels:
|
|
app: {{ template "fluent-bit.fullname" . }}
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
heritage: "{{ .Release.Service }}"
|
|
release: "{{ .Release.Name }}"
|
|
annotations:
|
|
"helm.sh/hook": test-success
|
|
spec:
|
|
{{- if .Values.testFramework.pullSecrets }}
|
|
imagePullSecrets:
|
|
{{ toYaml .Values.testFramework.pullSecrets | indent 4 }}
|
|
{{- end }}
|
|
initContainers:
|
|
- name: test-framework
|
|
image: "{{ .Values.testFramework.image}}:{{ .Values.testFramework.tag }}"
|
|
command:
|
|
- "bash"
|
|
- "-c"
|
|
- |
|
|
set -ex
|
|
# copy bats to tools dir
|
|
cp -R /usr/local/libexec/ /tools/bats/
|
|
volumeMounts:
|
|
- mountPath: /tools
|
|
name: tools
|
|
containers:
|
|
- name: {{ .Release.Name }}-test
|
|
{{- if eq .Values.backend.type "forward"}}
|
|
image: "{{ .Values.testFramework.fluentd.image }}:{{ .Values.testFramework.fluentd.tag }}"
|
|
{{- else }}
|
|
image: "{{ .Values.testFramework.curlJq.image }}:{{ .Values.testFramework.curlJq.tag }}"
|
|
{{- end }}
|
|
command: ["/tools/bats/bats", "-t", "/tests/run.sh"]
|
|
{{- if and (eq .Values.backend.forward.tls "on") (eq .Values.backend.type "forward") }}
|
|
securityContext:
|
|
# run as root to install fluent gems
|
|
runAsUser: 0
|
|
{{- end }}
|
|
volumeMounts:
|
|
- mountPath: /tests
|
|
name: tests
|
|
readOnly: true
|
|
- mountPath: /tools
|
|
name: tools
|
|
volumes:
|
|
- name: tests
|
|
configMap:
|
|
name: {{ template "fluent-bit.fullname" . }}-test
|
|
- name: tools
|
|
emptyDir: {}
|
|
restartPolicy: Never
|
|
{{- end }}
|
|
{{- end }} |