Init chart

This commit is contained in:
2022-03-17 19:43:39 +03:00
parent 9f359d7b0d
commit b5aa8c5b6c
12 changed files with 475 additions and 0 deletions

View File

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