create helm chart
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-11-19 21:39:05 -05:00
parent b8728e0be5
commit 64fb6351fe
11 changed files with 405 additions and 0 deletions

View File

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