Add simple helm example

This commit is contained in:
Thomas Philipona
2021-03-31 11:52:02 +02:00
parent 2cafd1d082
commit bddc753b6f
11 changed files with 386 additions and 0 deletions

View File

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