[CHORE] Migrate to Helm (#4)

Co-authored-by: dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.net/elysium/khufu/pulls/4
This commit is contained in:
dunemask 2023-08-24 01:02:27 +00:00
parent d66c5011ff
commit 39a882cb18
14 changed files with 469 additions and 3 deletions

View file

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