1
0
Fork 0

feat: add helm chart for deployment to k8s

This commit is contained in:
Vojtěch Mareš 2024-06-24 08:44:41 +02:00
parent 917376899c
commit bb1a9403bb
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
14 changed files with 218 additions and 1 deletions

View file

@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port.number }}
targetPort: {{ .Values.service.port.number }}
protocol: TCP
name: {{ .Values.service.port.name }}
selector:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}