add helm chart with readiness endpoint

This commit is contained in:
2024-09-29 17:54:23 +02:00
parent 570d2acf78
commit 2bdebd9014
15 changed files with 488 additions and 5 deletions

View File

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