This commit is contained in:
marsal wang
2022-01-02 21:58:04 +08:00
parent eb98f69d42
commit 3647e45472
15 changed files with 538 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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