feat: create helm

This commit is contained in:
2025-09-29 00:11:21 +01:00
parent bd38c2de48
commit ccc30faed9
12 changed files with 518 additions and 1 deletions

View File

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