helm-chart-genes/charts/wordpress-raw/templates/tests/test-connection.yaml

16 lines
393 B
YAML
Raw Normal View History

2024-04-24 19:13:37 +02:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "wordpress.fullname" . }}-test-connection"
labels:
{{- include "wordpress.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "wordpress.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never