new: convert web-check raw files to helm chart

This commit is contained in:
2024-08-15 19:33:12 +00:00
parent ac2dee8d06
commit 7cafe3d7d9
16 changed files with 447 additions and 68 deletions

View File

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