mirror of
https://github.com/mariocandela/beelzebub.git
synced 2025-07-01 18:47:26 -04:00
feature: helm chart configurations to deploy beelzebub on kubernetes (#63)
* Initial helm chart configuration * configure config map with beelzebub configuration * edit README.md add helm docs * configured config maps *parametric configmaps using values.yaml * addd services confgiuration by chart values * update readme.md
This commit is contained in:
15
beelzebub-chart/templates/service.yaml
Normal file
15
beelzebub-chart/templates/service.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ include "beelzebub-chart.fullname" . }}
|
||||
labels:
|
||||
{{- include "beelzebub-chart.labels" . | nindent 4 }}
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
ports:
|
||||
- port: {{ .Values.service.port }}
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
{{- include "beelzebub-chart.selectorLabels" . | nindent 4 }}
|
Reference in New Issue
Block a user