Files
service-catalog/manifests/helm/dnsup/1.0.1/templates/tests/test-connection.yaml
T
2026-01-19 16:11:44 +09:00

16 lines
373 B
YAML

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