31531b607d
* chore: initial commit of helm chart yaml * chore: add docs and reset ingress classname default * chore: helm repo add and install documentation * chore: add env variables to deployment and values * fix: remove port env variable
15 lines
397 B
YAML
15 lines
397 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "christmas-community.fullname" . }}
|
|
labels:
|
|
{{- include "christmas-community.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "christmas-community.selectorLabels" . | nindent 4 }}
|