cairo/templates/tests/test-connection.yaml
Dunemask 0fc5f05b6a
Some checks failed
Deploy Edge / deploy-edge (push) Failing after 2s
S3 Repo Backup / s3-repo-backup (push) Failing after 2s
[INIT] Initial Project Structure
2024-08-24 12:41:04 -06:00

15 lines
373 B
YAML

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