16 lines
382 B
YAML
Raw Normal View History

2024-02-08 22:45:35 -05:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "core-api.fullname" . }}-test-connection"
labels:
{{- include "core-api.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "core-api.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never