Files
kubernaut/charts/kubernaut/templates/tests/test-connection.yaml
Ryan Cavicchioni 10c01f6ede
Some checks failed
Gitea Actions Demo / lint (push) Failing after 0s
Gitea Actions Demo / test (push) Has been skipped
Gitea Actions Demo / docker (push) Has been skipped
add initial Helm chart
2025-03-30 19:22:00 -05:00

16 lines
385 B
YAML

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