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

15
templates/service.yaml Normal file
View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "hasura.fullname" . }}
labels:
{{- include "hasura.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "hasura.selectorLabels" . | nindent 4 }}