Files
sa-charts/torna/templates/tests/test-connection.yaml
marsal wang 3647e45472 torna
2022-01-02 21:58:04 +08:00

16 lines
394 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "torna-server.fullname" . }}-test-connection"
labels:
{{- include "torna-server.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "torna-server.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never