postinstall stuff (tailscale ingresses)

This commit is contained in:
2024-11-03 22:57:11 +00:00
parent 8471de450f
commit c0097428df
27 changed files with 863 additions and 4 deletions

View File

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