[CHORE] Integrate with helm (#7)

Co-authored-by: dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.net/elysium/qualiteer/pulls/7
This commit is contained in:
dunemask 2023-08-24 18:16:58 +00:00
parent 2417956212
commit d56f3697b8
15 changed files with 425 additions and 4 deletions

View file

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