feat: simplify starter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-03-02 23:21:08 +03:00
parent bcf9648dae
commit 460c4b6c5c
25 changed files with 185 additions and 1414 deletions

View File

@ -1,3 +1,15 @@
{{/* vim: set filetype=mustache: */}}
{{- include "common.service" (list . .Values.service) }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "common.fullname" . }}
labels:
{{- include "common.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "common.selectorLabels" . | nindent 4 }}