Files
cloud-config/mushroom/helm/templates/tests/test-connection.yaml
Paul Mathieu 0cf7c9b908 Initial commit: mushroom, zetikettes
With basic config to have TLS certs with ACME.
It works!

TODO:
- gitea
- bar-jupyter
2026-03-02 06:48:46 +00:00

16 lines
382 B
YAML

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