demo-chart/templates/tests/test-connection.yaml

16 lines
388 B
YAML
Raw Permalink Normal View History

2023-03-29 01:29:07 +00:00
apiVersion: v1
kind: Pod
metadata:
2023-04-19 02:35:56 +00:00
name: "{{ include "ailab-demo.fullname" . }}-test-connection"
2023-03-29 01:29:07 +00:00
labels:
2023-04-19 02:35:56 +00:00
{{- include "ailab-demo.labels" . | nindent 4 }}
2023-03-29 01:29:07 +00:00
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
2023-04-19 02:35:56 +00:00
args: ['{{ include "ailab-demo.fullname" . }}:{{ .Values.service.port }}']
2023-03-29 01:29:07 +00:00
restartPolicy: Never