Files
argo-poc/helm-repo/dragonfly-operator/dragonfly-operator-v1.1.10-bagl/templates/tests/test-connection.yaml
T
Dušan Jakub bc4fcfb6bb First apps
2025-04-08 15:43:45 +02:00

16 lines
412 B
YAML

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